Skip to content

Commit

Permalink
Merge pull request #1488 from freenas/FIX-26131-stable
Browse files Browse the repository at this point in the history
fix(oldgui): Hide Auxiliary Arguments from Cloud Sync task
  • Loading branch information
themylogin committed Jul 5, 2018
2 parents 7fa193c + 0ae8b0d commit 0de72ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gui/tasks/admin.py
Expand Up @@ -53,6 +53,7 @@ class CloudSyncFAdmin(BaseFreeAdmin):
'month',
'attributes',
'transfer_mode',
'args',
)
menu_child_of = 'tasks'
refresh_time = 12000
Expand Down
2 changes: 1 addition & 1 deletion gui/tasks/forms.py
Expand Up @@ -31,7 +31,7 @@ class CloudSyncForm(ModelForm):
)

class Meta:
exclude = ('credential', )
exclude = ('credential', 'args')
fields = '__all__'
model = models.CloudSync
widgets = {
Expand Down

0 comments on commit 0de72ec

Please sign in to comment.