mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
ignore admin rendering fields for coverage
This commit is contained in:
parent
9f171faf1c
commit
6a5dc33e20
@ -12,7 +12,7 @@ class SettingsAdmin(ImportExportModelAdmin):
|
|||||||
|
|
||||||
list_display = ('key', 'value')
|
list_display = ('key', 'value')
|
||||||
|
|
||||||
def get_readonly_fields(self, request, obj=None):
|
def get_readonly_fields(self, request, obj=None): # pragma: no cover
|
||||||
"""
|
"""
|
||||||
Prevent the 'key' field being edited once the setting is created
|
Prevent the 'key' field being edited once the setting is created
|
||||||
"""
|
"""
|
||||||
@ -27,7 +27,7 @@ class UserSettingsAdmin(ImportExportModelAdmin):
|
|||||||
|
|
||||||
list_display = ('key', 'value', 'user', )
|
list_display = ('key', 'value', 'user', )
|
||||||
|
|
||||||
def get_readonly_fields(self, request, obj=None):
|
def get_readonly_fields(self, request, obj=None): # pragma: no cover
|
||||||
"""
|
"""
|
||||||
Prevent the 'key' field being edited once the setting is created
|
Prevent the 'key' field being edited once the setting is created
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user