-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurations for Fusion-client (#1628)
* Made updated views for authentication, toggling notifications and removed dashboard view * Made a view for updating a role * migration files for changes made in extra_info model --------- Co-authored-by: Pratik <[email protected]>
- Loading branch information
1 parent
2b47d80
commit 9b4954d
Showing
4 changed files
with
133 additions
and
20 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
44 changes: 44 additions & 0 deletions
44
FusionIIIT/applications/globals/migrations/0002_auto_20241007_2302.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,44 @@ | ||
# Generated by Django 3.1.5 on 2024-10-07 23:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('globals', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='ModuleAccess', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('designation', models.CharField(max_length=155)), | ||
('program_and_curriculum', models.BooleanField(default=False)), | ||
('course_registration', models.BooleanField(default=False)), | ||
('course_management', models.BooleanField(default=False)), | ||
('other_academics', models.BooleanField(default=False)), | ||
('spacs', models.BooleanField(default=False)), | ||
('department', models.BooleanField(default=False)), | ||
('examinations', models.BooleanField(default=False)), | ||
('hr', models.BooleanField(default=False)), | ||
('iwd', models.BooleanField(default=False)), | ||
('complaint_management', models.BooleanField(default=False)), | ||
('fts', models.BooleanField(default=False)), | ||
('purchase_and_store', models.BooleanField(default=False)), | ||
('rspc', models.BooleanField(default=False)), | ||
('hostel_management', models.BooleanField(default=False)), | ||
('mess_management', models.BooleanField(default=False)), | ||
('gymkhana', models.BooleanField(default=False)), | ||
('placement_cell', models.BooleanField(default=False)), | ||
('visitor_hostel', models.BooleanField(default=False)), | ||
('phc', models.BooleanField(default=False)), | ||
], | ||
), | ||
migrations.AddField( | ||
model_name='extrainfo', | ||
name='last_selected_role', | ||
field=models.CharField(blank=True, max_length=20, null=True), | ||
), | ||
] |
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