Skip to content

Commit

Permalink
[#3108] Remove redundant validator
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jun 15, 2016
1 parent e20bef2 commit 83f4a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/logic/schema.py
Expand Up @@ -534,7 +534,7 @@ def default_follow_dataset_schema():

def member_schema():
schema = {
'id': [not_missing, not_empty, group_id_or_name_exists, unicode],
'id': [not_missing, group_id_or_name_exists, unicode],
'username': [not_missing, user_id_or_name_exists, unicode],
'role': [not_missing, role_exists, unicode],
}
Expand Down

0 comments on commit 83f4a47

Please sign in to comment.