Skip to content

Commit

Permalink
Impliment review comments from @nsoranzo
Browse files Browse the repository at this point in the history
  • Loading branch information
XDtim committed Jul 3, 2017
1 parent 55956fe commit e320fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ class User( object, Dictifiable ):
histories, credentials, and roles.
"""
# attributes that will be accessed and returned when calling to_dict( view='collection' )
dict_collection_visible_keys = ( 'id', 'email', 'username', 'deleted', 'purged', 'active', 'last_password_change' )
dict_collection_visible_keys = ( 'id', 'email', 'username', 'deleted', 'active', 'last_password_change' )
# attributes that will be accessed and returned when calling to_dict( view='element' )
dict_element_visible_keys = ( 'id', 'email', 'username', 'total_disk_usage', 'nice_total_disk_usage' )
dict_element_visible_keys = ( 'id', 'email', 'username', 'total_disk_usage', 'nice_total_disk_usage', 'deleted', 'active', 'last_password_change' )

def __init__( self, email=None, password=None ):
self.email = email
Expand Down

0 comments on commit e320fd4

Please sign in to comment.