Custom Query (2152 matches)
Results (1591 - 1593 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1659 | fixed | Cannot logout if CKAN mounted at non-root url | dread | dread |
Description |
If you set WSGIScriptAlias to mount CKAN at a URL other than / then you cannot logout without adjusting the OpenID logged_out_url to match in who.ini config. e.g.
Note: all the other URLs in who.ini should not have the /sub/dir/ - it is just this one that doesn't take account of the mounting point. The solution is to fix-up the repoze.who OpenID plugin to take account of the mounting point. |
|||
#1663 | fixed | API call for creating an activity streams event | seanh | seanh |
Description |
The create_activity() logic function already exists, but validation and authorization need to be added before it's hooked up to an API call. |
|||
#1664 | fixed | Smarter group activity streams | seanh | seanh |
Description |
We already have simple activity streams for groups that have new group or group updated events (see #1631). Smarter/more useful group activity streams would also contain the events for things related to the group: users, datasets, other groups, etc. This should just mean using a more complex SQL query in the group_activity_list() logic function. Things might get tricky when a user or dataset joins a group, this may show up as two events (the user or dataset was modified, and the group was modified). We may want to have two separate events for this (one to go in the user or dataset activity stream and one for the group), or maybe we just want one 'user/dataset joined group' event. |