-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BITMAKER-2844 Environment values masked (#170)
* Setting masked field in SpiderJobEnvVar model * Add masked variables in cronjob and job creation modal * Show tooltip over masked key in cronjo and job detail page * Correct bitmaker logo in login and register page * Fix shown text when no tags or env vars are present * Handle null values in items, requests, and stats * Add TB to formatBytes --------- Co-authored-by: Raymond Negron <[email protected]> Co-authored-by: emegona <[email protected]>
- Loading branch information
1 parent
afa0e02
commit 82c9b36
Showing
16 changed files
with
333 additions
and
95 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,20 @@ | ||
# Generated by Django 3.1.14 on 2023-04-18 15:41 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("core", "0026_auto_20230411_0631"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="spiderjobenvvar", | ||
name="masked", | ||
field=models.BooleanField( | ||
default=False, help_text="Whether the env variable value is masked." | ||
), | ||
), | ||
] |
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.