mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
806 B
30 lines
806 B
from assets.models import Web
|
|
from .common import AssetSerializer
|
|
|
|
__all__ = ['WebSerializer']
|
|
|
|
|
|
class WebSerializer(AssetSerializer):
|
|
class Meta(AssetSerializer.Meta):
|
|
model = Web
|
|
fields = AssetSerializer.Meta.fields + [
|
|
'autofill', 'username_selector',
|
|
'password_selector', 'submit_selector',
|
|
'script'
|
|
]
|
|
extra_kwargs = {
|
|
**AssetSerializer.Meta.extra_kwargs,
|
|
'address': {
|
|
'label': 'URL'
|
|
},
|
|
'username_selector': {
|
|
'default': 'name=username'
|
|
},
|
|
'password_selector': {
|
|
'default': 'name=password'
|
|
},
|
|
'submit_selector': {
|
|
'default': 'id=longin_button',
|
|
},
|
|
}
|