2015-03-16 21:03:26 +00:00
|
|
|
<div class="repository-events-table-element">
|
|
|
|
<div class="co-panel">
|
|
|
|
<div class="co-panel-heading">
|
|
|
|
<i class="fa fa-bell"></i> Events and Notifications
|
|
|
|
|
|
|
|
<div class="heading-controls hidden-sm hidden-xs">
|
|
|
|
<button class="btn btn-primary" ng-click="askCreateNotification()">
|
|
|
|
<i class="fa fa-plus"></i> Create Notification
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="resource-view" resource="notificationsResource"
|
|
|
|
error-message="'Could not load repository events'">
|
|
|
|
|
|
|
|
<div class="empty" ng-if="!notifications.length">
|
2015-03-25 19:31:05 +00:00
|
|
|
<div class="empty-primary-msg">No notifications have been setup for this repository.</div>
|
2015-05-26 22:29:04 +00:00
|
|
|
<div class="empty-secondary-msg hidden-sm hidden-xs" ng-if="repository.can_write">
|
2015-03-16 21:03:26 +00:00
|
|
|
Click the "Create Notification" button above to add a new notification for a repository event.
|
|
|
|
</div>
|
2015-05-26 22:29:04 +00:00
|
|
|
<div class="empty-secondary-msg visible-sm visible-xs" ng-if="repository.can_write">
|
2015-04-20 21:42:33 +00:00
|
|
|
<a href="javascript:void(0)" ng-click="askCreateNotification()">Click here</a> to add a new notification for a repository event.
|
|
|
|
</div>
|
2015-03-16 21:03:26 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="co-table permissions" ng-if="notifications.length">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2015-08-17 20:30:15 +00:00
|
|
|
<td>Title</td>
|
2015-03-16 21:03:26 +00:00
|
|
|
<td>Event</td>
|
|
|
|
<td>Notification</td>
|
|
|
|
<td class="options-col"></td>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
<tr class="notification-row" ng-repeat="notification in notifications">
|
2015-08-17 20:30:15 +00:00
|
|
|
<td>
|
|
|
|
{{ notification.title || '(Untitled)' }}
|
|
|
|
</td>
|
|
|
|
|
2015-03-16 21:03:26 +00:00
|
|
|
<td>
|
|
|
|
<span class="notification-event">
|
|
|
|
<i class="fa fa-lg" ng-class="getEventInfo(notification).icon"></i>
|
|
|
|
{{ getEventInfo(notification).title }}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<span class="notification-method">
|
|
|
|
<i class="fa fa-lg" ng-class="getMethodInfo(notification).icon"></i>
|
|
|
|
{{ getMethodInfo(notification).title }}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>
|
|
|
|
<span class="cor-options-menu">
|
|
|
|
<span class="cor-option" option-click="testNotification(notification)">
|
|
|
|
<i class="fa fa-send"></i> Test Notification
|
|
|
|
</span>
|
2015-08-17 20:30:15 +00:00
|
|
|
<span class="cor-option" option-click="showNotifyInfo(notification, 'url')"
|
|
|
|
ng-if="getMethodInfo(notification).id == 'webhook'">
|
|
|
|
<i class="fa fa-link"></i>
|
|
|
|
View Webhook URL
|
|
|
|
</span>
|
|
|
|
<span class="cor-option" option-click="showNotifyInfo(notification, 'email')"
|
|
|
|
ng-if="getMethodInfo(notification).id == 'email'">
|
|
|
|
<i class="fa fa-envelope"></i>
|
|
|
|
View E-mail Address
|
|
|
|
</span>
|
2015-03-16 21:03:26 +00:00
|
|
|
<span class="cor-option" option-click="showWebhookInfo(notification)"
|
|
|
|
ng-if="getMethodInfo(notification).id == 'webhook'">
|
|
|
|
<i class="fa fa-book"></i>
|
|
|
|
Webhook Documentation
|
|
|
|
</span>
|
|
|
|
<span class="cor-option" option-click="deleteNotification(notification)">
|
|
|
|
<i class="fa fa-times"></i> Delete Notification
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- New notification dialog-->
|
|
|
|
<div class="create-external-notification-dialog"
|
|
|
|
repository="repository"
|
|
|
|
counter="showNewNotificationCounter"
|
|
|
|
notification-created="handleNotificationCreated(notification)"></div>
|
2015-03-30 21:55:04 +00:00
|
|
|
</div>
|