-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes sprint 34 and 34 issues Link Checker #369 Adding Drone Content to all Trainings #599 Adding FASCSA Order Check to all Trainings #598 Accessibility Bug: Buttons without Accessible Names on all Trainings Print Training Functionality #591 Admin Panel - Display Completed Quizzes/Certificates for Users #317 Research solutions for implementing audit fields #451 Update GSPC Image #601 Log Tracking Editing of User Records #443
- Loading branch information
Showing
35 changed files
with
1,022 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
"""user-audit-fields | ||
Revision ID: 291331bea272 | ||
Revises: a5fbdcd0e719 | ||
Create Date: 2024-07-19 09:06:27.754024 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '291331bea272' | ||
down_revision = 'a5fbdcd0e719' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
op.add_column('users', sa.Column('created_on', sa.DateTime, nullable=False, server_default=sa.func.current_timestamp())) | ||
op.add_column('users', sa.Column('created_by', sa.String(), nullable=False, server_default='Migrated')) | ||
op.alter_column('users', 'created_by', server_default=None) | ||
op.add_column('users', sa.Column('modified_on', sa.DateTime, nullable=True)) | ||
op.add_column('users', sa.Column('modified_by', sa.String(), nullable=True)) | ||
|
||
|
||
def downgrade() -> None: | ||
op.drop_column('users', 'created_on') | ||
op.drop_column('users', 'created_by') | ||
op.drop_column('users', 'modified_on') | ||
op.drop_column('users', 'modified_by') |
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 |
---|---|---|
|
@@ -966,7 +966,6 @@ AOPSs: | |
email: [email protected] | ||
agency: Native American Tribal Governments | ||
bureau: Sierra Tribal Consortium, INC. | ||
bureau: null | ||
reporting_agencies: | ||
- report_agency: Native American Tribal Governments | ||
report_bureau: Sierra Tribal Consortium, INC. | ||
|
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,17 @@ | ||
{ | ||
"recurse": true, | ||
"headers": { | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0", | ||
"Referer": "http://localhost:4321/" | ||
}, | ||
"skip": [ | ||
"https://www.fpds.gov/", | ||
"https://www.congress.gov/bill/101st-congress/house-bill/94", | ||
"/printable/printable/$", | ||
"http://www.energystar.gov/", | ||
"http://www.biopreferred.gov/BioPreferred/", | ||
"https://www.gsaadvantage.gov/advantage/ws/main/start_page\\?store=ADVANTAGE", | ||
"https://www.congress.gov/bill/118th-congress/house-bill/2670" | ||
], | ||
"verbosity": "debug" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.