You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@senssoft.apache.org by ar...@apache.org on 2016/10/21 16:12:05 UTC

[12/48] incubator-senssoft-tap git commit: Added more endpoint skeletons

Added more endpoint skeletons

Structure is ready for more endpoints when we connect the front and backend.

Project: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/commit/5eb5a237
Tree: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/tree/5eb5a237
Diff: http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/diff/5eb5a237

Branch: refs/heads/master
Commit: 5eb5a2372095151b8900aa3e38599bc80da4ffed
Parents: 3631ae5
Author: hungryarthi <ar...@gmail.com>
Authored: Tue Aug 23 17:46:20 2016 -0400
Committer: GitHub <no...@github.com>
Committed: Tue Aug 23 17:46:20 2016 -0400

----------------------------------------------------------------------
 app_mgr/urls.py | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-senssoft-tap/blob/5eb5a237/app_mgr/urls.py
----------------------------------------------------------------------
diff --git a/app_mgr/urls.py b/app_mgr/urls.py
index ec10388..2442c48 100644
--- a/app_mgr/urls.py
+++ b/app_mgr/urls.py
@@ -37,6 +37,8 @@ urlpatterns = [
     url(r'^user/(?P<pk>current)/$', views.UserProfileInstanceView.as_view(), name='user-current'),
     url(r'^org/(?P<pk>[\d]+)/$', views.OrganizationInstanceView.as_view(), name='org-instance'),
     url(r'^app/(?P<pk>[\d]+)/$', views.ApplicationInstanceView.as_view(), name='app-instance'),
+    
+    url(r'^app/(?P<pk>current+)/$', views.AliasListView.as_view(), name='alias-list'),
 
     url(r'^appresults/(?P<appId>[0-9]{1,2})/(?P<searchType>\w+)/$', distillviews.app_results, name='app-results'),
     url(r'^appresults/(?P<appName>\w+)/(?P<searchType>\w+)/$', distillviews.app_results_byname, name='app-results'),