-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Release 6 - 12 December 2022 (#113)
* feat: PBI 32 status page configuration (#100) * [RED] add tests for status page configuration * [GREEN] add implementation status page configuration * [REFACTOR] add unique constraint on path * [REFACTOR] remove unused test method * feat: PBI-33-status page dashboard-Backend (#106) * [RED] create tests for status page dashboard * [RED] update tests for status page dashboard * [GREEN] create implementation for status page dashboard * [REFACTOR] remove code smells * [REFACTOR] remove unnecessary filter Co-authored-by: Muhammad Fahlevi <[email protected]> * feat: Pbi 35 validation on register (#107) * [RED] When registering, user should not be verified yet * [GREEN] When register, user are not verified * [RED] Only verified user can login * [GREEN] User cannot login if they are not yet verified * [RED] Valid Token should verify a user while invalid ones should do nothing * [GREEN] Valid Token should verify a user while invalid ones should do nothing * [REFACTOR] Migrations file * [REFACTOR] Email no longer says the limit is 1 week for user verification * [FIX] Fix security issue: Now token is deleted after it is consumed * [ADD] Add legacy support * [REFACTOR] Add test for missing line * feat: Pbi 34 add partial assertion text backend (#108) * [RED] test partial text assertion * [GREEN] implement partial text assertion * [FIX] code smell * refactor: change request process method to allow form (#109) * refactor: add admin for models verified user and forget password token (#110) * fix: fix status page config models unique blank (#111) * refactor: update team name register (#112) * chores: add release notes Co-authored-by: luthfifahlevi <[email protected]> Co-authored-by: Muhammad Fahlevi <[email protected]> Co-authored-by: Lucky Susanto <[email protected]> Co-authored-by: Ferdi Fadillah <[email protected]>
- Loading branch information
1 parent
da9c11f
commit 2264d34
Showing
43 changed files
with
1,375 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,3 +130,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# Upload folder | ||
uploads/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
apimonitor/migrations/0017_apimonitor_status_page_category.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 4.1.2 on 2022-11-29 02:00 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('statuspage', '0001_initial'), | ||
('apimonitor', '0016_merge_20221116_1054'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='apimonitor', | ||
name='status_page_category', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='statuspage.statuspagecategory'), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
apimonitor/migrations/0018_alter_apimonitor_assertion_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.1.2 on 2022-12-09 04:44 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('apimonitor', '0017_apimonitor_status_page_category'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='apimonitor', | ||
name='assertion_type', | ||
field=models.CharField(choices=[('DISABLED', 'Disabled'), ('TEXT', 'Text'), ('JSON', 'JSON'), ('PARTIAL', 'Partial')], default='DISABLED', max_length=16), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.