TwiN
c712133df0
feat(security): Implement Bcrypt for basic auth and deprecate SHA512
...
I've re-written the code for this several times before but always ended up not going through with it because a hashed Bcrypt string has dollar signs in it, which caused issues with the config due to environment variable support.
I finally decided to go through with it by forcing users to base64 encode the bcrypt hash
2022-01-08 19:59:45 -05:00
TwiN
fc016bd682
feat(ui): Make logo link and header configurable
...
Closes #213
2022-01-08 15:24:22 -05:00
TwiN
0e586e4152
refactor: Split direct and indirect modules
2022-01-06 23:24:07 -05:00
TwiN
ea425773e0
style: Use SVG instead of PNG for GitHub's logo
2022-01-03 21:41:53 -05:00
TwiN
10949b11f4
fix(oidc): Default isAuthenticated to true, not false
2022-01-02 21:37:15 -05:00
TwiN
0e022d04b1
chore: Fix inconsistent indentation + Rebuild assets
2022-01-02 21:14:01 -05:00
TwiN
3319e158b5
branding: Update logo
2022-01-02 21:14:01 -05:00
TwiN
f467a77ae2
chore: Upgrade Tailwind from v2 to v3
2022-01-02 21:14:01 -05:00
TwiN
56048725e4
oidc: Display error if applicable
2022-01-02 21:14:01 -05:00
TwiN
425c1d3674
oidc: Add /api/v1/config route for determining whether to display a login button on the UI
2022-01-02 21:14:01 -05:00
TwiN
8838f6f2ad
oidc: Add documentation
2022-01-02 21:14:01 -05:00
TwiN
139a78b2f6
oidc: Log when a subject tries to authenticate but isn't allowed
2022-01-02 21:14:01 -05:00
TwiN
dd5e3ee7ee
Add tests for OIDC
2022-01-02 21:14:01 -05:00
TwiN
9f8f7bb45e
Fix codecov configuration
2022-01-02 21:14:01 -05:00
TwiN
27e246859e
Use code coverage target instead of threshold
2022-01-02 21:14:01 -05:00
TwiN
f1688ac87a
Set code coverage threshold to 75%
2022-01-02 21:14:01 -05:00
TwiN
54779e1db8
Fix basic security tests
2022-01-02 21:14:01 -05:00
TwiN
be9087bee3
#205 : Work on supporting OpenID Connect for auth
2022-01-02 21:14:01 -05:00
TwiN
4ab5724fc1
Default to dark theme
2022-01-02 21:14:01 -05:00
TwiN
45a47940ad
#205 : Start working on adding support for IODC
2022-01-02 21:14:01 -05:00
TwiN
1777d69495
Remove unnecessary check
2021-12-14 23:26:18 -05:00
Bastien Ogier
8676b83fe3
Changed: add maintenance to README on root config table
2021-12-14 19:55:40 -05:00
TwiN
b67701ff6d
BREAKING: Replace metrics
2021-12-13 19:38:20 -05:00
TwiN
eb9acef9b5
Minor update
2021-12-13 19:38:20 -05:00
TwiN
00aec70fb8
Update dependencies
2021-12-13 19:38:20 -05:00
TwiN
18d28fc362
Add tests for validation of description
2021-12-12 17:03:11 -05:00
TwiN
eb3545e994
Add tests for Slack alert body with endpoint that has a group
2021-12-12 17:03:11 -05:00
TwiN
ad71c8db34
Support displaying group name when applicable for every alert provider
2021-12-12 17:03:11 -05:00
TwiN
6da281bf4e
Disallow certain characters in endpoint name, group and alert description
2021-12-12 17:03:11 -05:00
TwiN
3dd8ba1a99
Add missing alert type
2021-12-09 21:18:44 -05:00
TwiN
2503d21522
Refactor Opsgenie alerting provider code
2021-12-09 21:18:25 -05:00
TwiN
36a3419aec
Update .gitignore
2021-12-09 20:40:28 -05:00
Vinicius Reis
7353fad809
Opsgenie Alert Provider ( #214 )
...
* ✨ opsgenie alert provider
* ✅ add unit tests
* ✏️ typofix
* 📝 update readme
* ✨ add details
* ✨ use group to previne colisions
* ✏️ typofix
* ✏️ typofix
2021-12-09 20:32:38 -05:00
TwiN
b5a26caa08
Merge pull request #217 from ianagbip1oti/patch-3
...
Grammatical Fix
2021-12-09 01:19:54 -05:00
Princess Lana
d7206546af
Grammatical Fix
2021-12-08 22:16:06 -08:00
TwiN
4fa86a2c46
Merge pull request #216 from ianagbip1oti/patch-2
...
Grammatical Fix
2021-12-09 01:14:51 -05:00
Princess Lana
a6ed23b169
Grammatical Fix
2021-12-08 22:13:12 -08:00
TwiN
d9201c5084
Merge pull request #215 from ianagbip1oti/patch-1
...
Grammatical fix
2021-12-09 01:08:27 -05:00
Princess Lana
d0ba8261e3
Grammatical fix
2021-12-08 22:07:04 -08:00
TwiN
f89447badc
Merge pull request #211 from Juneezee/deprecate-ioutil
...
refactor: move from io/ioutil to io and os packages
2021-12-03 20:31:31 -05:00
TwiN
14c42f6e6d
Fix #212 : Stale endpoint on dashboard after config change
2021-12-03 18:20:14 -05:00
Eng Zer Jun
7a05bdcb82
refactor: move from io/ioutil to io and os packages
...
The io/ioutil package has been deprecated as of Go 1.16, see
https://golang.org/doc/go1.16#ioutil . This commit replaces the existing
io/ioutil functions with their new definitions in io and os packages.
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2021-12-03 14:44:17 +08:00
TwiN
5eb7763052
Implement email alerts
2021-12-02 23:31:14 -05:00
TwiN
8c73ae6035
Fix #22 : Improve alerting provider tests by mocking HTTP client
2021-12-02 23:10:21 -05:00
TwiN
6954e9dde7
Move alerting provider mocked tests at the watchdog level
2021-12-02 22:15:51 -05:00
TwiN
f6336eac4e
Fix #117 : Implement email alerts
2021-12-02 21:05:17 -05:00
TwiN
0331c18401
Make sure cache is disabled for badges and charts
2021-11-24 18:36:31 -05:00
TwiN
1f8fd29dad
Get rid of Discord link
...
I don't have time to manage a community 😩
2021-11-23 19:18:29 -05:00
TwiN
5877c4b2be
Update TwiN/health to v1.3.0
2021-11-19 23:43:24 -05:00
TwiN
c6d0809ecc
Hide Alert.ResolveKey and Alert.Triggered
2021-11-18 00:11:32 -05:00