generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed stack_element_type test and auto formatted contributing.md
- Loading branch information
Showing
14 changed files
with
206 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
Fixes #replace_this_text_with_the_issue_number | ||
|
||
### What changes did you make? | ||
|
||
- | ||
- | ||
- | ||
|
||
### Why did you make the changes (we will use this info to test)? | ||
|
||
- | ||
- | ||
- | ||
|
||
### Screenshots of Proposed Changes Of The Website (if any, please do not screen shot code changes) | ||
|
||
<!-- Note, if your images are too big, use the <img src="" width="" length="" /> syntax instead of ![image](link) to format the images --> | ||
|
||
<!-- If images are not loading properly, you might need to double check the syntax or add a newline after the closing </summary> tag --> | ||
|
||
<details> | ||
<summary>Visuals before changes are applied</summary> | ||
|
||
![image](Paste_Your_Image_Link_Here_After_Attaching_Files) | ||
|
||
</details> | ||
|
||
<details> | ||
<summary>Visuals after changes are applied</summary> | ||
|
||
![image](Paste_Your_Image_Link_Here_After_Attaching_Files) | ||
|
||
</details> |
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 |
---|---|---|
|
@@ -36,3 +36,5 @@ __pycache__ | |
erd.png | ||
|
||
*.pyc | ||
|
||
.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Generated by Django 4.0.10 on 2023-09-21 05:48 | ||
|
||
from django.db import migrations, models | ||
import uuid | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0014_stackelementtype'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='PermissionType', | ||
fields=[ | ||
('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)), | ||
('created_at', models.DateTimeField(auto_now_add=True, verbose_name='Created at')), | ||
('updated_at', models.DateTimeField(auto_now=True, verbose_name='Updated at')), | ||
('name', models.CharField(max_length=255)), | ||
('description', models.TextField(blank=True)), | ||
], | ||
options={ | ||
'abstract': False, | ||
}, | ||
), | ||
] |
37 changes: 37 additions & 0 deletions
37
app/core/migrations/0016_remove_project_github_primary_url_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,37 @@ | ||
# Generated by Django 4.0.10 on 2023-09-27 22:12 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0015_permissiontype'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='github_primary_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='google_drive_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='hfla_website_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='readme_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='slack_url', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='wiki_url', | ||
), | ||
] |
4 changes: 2 additions & 2 deletions
4
...ns/0015_alter_stackelementtype_options.py → ...ns/0017_alter_stackelementtype_options.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
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