UNPKG

989 BHTMLView Raw
1<div class="row-fluid">
2 <div class="span6">
3 <div>
4 <h4>Caching</h4>
5 <label class="checkbox">
6 <input ng-model="config.cache" type="checkbox" ng-change="save()" />
7 Cache the project data between runs
8 </label>
9 </div>
10 </div>
11 <div class="span6">
12 <h4>Service Hooks</h4>
13 <p>
14 Service Hooks are the means by which gitlab notifies strider of new
15 commits and pull requests to your repository.
16 </p>
17 <p>
18 We already registered the requisite hooks when you added this project, but
19 if you want to remove them or add them back, you can do so here.
20 </p>
21 <button
22 class="btn btn-warning"
23 ng-click="deleteWebhooks()"
24 ng-disabled="loadingWebhooks"
25 >
26 Delete Service Hooks
27 </button>
28 <button class="btn" ng-click="addWebhooks()" ng-disabled="loadingWebhooks">
29 Add Service Hooks
30 </button>
31 <i class="icon-spin icon-refresh" ng-show="loadingWebhooks"></i>
32 </div>
33</div>