2014-03-20 19:46:13 +00:00
< div class = "application-manager-element" >
2015-07-14 09:39:49 +00:00
< div class = "feedback-bar" feedback = "feedback" > < / div >
2015-04-01 18:49:15 +00:00
< div class = "cor-loader" ng-show = "loading" > < / div >
< div ng-show = "!loading" >
2015-04-20 18:00:10 +00:00
< div class = "manager-header" header-title = "OAuth Applications" >
< span class = "popup-input-button" placeholder = "'Application Name'"
submitted="createApplication(value)">
< i class = "fa fa-plus" > < / i > Create New Application
< / span >
2015-04-01 18:49:15 +00:00
< / div >
2014-03-20 19:46:13 +00:00
2015-04-20 18:00:10 +00:00
< div class = "section-description-header" >
2015-04-01 18:49:15 +00:00
The OAuth Applications panel allows organizations to define custom OAuth applications that can be used by internal or external customers to access < span class = "registry-name" > < / span > data on behalf of the customers. More information about the < span class = "registry-name" > < / span > API can be found by contacting support.
2014-03-20 19:46:13 +00:00
< / div >
2015-04-09 20:25:10 +00:00
< div class = "empty" ng-if = "!applications.length" >
< div class = "empty-primary-msg" > No OAuth applications defined.< / div >
< div class = "empty-secondary-msg" >
Click the "Create New Application" button above to create a new OAuth application under
this organization.
< / div >
< / div >
2015-04-20 18:00:10 +00:00
< table class = "cor-table" ng-show = "applications.length" >
2014-03-20 19:46:13 +00:00
< thead >
2015-04-01 18:49:15 +00:00
< td > Application Name< / td >
< td > Application URI< / td >
2014-03-20 19:46:13 +00:00
< / thead >
2014-11-24 21:07:38 +00:00
2014-03-20 19:46:13 +00:00
< tr ng-repeat = "app in applications" >
< td > < a href = "/organization/{{ organization.name }}/application/{{ app.client_id }}" > {{ app.name }}< / a > < / td >
2016-04-28 18:38:22 +00:00
< td > < a href = "{{ app.application_uri }}" ng-if = "app.application_uri" ng-safenewtab > {{ app.application_uri }}< / a > < / td >
2014-03-20 19:46:13 +00:00
< / tr >
< / table >
< / div >
< / div >