-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Feature: Configuration Management #128
base: fdo
Are you sure you want to change the base?
Conversation
Could you squash the commits, add a descriptive commit message, and rebase on top of main? |
zezere/models.py
Outdated
@@ -208,3 +208,14 @@ class UnownedDeviceSerializer(serializers.HyperlinkedModelSerializer): | |||
class Meta: | |||
model = Device | |||
fields = ["mac_address"] | |||
|
|||
|
|||
class Config(models.Model): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe call this an FDOConfig
?
Needs to be based off the FDO branch |
The tests already use django 3+ so we should align this everywhere. Signed-off-by: Peter Robinson <[email protected]> Add a guide to setup zezere instance Signed-off-by: rdotjain <[email protected]> Update .gitignore for conf file Signed-off-by: rdotjain <[email protected]> Add endpoint to upload ov Signed-off-by: rdotjain <[email protected]> Update endpoint to accept CBOR encoded vouchers Signed-off-by: rdotjain <[email protected]> Improve error listing in UI using messages Signed-off-by: rdotjain <[email protected]> tweak endpoint to accept multiple vouchers Signed-off-by: rdotjain <[email protected]> bug fix: navbar active tab Signed-off-by: rdotjain <[email protected]> Add error handling in API call Signed-off-by: rdotjain <[email protected]> ui: change button style Signed-off-by: rdotjain <[email protected]> update template for multiple ownership vouchers Signed-off-by: rdotjain <[email protected]> add server base url in default conf Signed-off-by: rdotjain <[email protected]>
Signed-off-by: Rupanshi Jain <[email protected]>
Signed-off-by: Rupanshi Jain <[email protected]>
This pull request introduces 1 alert when merging 8925456 into c014ce0 - view on LGTM.com new alerts:
|
Signed-off-by: Rupanshi Jain <[email protected]>
This pull request introduces 1 alert when merging b72a752 into c014ce0 - view on LGTM.com new alerts:
|
Resolves #126.
Created a database model to store
AUTH_TOKEN
andOV_BASE_URL
.Added basic UI implementation for the same.