Repository: incubator-senssoft-tap
Updated Branches:
  refs/heads/endpoints 3631ae576 -> 5eb5a2372


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/endpoints
Commit: 5eb5a2372095151b8900aa3e38599bc80da4ffed
Parents: 3631ae5
Author: hungryarthi <arthi...@gmail.com>
Authored: Tue Aug 23 17:46:20 2016 -0400
Committer: GitHub <nore...@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'),

Reply via email to