Skip to content

Commit

Permalink
[#2939] Auth org list functions
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Oct 3, 2012
1 parent 0646300 commit d451bab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ckan/logic/auth/get.py
Expand Up @@ -51,6 +51,13 @@ def group_list_authz(context, data_dict):
def group_list_available(context, data_dict):
return group_list(context, data_dict)

def organization_list(context, data_dict):
# List of all active organizations are visible by default
return {'success': True}

def organization_list_for_user(context, data_dict):
return {'success': True}

def licence_list(context, data_dict):
# Licences list is visible by default
return {'success': True}
Expand Down

0 comments on commit d451bab

Please sign in to comment.