Skip to content

Show

agent_affiliation_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
11
12
13
14
15
16
@auth(anon=True)
def agent_affiliation_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid

agent_contribution_activity_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
32
33
34
35
36
37
@auth(anon=True)
def agent_contribution_activity_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid

agent_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
19
20
21
22
23
24
@auth(anon=True)
def agent_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid

contribution_activity_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
40
41
42
43
44
45
@auth(anon=True)
def contribution_activity_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid

package_contribution_activity_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
48
49
50
51
52
53
@auth(anon=True)
def package_contribution_activity_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid

package_contributions_show(context, data_dict)

Allow for everyone.

Source code in ckanext/attribution/logic/auth/show.py
56
57
58
59
60
61
@auth(anon=True)
def package_contributions_show(context, data_dict):
    """
    Allow for everyone.
    """
    return auth_valid