-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ready View for making sure bamboohr Creds are valid (#119)
* Ready View for making sure bamboohr Creds are valid * comment changes * new field to check if creds have expire * minor comment changes
- Loading branch information
1 parent
14e9bee
commit 2b10338
Showing
4 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
apps/bamboohr/migrations/0006_bamboohr_is_credentials_expired.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 3.1.14 on 2023-12-27 10:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bamboohr', '0005_bamboohr_employee_exported_at'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='bamboohr', | ||
name='is_credentials_expired', | ||
field=models.BooleanField(default=False, help_text='BambooHr Credential Status'), | ||
), | ||
] |
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