1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-24 21:07:17 +00:00

add events to community version; add events api

This commit is contained in:
lins05
2013-11-27 12:48:50 +08:00
parent 3360cc6780
commit cd20110375
3 changed files with 118 additions and 10 deletions

View File

@@ -28,6 +28,9 @@ urlpatterns = patterns('',
url(r'^beshared-repos/$', BeShared.as_view(), name='beshared'),
url(r'^groups/$', Groups.as_view()),
url(r'^events/$', EventsView.as_view()),
url(r'^msgs_count/$', MessagesCountView.as_view()),
url(r'^avatar/$', AvatarView.as_view()),
url(r'^html/events/$', ActivityHtml.as_view()),
url(r'^html/more_events/$', AjaxEvents.as_view(), name="more_events"),
url(r'^html/repo_history_changes/(?P<repo_id>[-0-9a-f]{36})/$', RepoHistoryChangeHtml.as_view(), name='api_repo_history_changes'),