-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* started on removing choiceenums * refactored cheatsheet and membership * refacotered strike enum * refactored Groups enum * removed AppModel choiceenum * added swagger
- Loading branch information
Showing
64 changed files
with
492 additions
and
118 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
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
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
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
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
59 changes: 59 additions & 0 deletions
59
app/content/migrations/0068_alter_cheatsheet_grade_alter_cheatsheet_study_and_more.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,59 @@ | ||
# Generated by Django 4.2.5 on 2024-09-20 08:46 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("content", "0067_alter_minute_group"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="cheatsheet", | ||
name="grade", | ||
field=models.CharField( | ||
choices=[ | ||
("FIRST", "1. Klasse"), | ||
("SECOND", "2. Klasse"), | ||
("THIRD", "3. Klasse"), | ||
("FOURTH", "4. Klasse"), | ||
("FIFTH", "5. Klasse"), | ||
("ALUMNI", "Alumni"), | ||
], | ||
default="FIRST", | ||
max_length=50, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="cheatsheet", | ||
name="study", | ||
field=models.CharField( | ||
choices=[ | ||
("DATAING", "Dataingeniør"), | ||
("DIGFOR", "Digital forretningsutvikling"), | ||
("DIGINC", "Digital infrastruktur og cybersikkerhet"), | ||
("DIGSAM", "Digital samhandling"), | ||
("DRIFT", "Drift"), | ||
("INFO", "Informasjonsbehandling"), | ||
], | ||
default="DATAING", | ||
max_length=50, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="cheatsheet", | ||
name="type", | ||
field=models.CharField( | ||
choices=[ | ||
("FILE", "Fil"), | ||
("GITHUB", "GitHub"), | ||
("LINK", "Link"), | ||
("OTHER", "Annet"), | ||
], | ||
default="LINK", | ||
max_length=50, | ||
), | ||
), | ||
] |
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
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
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.