table_of_contents.html
91.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Table of Contents - Rails Application Documentation</title>
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
<script type="text/javascript">
var rdoc_rel_prefix = "./";
</script>
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
<body class="indexpage">
<h1>Table of Contents - Rails Application Documentation</h1>
<h2>Pages</h2>
<ul>
<li class="file">
<a href="doc/README_FOR_APP.html">README_FOR_APP</a>
</li>
</ul>
<h2 id="classes">Classes/Modules</h2>
<ul>
<li class="module">
<a href="Gitlab.html">Gitlab</a>
</li>
<li class="class">
<a href="Gitlab/API.html">Gitlab::API</a>
</li>
<li class="module">
<a href="Gitlab/APIHelpers.html">Gitlab::APIHelpers</a>
</li>
<li class="class">
<a href="Gitlab/AppLogger.html">Gitlab::AppLogger</a>
</li>
<li class="class">
<a href="Gitlab/Auth.html">Gitlab::Auth</a>
</li>
<li class="module">
<a href="Gitlab/Encode.html">Gitlab::Encode</a>
</li>
<li class="module">
<a href="Gitlab/Entities.html">Gitlab::Entities</a>
</li>
<li class="class">
<a href="Gitlab/Entities/Hook.html">Gitlab::Entities::Hook</a>
</li>
<li class="class">
<a href="Gitlab/Entities/Issue.html">Gitlab::Entities::Issue</a>
</li>
<li class="class">
<a href="Gitlab/Entities/Milestone.html">Gitlab::Entities::Milestone</a>
</li>
<li class="class">
<a href="Gitlab/Entities/Project.html">Gitlab::Entities::Project</a>
</li>
<li class="class">
<a href="Gitlab/Entities/ProjectMember.html">Gitlab::Entities::ProjectMember</a>
</li>
<li class="class">
<a href="Gitlab/Entities/ProjectSnippet.html">Gitlab::Entities::ProjectSnippet</a>
</li>
<li class="class">
<a href="Gitlab/Entities/RepoCommit.html">Gitlab::Entities::RepoCommit</a>
</li>
<li class="class">
<a href="Gitlab/Entities/RepoObject.html">Gitlab::Entities::RepoObject</a>
</li>
<li class="class">
<a href="Gitlab/Entities/SSHKey.html">Gitlab::Entities::SSHKey</a>
</li>
<li class="class">
<a href="Gitlab/Entities/User.html">Gitlab::Entities::User</a>
</li>
<li class="class">
<a href="Gitlab/Entities/UserBasic.html">Gitlab::Entities::UserBasic</a>
</li>
<li class="class">
<a href="Gitlab/Entities/UserLogin.html">Gitlab::Entities::UserLogin</a>
</li>
<li class="class">
<a href="Gitlab/FileEditor.html">Gitlab::FileEditor</a>
</li>
<li class="class">
<a href="Gitlab/GitLogger.html">Gitlab::GitLogger</a>
</li>
<li class="class">
<a href="Gitlab/Gitolite.html">Gitlab::Gitolite</a>
</li>
<li class="class">
<a href="Gitlab/Gitolite/AccessDenied.html">Gitlab::Gitolite::AccessDenied</a>
</li>
<li class="class">
<a href="Gitlab/GitoliteConfig.html">Gitlab::GitoliteConfig</a>
</li>
<li class="class">
<a href="Gitlab/GitoliteConfig/PullError.html">Gitlab::GitoliteConfig::PullError</a>
</li>
<li class="class">
<a href="Gitlab/GitoliteConfig/PushError.html">Gitlab::GitoliteConfig::PushError</a>
</li>
<li class="class">
<a href="Gitlab/GraphCommit.html">Gitlab::GraphCommit</a>
</li>
<li class="class">
<a href="Gitlab/InlineDiff.html">Gitlab::InlineDiff</a>
</li>
<li class="class">
<a href="Gitlab/Issues.html">Gitlab::Issues</a>
</li>
<li class="class">
<a href="Gitlab/Logger.html">Gitlab::Logger</a>
</li>
<li class="module">
<a href="Gitlab/Markdown.html">Gitlab::Markdown</a>
</li>
<li class="class">
<a href="Gitlab/Merge.html">Gitlab::Merge</a>
</li>
<li class="class">
<a href="Gitlab/Milestones.html">Gitlab::Milestones</a>
</li>
<li class="class">
<a href="Gitlab/Projects.html">Gitlab::Projects</a>
</li>
<li class="class">
<a href="Gitlab/Satellite.html">Gitlab::Satellite</a>
</li>
<li class="class">
<a href="Gitlab/Session.html">Gitlab::Session</a>
</li>
<li class="class">
<a href="Gitlab/Theme.html">Gitlab::Theme</a>
</li>
<li class="class">
<a href="Gitlab/Users.html">Gitlab::Users</a>
</li>
<li class="module">
<a href="Admin.html">Admin</a>
</li>
<li class="class">
<a href="Admin/DashboardController.html">Admin::DashboardController</a>
</li>
<li class="class">
<a href="Admin/GroupsController.html">Admin::GroupsController</a>
</li>
<li class="class">
<a href="Admin/HooksController.html">Admin::HooksController</a>
</li>
<li class="class">
<a href="Admin/LogsController.html">Admin::LogsController</a>
</li>
<li class="class">
<a href="Admin/ProjectsController.html">Admin::ProjectsController</a>
</li>
<li class="class">
<a href="Admin/ResqueController.html">Admin::ResqueController</a>
</li>
<li class="class">
<a href="Admin/TeamMembersController.html">Admin::TeamMembersController</a>
</li>
<li class="class">
<a href="Admin/UsersController.html">Admin::UsersController</a>
</li>
<li class="module">
<a href="Notes.html">Notes</a>
</li>
<li class="class">
<a href="Notes/CreateContext.html">Notes::CreateContext</a>
</li>
<li class="class">
<a href="Notes/LoadContext.html">Notes::LoadContext</a>
</li>
<li class="module">
<a href="Redcarpet.html">Redcarpet</a>
</li>
<li class="module">
<a href="Redcarpet/Render.html">Redcarpet::Render</a>
</li>
<li class="class">
<a href="Redcarpet/Render/GitlabHTML.html">Redcarpet::Render::GitlabHTML</a>
</li>
<li class="module">
<a href="ExtractsPath.html">ExtractsPath</a>
</li>
<li class="class">
<a href="ExtractsPath/InvalidPathError.html">ExtractsPath::InvalidPathError</a>
</li>
<li class="class">
<a href="FileSizeValidator.html">FileSizeValidator</a>
</li>
<li class="class">
<a href="FileSizeValidator/Helper.html">FileSizeValidator::Helper</a>
</li>
<li class="module">
<a href="Grack.html">Grack</a>
</li>
<li class="class">
<a href="Grack/Auth.html">Grack::Auth</a>
</li>
<li class="module">
<a href="IssueCommonality.html">IssueCommonality</a>
</li>
<li class="module">
<a href="IssueCommonality/ClassMethods.html">IssueCommonality::ClassMethods</a>
</li>
<li class="module">
<a href="StaticModel.html">StaticModel</a>
</li>
<li class="module">
<a href="StaticModel/ClassMethods.html">StaticModel::ClassMethods</a>
</li>
<li class="class">
<a href="Ability.html">Ability</a>
</li>
<li class="module">
<a href="Account.html">Account</a>
</li>
<li class="class">
<a href="ActivityObserver.html">ActivityObserver</a>
</li>
<li class="class">
<a href="AdminController.html">AdminController</a>
</li>
<li class="class">
<a href="ApplicationController.html">ApplicationController</a>
</li>
<li class="class">
<a href="ApplicationDecorator.html">ApplicationDecorator</a>
</li>
<li class="module">
<a href="ApplicationHelper.html">ApplicationHelper</a>
</li>
<li class="class">
<a href="AttachmentUploader.html">AttachmentUploader</a>
</li>
<li class="module">
<a href="Authority.html">Authority</a>
</li>
<li class="class">
<a href="BaseContext.html">BaseContext</a>
</li>
<li class="class">
<a href="BlameController.html">BlameController</a>
</li>
<li class="class">
<a href="BlobController.html">BlobController</a>
</li>
<li class="class">
<a href="Commit.html">Commit</a>
</li>
<li class="class">
<a href="CommitController.html">CommitController</a>
</li>
<li class="class">
<a href="CommitDecorator.html">CommitDecorator</a>
</li>
<li class="class">
<a href="CommitLoadContext.html">CommitLoadContext</a>
</li>
<li class="class">
<a href="CommitsController.html">CommitsController</a>
</li>
<li class="module">
<a href="CommitsHelper.html">CommitsHelper</a>
</li>
<li class="class">
<a href="CompareController.html">CompareController</a>
</li>
<li class="class">
<a href="DashboardController.html">DashboardController</a>
</li>
<li class="class">
<a href="DeployKeysController.html">DeployKeysController</a>
</li>
<li class="class">
<a href="ErrorsController.html">ErrorsController</a>
</li>
<li class="class">
<a href="Event.html">Event</a>
</li>
<li class="class">
<a href="EventDecorator.html">EventDecorator</a>
</li>
<li class="module">
<a href="EventsHelper.html">EventsHelper</a>
</li>
<li class="module">
<a href="GitHost.html">GitHost</a>
</li>
<li class="module">
<a href="GitlabMarkdownHelper.html">GitlabMarkdownHelper</a>
</li>
<li class="class">
<a href="Group.html">Group</a>
</li>
<li class="class">
<a href="GroupsController.html">GroupsController</a>
</li>
<li class="class">
<a href="HelpController.html">HelpController</a>
</li>
<li class="class">
<a href="HooksController.html">HooksController</a>
</li>
<li class="class">
<a href="Issue.html">Issue</a>
</li>
<li class="class">
<a href="IssueObserver.html">IssueObserver</a>
</li>
<li class="class">
<a href="IssuesBulkUpdateContext.html">IssuesBulkUpdateContext</a>
</li>
<li class="class">
<a href="IssuesController.html">IssuesController</a>
</li>
<li class="module">
<a href="IssuesHelper.html">IssuesHelper</a>
</li>
<li class="class">
<a href="IssuesListContext.html">IssuesListContext</a>
</li>
<li class="class">
<a href="Key.html">Key</a>
</li>
<li class="class">
<a href="KeyObserver.html">KeyObserver</a>
</li>
<li class="class">
<a href="KeysController.html">KeysController</a>
</li>
<li class="class">
<a href="LabelsController.html">LabelsController</a>
</li>
<li class="class">
<a href="MergeRequest.html">MergeRequest</a>
</li>
<li class="class">
<a href="MergeRequestObserver.html">MergeRequestObserver</a>
</li>
<li class="class">
<a href="MergeRequestsController.html">MergeRequestsController</a>
</li>
<li class="module">
<a href="MergeRequestsHelper.html">MergeRequestsHelper</a>
</li>
<li class="class">
<a href="MergeRequestsLoadContext.html">MergeRequestsLoadContext</a>
</li>
<li class="class">
<a href="Milestone.html">Milestone</a>
</li>
<li class="class">
<a href="MilestonesController.html">MilestonesController</a>
</li>
<li class="class">
<a href="Note.html">Note</a>
</li>
<li class="class">
<a href="NoteObserver.html">NoteObserver</a>
</li>
<li class="class">
<a href="NotesController.html">NotesController</a>
</li>
<li class="module">
<a href="NotesHelper.html">NotesHelper</a>
</li>
<li class="class">
<a href="Notify.html">Notify</a>
</li>
<li class="class">
<a href="OmniauthCallbacksController.html">OmniauthCallbacksController</a>
</li>
<li class="class">
<a href="PostReceive.html">PostReceive</a>
</li>
<li class="class">
<a href="ProfileController.html">ProfileController</a>
</li>
<li class="module">
<a href="ProfileHelper.html">ProfileHelper</a>
</li>
<li class="class">
<a href="Project.html">Project</a>
</li>
<li class="class">
<a href="ProjectHook.html">ProjectHook</a>
</li>
<li class="class">
<a href="ProjectObserver.html">ProjectObserver</a>
</li>
<li class="class">
<a href="ProjectResourceController.html">ProjectResourceController</a>
</li>
<li class="class">
<a href="ProjectsController.html">ProjectsController</a>
</li>
<li class="module">
<a href="ProjectsHelper.html">ProjectsHelper</a>
</li>
<li class="class">
<a href="ProtectedBranch.html">ProtectedBranch</a>
</li>
<li class="class">
<a href="ProtectedBranchesController.html">ProtectedBranchesController</a>
</li>
<li class="module">
<a href="PushEvent.html">PushEvent</a>
</li>
<li class="module">
<a href="PushObserver.html">PushObserver</a>
</li>
<li class="class">
<a href="RefsController.html">RefsController</a>
</li>
<li class="class">
<a href="RepositoriesController.html">RepositoriesController</a>
</li>
<li class="module">
<a href="Repository.html">Repository</a>
</li>
<li class="class">
<a href="SearchContext.html">SearchContext</a>
</li>
<li class="class">
<a href="SearchController.html">SearchController</a>
</li>
<li class="class">
<a href="Snippet.html">Snippet</a>
</li>
<li class="class">
<a href="SnippetsController.html">SnippetsController</a>
</li>
<li class="module">
<a href="SnippetsHelper.html">SnippetsHelper</a>
</li>
<li class="class">
<a href="SystemHook.html">SystemHook</a>
</li>
<li class="class">
<a href="SystemHookObserver.html">SystemHookObserver</a>
</li>
<li class="class">
<a href="SystemHookWorker.html">SystemHookWorker</a>
</li>
<li class="module">
<a href="TabHelper.html">TabHelper</a>
</li>
<li class="module">
<a href="TagsHelper.html">TagsHelper</a>
</li>
<li class="module">
<a href="Team.html">Team</a>
</li>
<li class="class">
<a href="TeamMembersController.html">TeamMembersController</a>
</li>
<li class="class">
<a href="TestHookContext.html">TestHookContext</a>
</li>
<li class="class">
<a href="Tree.html">Tree</a>
</li>
<li class="class">
<a href="TreeController.html">TreeController</a>
</li>
<li class="class">
<a href="TreeDecorator.html">TreeDecorator</a>
</li>
<li class="module">
<a href="TreeHelper.html">TreeHelper</a>
</li>
<li class="class">
<a href="User.html">User</a>
</li>
<li class="class">
<a href="UserObserver.html">UserObserver</a>
</li>
<li class="class">
<a href="UsersProject.html">UsersProject</a>
</li>
<li class="class">
<a href="UsersProjectObserver.html">UsersProjectObserver</a>
</li>
<li class="module">
<a href="Votes.html">Votes</a>
</li>
<li class="class">
<a href="WebHook.html">WebHook</a>
</li>
<li class="class">
<a href="Wiki.html">Wiki</a>
</li>
<li class="class">
<a href="WikisController.html">WikisController</a>
</li>
</ul>
<h2 id="methods">Methods</h2>
<ul>
<li class="method"><a href="Gitlab/InlineDiff.html#method-c-_indexes_of_changed_lines">::_indexes_of_changed_lines — Gitlab::InlineDiff</a>
<li class="method"><a href="Project.html#method-c-access_options">::access_options — Project</a>
<li class="method"><a href="UsersProject.html#method-c-access_roles">::access_roles — UsersProject</a>
<li class="method"><a href="Milestone.html#method-c-active">::active — Milestone</a>
<li class="method"><a href="Project.html#method-c-active">::active — Project</a>
<li class="method"><a href="SystemHook.html#method-c-all_hooks_fire">::all_hooks_fire — SystemHook</a>
<li class="method"><a href="Ability.html#method-c-allowed">::allowed — Ability</a>
<li class="method"><a href="Gitlab/Logger.html#method-c-build">::build — Gitlab::Logger</a>
<li class="method"><a href="UsersProject.html#method-c-bulk_delete">::bulk_delete — UsersProject</a>
<li class="method"><a href="UsersProject.html#method-c-bulk_import">::bulk_import — UsersProject</a>
<li class="method"><a href="UsersProject.html#method-c-bulk_update">::bulk_update — UsersProject</a>
<li class="method"><a href="Commit.html#method-c-commits">::commits — Commit</a>
<li class="method"><a href="Commit.html#method-c-commits_between">::commits_between — Commit</a>
<li class="method"><a href="Commit.html#method-c-commits_since">::commits_since — Commit</a>
<li class="method"><a href="Commit.html#method-c-commits_with_refs">::commits_with_refs — Commit</a>
<li class="method"><a href="Commit.html#method-c-compare">::compare — Commit</a>
<li class="method"><a href="Snippet.html#method-c-content_types">::content_types — Snippet</a>
<li class="method"><a href="Project.html#method-c-create_by_user">::create_by_user — Project</a>
<li class="method"><a href="User.html#method-c-create_from_omniauth">::create_from_omniauth — User</a>
<li class="method"><a href="Note.html#method-c-create_status_change_note">::create_status_change_note — Note</a>
<li class="method"><a href="Gitlab/Theme.html#method-c-css_class_by_id">::css_class_by_id — Gitlab::Theme</a>
<li class="method"><a href="Event.html#method-c-determine_action">::determine_action — Event</a>
<li class="method"><a href="Gitlab/Logger.html#method-c-error">::error — Gitlab::Logger</a>
<li class="method"><a href="Gitlab/GitLogger.html#method-c-file_name">::file_name — Gitlab::GitLogger</a>
<li class="method"><a href="Gitlab/AppLogger.html#method-c-file_name">::file_name — Gitlab::AppLogger</a>
<li class="method"><a href="User.html#method-c-filter">::filter — User</a>
<li class="method"><a href="MergeRequest.html#method-c-find_all_by_branch">::find_all_by_branch — MergeRequest</a>
<li class="method"><a href="User.html#method-c-find_for_ldap_auth">::find_for_ldap_auth — User</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-find_free_space">::find_free_space — Gitlab::GraphCommit</a>
<li class="method"><a href="Commit.html#method-c-find_or_first">::find_or_first — Commit</a>
<li class="method"><a href="User.html#method-c-find_or_new_for_omniauth">::find_or_new_for_omniauth — User</a>
<li class="method"><a href="Commit.html#method-c-fresh_commits">::fresh_commits — Commit</a>
<li class="method"><a href="User.html#method-c-gitlab_auth">::gitlab_auth — User</a>
<li class="method"><a href="UsersProject.html#method-c-import_team">::import_team — UsersProject</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-index_commits">::index_commits — Gitlab::GraphCommit</a>
<li class="method"><a href="Gitlab/Logger.html#method-c-info">::info — Gitlab::Logger</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-mark_reserved">::mark_reserved — Gitlab::GraphCommit</a>
<li class="method"><a href="Redcarpet/Render/GitlabHTML.html#method-c-new">::new — Redcarpet::Render::GitlabHTML</a>
<li class="method"><a href="FileSizeValidator.html#method-c-new">::new — FileSizeValidator</a>
<li class="method"><a href="BaseContext.html#method-c-new">::new — BaseContext</a>
<li class="method"><a href="SearchContext.html#method-c-new">::new — SearchContext</a>
<li class="method"><a href="Tree.html#method-c-new">::new — Tree</a>
<li class="method"><a href="Commit.html#method-c-new">::new — Commit</a>
<li class="method"><a href="Gitlab/Merge.html#method-c-new">::new — Gitlab::Merge</a>
<li class="method"><a href="Gitlab/FileEditor.html#method-c-new">::new — Gitlab::FileEditor</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-new">::new — Gitlab::GraphCommit</a>
<li class="method"><a href="Gitlab/Satellite.html#method-c-new">::new — Gitlab::Satellite</a>
<li class="method"><a href="Issue.html#method-c-open_for">::open_for — Issue</a>
<li class="method"><a href="PostReceive.html#method-c-perform">::perform — PostReceive</a>
<li class="method"><a href="SystemHookWorker.html#method-c-perform">::perform — SystemHookWorker</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-place_chain">::place_chain — Gitlab::GraphCommit</a>
<li class="method"><a href="Gitlab/InlineDiff.html#method-c-processing">::processing — Gitlab::InlineDiff</a>
<li class="method"><a href="Ability.html#method-c-project_abilities">::project_abilities — Ability</a>
<li class="method"><a href="Gitlab/Logger.html#method-c-read_latest">::read_latest — Gitlab::Logger</a>
<li class="method"><a href="Wiki.html#method-c-regenerate_from">::regenerate_from — Wiki</a>
<li class="method"><a href="Gitlab/InlineDiff.html#method-c-replace_markers">::replace_markers — Gitlab::InlineDiff</a>
<li class="method"><a href="Group.html#method-c-search">::search — Group</a>
<li class="method"><a href="Project.html#method-c-search">::search — Project</a>
<li class="method"><a href="User.html#method-c-search">::search — User</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-take_left_leaves">::take_left_leaves — Gitlab::GraphCommit</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-c-to_graph">::to_graph — Gitlab::GraphCommit</a>
<li class="method"><a href="UsersProject.html#method-c-user_bulk_import">::user_bulk_import — UsersProject</a>
<li class="method"><a href="User.html#method-c-without_projects">::without_projects — User</a>
<li class="method"><a href="UsersProject.html#method-c-without_repository_callback">::without_repository_callback — UsersProject</a>
<li class="method"><a href="StaticModel.html#method-i-3D-3D">#== — StaticModel</a>
<li class="method"><a href="StaticModel.html#method-i-5B-5D">#[] — StaticModel</a>
<li class="method"><a href="Grack/Auth.html#method-i-abilities">#abilities — Grack::Auth</a>
<li class="method"><a href="BaseContext.html#method-i-abilities">#abilities — BaseContext</a>
<li class="method"><a href="ApplicationController.html#method-i-abilities">#abilities — ApplicationController</a>
<li class="method"><a href="ApplicationController.html#method-i-access_denied-21">#access_denied! — ApplicationController</a>
<li class="method"><a href="Event.html#method-i-action_name">#action_name — Event</a>
<li class="method"><a href="Authority.html#method-i-add_access">#add_access — Authority</a>
<li class="method"><a href="ApplicationController.html#method-i-add_project_abilities">#add_project_abilities — ApplicationController</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-i-add_refs">#add_refs — Gitlab::GraphCommit</a>
<li class="method"><a href="Team.html#method-i-add_user_id_to_team">#add_user_id_to_team — Team</a>
<li class="method"><a href="Team.html#method-i-add_user_to_team">#add_user_to_team — Team</a>
<li class="method"><a href="Team.html#method-i-add_users_ids_to_team">#add_users_ids_to_team — Team</a>
<li class="method"><a href="Team.html#method-i-add_users_to_team">#add_users_to_team — Team</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-admin_all_repo">#admin_all_repo — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-admin_all_repo-21">#admin_all_repo! — Gitlab::GitoliteConfig</a>
<li class="method"><a href="UsersProjectObserver.html#method-i-after_commit">#after_commit — UsersProjectObserver</a>
<li class="method"><a href="IssueObserver.html#method-i-after_create">#after_create — IssueObserver</a>
<li class="method"><a href="SystemHookObserver.html#method-i-after_create">#after_create — SystemHookObserver</a>
<li class="method"><a href="ActivityObserver.html#method-i-after_create">#after_create — ActivityObserver</a>
<li class="method"><a href="UsersProjectObserver.html#method-i-after_create">#after_create — UsersProjectObserver</a>
<li class="method"><a href="NoteObserver.html#method-i-after_create">#after_create — NoteObserver</a>
<li class="method"><a href="MergeRequestObserver.html#method-i-after_create">#after_create — MergeRequestObserver</a>
<li class="method"><a href="UserObserver.html#method-i-after_create">#after_create — UserObserver</a>
<li class="method"><a href="ProjectObserver.html#method-i-after_create">#after_create — ProjectObserver</a>
<li class="method"><a href="UserObserver.html#method-i-after_destroy">#after_destroy — UserObserver</a>
<li class="method"><a href="ProjectObserver.html#method-i-after_destroy">#after_destroy — ProjectObserver</a>
<li class="method"><a href="SystemHookObserver.html#method-i-after_destroy">#after_destroy — SystemHookObserver</a>
<li class="method"><a href="KeyObserver.html#method-i-after_destroy">#after_destroy — KeyObserver</a>
<li class="method"><a href="UsersProjectObserver.html#method-i-after_destroy">#after_destroy — UsersProjectObserver</a>
<li class="method"><a href="KeyObserver.html#method-i-after_save">#after_save — KeyObserver</a>
<li class="method"><a href="ActivityObserver.html#method-i-after_save">#after_save — ActivityObserver</a>
<li class="method"><a href="ProjectObserver.html#method-i-after_save">#after_save — ProjectObserver</a>
<li class="method"><a href="ApplicationController.html#method-i-after_sign_in_path_for">#after_sign_in_path_for — ApplicationController</a>
<li class="method"><a href="IssueObserver.html#method-i-after_update">#after_update — IssueObserver</a>
<li class="method"><a href="MergeRequestObserver.html#method-i-after_update">#after_update — MergeRequestObserver</a>
<li class="method"><a href="Authority.html#method-i-allow_read_for-3F">#allow_read_for? — Authority</a>
<li class="method"><a href="Event.html#method-i-allowed-3F">#allowed? — Event</a>
<li class="method"><a href="TreeHelper.html#method-i-allowed_tree_edit-3F">#allowed_tree_edit? — TreeHelper</a>
<li class="method"><a href="ApplicationHelper.html#method-i-app_theme">#app_theme — ApplicationHelper</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-apply">#apply — Gitlab::GitoliteConfig</a>
<li class="method"><a href="TeamMembersController.html#method-i-apply_import">#apply_import — TeamMembersController</a>
<li class="method"><a href="RepositoriesController.html#method-i-archive">#archive — RepositoriesController</a>
<li class="method"><a href="Repository.html#method-i-archive_repo">#archive_repo — Repository</a>
<li class="method"><a href="ExtractsPath.html#method-i-assign_ref_vars">#assign_ref_vars — ExtractsPath</a>
<li class="method"><a href="SystemHook.html#method-i-async_execute">#async_execute — SystemHook</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-attributes_for_keys">#attributes_for_keys — Gitlab::APIHelpers</a>
<li class="method"><a href="ApplicationHelper.html#method-i-authbutton">#authbutton — ApplicationHelper</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-authenticate-21">#authenticate! — Gitlab::APIHelpers</a>
<li class="method"><a href="AdminController.html#method-i-authenticate_admin-21">#authenticate_admin! — AdminController</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-authenticated_as_admin-21">#authenticated_as_admin! — Gitlab::APIHelpers</a>
<li class="method"><a href="Event.html#method-i-author">#author — Event</a>
<li class="method"><a href="Commit.html#method-i-author_email">#author_email — Commit</a>
<li class="method"><a href="CommitDecorator.html#method-i-author_link">#author_link — CommitDecorator</a>
<li class="method"><a href="Commit.html#method-i-author_name">#author_name — Commit</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-authorize-21">#authorize! — Gitlab::APIHelpers</a>
<li class="method"><a href="IssuesController.html#method-i-authorize_admin_issue-21">#authorize_admin_issue! — IssuesController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-authorize_admin_merge_request-21">#authorize_admin_merge_request! — MergeRequestsController</a>
<li class="method"><a href="MilestonesController.html#method-i-authorize_admin_milestone-21">#authorize_admin_milestone! — MilestonesController</a>
<li class="method"><a href="SnippetsController.html#method-i-authorize_admin_snippet-21">#authorize_admin_snippet! — SnippetsController</a>
<li class="method"><a href="ApplicationController.html#method-i-authorize_code_access-21">#authorize_code_access! — ApplicationController</a>
<li class="method"><a href="IssuesController.html#method-i-authorize_modify_issue-21">#authorize_modify_issue! — IssuesController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-authorize_modify_merge_request-21">#authorize_modify_merge_request! — MergeRequestsController</a>
<li class="method"><a href="SnippetsController.html#method-i-authorize_modify_snippet-21">#authorize_modify_snippet! — SnippetsController</a>
<li class="method"><a href="ApplicationController.html#method-i-authorize_project-21">#authorize_project! — ApplicationController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-automerge">#automerge — MergeRequestsController</a>
<li class="method"><a href="MergeRequest.html#method-i-automerge-21">#automerge! — MergeRequest</a>
<li class="method"><a href="MergeRequestsController.html#method-i-automerge_check">#automerge_check — MergeRequestsController</a>
<li class="method"><a href="StaticModel/ClassMethods.html#method-i-base_class">#base_class — StaticModel::ClassMethods</a>
<li class="method"><a href="Admin/UsersController.html#method-i-block">#block — Admin::UsersController</a>
<li class="method"><a href="Account.html#method-i-block">#block — Account</a>
<li class="method"><a href="Redcarpet/Render/GitlabHTML.html#method-i-block_code">#block_code — Redcarpet::Render::GitlabHTML</a>
<li class="method"><a href="PushEvent.html#method-i-branch-3F">#branch? — PushEvent</a>
<li class="method"><a href="MergeRequestsController.html#method-i-branch_from">#branch_from — MergeRequestsController</a>
<li class="method"><a href="PushEvent.html#method-i-branch_name">#branch_name — PushEvent</a>
<li class="method"><a href="Repository.html#method-i-branch_names">#branch_names — Repository</a>
<li class="method"><a href="MergeRequestsController.html#method-i-branch_to">#branch_to — MergeRequestsController</a>
<li class="method"><a href="Repository.html#method-i-branches">#branches — Repository</a>
<li class="method"><a href="RepositoriesController.html#method-i-branches">#branches — RepositoriesController</a>
<li class="method"><a href="TabHelper.html#method-i-branches_tab_class">#branches_tab_class — TabHelper</a>
<li class="method"><a href="TreeDecorator.html#method-i-breadcrumbs">#breadcrumbs — TreeDecorator</a>
<li class="method"><a href="MergeRequest.html#method-i-broken_diffs-3F">#broken_diffs? — MergeRequest</a>
<li class="method"><a href="Project.html#method-i-build_commit_note">#build_commit_note — Project</a>
<li class="method"><a href="CommitsHelper.html#method-i-build_line_anchor">#build_line_anchor — CommitsHelper</a>
<li class="method"><a href="IssuesController.html#method-i-bulk_update">#bulk_update — IssuesController</a>
<li class="method"><a href="BaseContext.html#method-i-can-3F">#can? — BaseContext</a>
<li class="method"><a href="Grack/Auth.html#method-i-can-3F">#can? — Grack::Auth</a>
<li class="method"><a href="ApplicationController.html#method-i-can-3F">#can? — ApplicationController</a>
<li class="method"><a href="Gitlab/Merge.html#method-i-can_be_merged-3F">#can_be_merged? — Gitlab::Merge</a>
<li class="method"><a href="MergeRequest.html#method-i-can_be_merged-3F">#can_be_merged? — MergeRequest</a>
<li class="method"><a href="Account.html#method-i-can_create_group-3F">#can_create_group? — Account</a>
<li class="method"><a href="Account.html#method-i-can_create_project-3F">#can_create_project? — Account</a>
<li class="method"><a href="Gitlab/FileEditor.html#method-i-can_edit-3F">#can_edit? — Gitlab::FileEditor</a>
<li class="method"><a href="Account.html#method-i-cared_merge_requests">#cared_merge_requests — Account</a>
<li class="method"><a href="Event.html#method-i-changed_issue-3F">#changed_issue? — Event</a>
<li class="method"><a href="Event.html#method-i-changed_merge_request-3F">#changed_merge_request? — Event</a>
<li class="method"><a href="MergeRequest.html#method-i-check_if_can_be_merged">#check_if_can_be_merged — MergeRequest</a>
<li class="method"><a href="Project.html#method-i-check_limit">#check_limit — Project</a>
<li class="method"><a href="FileSizeValidator.html#method-i-check_validity-21">#check_validity! — FileSizeValidator</a>
<li class="method"><a href="Gitlab/Satellite.html#method-i-clear">#clear — Gitlab::Satellite</a>
<li class="method"><a href="Event.html#method-i-closed-3F">#closed? — Event</a>
<li class="method"><a href="MergeRequest.html#method-i-closed_event">#closed_event — MergeRequest</a>
<li class="method"><a href="ProtectedBranch.html#method-i-commit">#commit — ProtectedBranch</a>
<li class="method"><a href="Repository.html#method-i-commit">#commit — Repository</a>
<li class="method"><a href="Note.html#method-i-commit_author">#commit_author — Note</a>
<li class="method"><a href="PushEvent.html#method-i-commit_from">#commit_from — PushEvent</a>
<li class="method"><a href="Project.html#method-i-commit_line_notes">#commit_line_notes — Project</a>
<li class="method"><a href="Project.html#method-i-commit_notes">#commit_notes — Project</a>
<li class="method"><a href="PushEvent.html#method-i-commit_to">#commit_to — PushEvent</a>
<li class="method"><a href="PushEvent.html#method-i-commits">#commits — PushEvent</a>
<li class="method"><a href="MergeRequest.html#method-i-commits">#commits — MergeRequest</a>
<li class="method"><a href="Repository.html#method-i-commits">#commits — Repository</a>
<li class="method"><a href="Repository.html#method-i-commits_between">#commits_between — Repository</a>
<li class="method"><a href="PushEvent.html#method-i-commits_count">#commits_count — PushEvent</a>
<li class="method"><a href="Repository.html#method-i-commits_since">#commits_since — Repository</a>
<li class="method"><a href="Repository.html#method-i-commits_with_refs">#commits_with_refs — Repository</a>
<li class="method"><a href="Commit.html#method-i-committer_email">#committer_email — Commit</a>
<li class="method"><a href="Commit.html#method-i-committer_name">#committer_name — Commit</a>
<li class="method"><a href="Project.html#method-i-common_notes">#common_notes — Project</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-config">#config — Gitlab::Gitolite</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-create">#create — Admin::ProjectsController</a>
<li class="method"><a href="Gitlab/Satellite.html#method-i-create">#create — Gitlab::Satellite</a>
<li class="method"><a href="Admin/UsersController.html#method-i-create">#create — Admin::UsersController</a>
<li class="method"><a href="SnippetsController.html#method-i-create">#create — SnippetsController</a>
<li class="method"><a href="ProtectedBranchesController.html#method-i-create">#create — ProtectedBranchesController</a>
<li class="method"><a href="MilestonesController.html#method-i-create">#create — MilestonesController</a>
<li class="method"><a href="Admin/HooksController.html#method-i-create">#create — Admin::HooksController</a>
<li class="method"><a href="CompareController.html#method-i-create">#create — CompareController</a>
<li class="method"><a href="TeamMembersController.html#method-i-create">#create — TeamMembersController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-create">#create — Admin::GroupsController</a>
<li class="method"><a href="IssuesController.html#method-i-create">#create — IssuesController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-create">#create — MergeRequestsController</a>
<li class="method"><a href="DeployKeysController.html#method-i-create">#create — DeployKeysController</a>
<li class="method"><a href="NotesController.html#method-i-create">#create — NotesController</a>
<li class="method"><a href="HooksController.html#method-i-create">#create — HooksController</a>
<li class="method"><a href="KeysController.html#method-i-create">#create — KeysController</a>
<li class="method"><a href="ProjectsController.html#method-i-create">#create — ProjectsController</a>
<li class="method"><a href="WikisController.html#method-i-create">#create — WikisController</a>
<li class="method"><a href="Gitlab/Auth.html#method-i-create_from_omniauth">#create_from_omniauth — Gitlab::Auth</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-create_repository">#create_repository — Gitlab::Gitolite</a>
<li class="method"><a href="Commit.html#method-i-created_at">#created_at — Commit</a>
<li class="method"><a href="ApplicationHelper.html#method-i-current_action-3F">#current_action? — ApplicationHelper</a>
<li class="method"><a href="ApplicationHelper.html#method-i-current_controller-3F">#current_controller? — ApplicationHelper</a>
<li class="method"><a href="Grack/Auth.html#method-i-current_ref">#current_ref — Grack::Auth</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-current_user">#current_user — Gitlab::APIHelpers</a>
<li class="method"><a href="Snippet.html#method-i-data">#data — Snippet</a>
<li class="method"><a href="MergeRequestsController.html#method-i-define_show_vars">#define_show_vars — MergeRequestsController</a>
<li class="method"><a href="RefsController.html#method-i-define_tree_vars">#define_tree_vars — RefsController</a>
<li class="method"><a href="Team.html#method-i-delete_users_ids_from_team">#delete_users_ids_from_team — Team</a>
<li class="method"><a href="CommitDecorator.html#method-i-description">#description — CommitDecorator</a>
<li class="method"><a href="ProfileController.html#method-i-design">#design — ProfileController</a>
<li class="method"><a href="NotesController.html#method-i-destroy">#destroy — NotesController</a>
<li class="method"><a href="HooksController.html#method-i-destroy">#destroy — HooksController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-destroy">#destroy — Admin::UsersController</a>
<li class="method"><a href="DeployKeysController.html#method-i-destroy">#destroy — DeployKeysController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-destroy">#destroy — Admin::ProjectsController</a>
<li class="method"><a href="ProtectedBranchesController.html#method-i-destroy">#destroy — ProtectedBranchesController</a>
<li class="method"><a href="Admin/HooksController.html#method-i-destroy">#destroy — Admin::HooksController</a>
<li class="method"><a href="TeamMembersController.html#method-i-destroy">#destroy — TeamMembersController</a>
<li class="method"><a href="ProjectsController.html#method-i-destroy">#destroy — ProjectsController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-destroy">#destroy — Admin::GroupsController</a>
<li class="method"><a href="SnippetsController.html#method-i-destroy">#destroy — SnippetsController</a>
<li class="method"><a href="MilestonesController.html#method-i-destroy">#destroy — MilestonesController</a>
<li class="method"><a href="Admin/TeamMembersController.html#method-i-destroy">#destroy — Admin::TeamMembersController</a>
<li class="method"><a href="WikisController.html#method-i-destroy">#destroy — WikisController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-destroy">#destroy — MergeRequestsController</a>
<li class="method"><a href="IssuesController.html#method-i-destroy">#destroy — IssuesController</a>
<li class="method"><a href="KeysController.html#method-i-destroy">#destroy — KeysController</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-destroy_project">#destroy_project — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-destroy_project-21">#destroy_project! — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Repository.html#method-i-destroy_repository">#destroy_repository — Repository</a>
<li class="method"><a href="StaticModel.html#method-i-destroyed-3F">#destroyed? — StaticModel</a>
<li class="method"><a href="Gitlab/Encode.html#method-i-detect_encoding">#detect_encoding — Gitlab::Encode</a>
<li class="method"><a href="Authority.html#method-i-dev_access_for-3F">#dev_access_for? — Authority</a>
<li class="method"><a href="ApplicationController.html#method-i-dev_tools">#dev_tools — ApplicationController</a>
<li class="method"><a href="Commit.html#method-i-different_committer-3F">#different_committer? — Commit</a>
<li class="method"><a href="MergeRequest.html#method-i-diffs">#diffs — MergeRequest</a>
<li class="method"><a href="MergeRequestsController.html#method-i-diffs">#diffs — MergeRequestsController</a>
<li class="method"><a href="Repository.html#method-i-discover_default_branch">#discover_default_branch — Repository</a>
<li class="method"><a href="Note.html#method-i-downvote-3F">#downvote? — Note</a>
<li class="method"><a href="Votes.html#method-i-downvotes">#downvotes — Votes</a>
<li class="method"><a href="Votes.html#method-i-downvotes_in_percent">#downvotes_in_percent — Votes</a>
<li class="method"><a href="CommitsHelper.html#method-i-each_diff_line">#each_diff_line — CommitsHelper</a>
<li class="method"><a href="TreeController.html#method-i-edit">#edit — TreeController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-edit">#edit — Admin::ProjectsController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-edit">#edit — Admin::GroupsController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-edit">#edit — Admin::UsersController</a>
<li class="method"><a href="SnippetsController.html#method-i-edit">#edit — SnippetsController</a>
<li class="method"><a href="Admin/TeamMembersController.html#method-i-edit">#edit — Admin::TeamMembersController</a>
<li class="method"><a href="ProjectsController.html#method-i-edit">#edit — ProjectsController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-edit">#edit — MergeRequestsController</a>
<li class="method"><a href="WikisController.html#method-i-edit">#edit — WikisController</a>
<li class="method"><a href="MilestonesController.html#method-i-edit">#edit — MilestonesController</a>
<li class="method"><a href="IssuesController.html#method-i-edit">#edit — IssuesController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-emoji_autocomplete_source">#emoji_autocomplete_source — ApplicationHelper</a>
<li class="method"><a href="Tree.html#method-i-empty-3F">#empty? — Tree</a>
<li class="method"><a href="Repository.html#method-i-empty_repo-3F">#empty_repo? — Repository</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-enable_automerge">#enable_automerge — Gitlab::Gitolite</a>
<li class="method"><a href="EventsHelper.html#method-i-event_action_name">#event_action_name — EventsHelper</a>
<li class="method"><a href="EventsHelper.html#method-i-event_image">#event_image — EventsHelper</a>
<li class="method"><a href="WebHook.html#method-i-execute">#execute — WebHook</a>
<li class="method"><a href="SearchContext.html#method-i-execute">#execute — SearchContext</a>
<li class="method"><a href="CommitLoadContext.html#method-i-execute">#execute — CommitLoadContext</a>
<li class="method"><a href="Notes/CreateContext.html#method-i-execute">#execute — Notes::CreateContext</a>
<li class="method"><a href="Notes/LoadContext.html#method-i-execute">#execute — Notes::LoadContext</a>
<li class="method"><a href="IssuesBulkUpdateContext.html#method-i-execute">#execute — IssuesBulkUpdateContext</a>
<li class="method"><a href="MergeRequestsLoadContext.html#method-i-execute">#execute — MergeRequestsLoadContext</a>
<li class="method"><a href="TestHookContext.html#method-i-execute">#execute — TestHookContext</a>
<li class="method"><a href="IssuesListContext.html#method-i-execute">#execute — IssuesListContext</a>
<li class="method"><a href="PushObserver.html#method-i-execute_hooks">#execute_hooks — PushObserver</a>
<li class="method"><a href="Gitlab/Satellite.html#method-i-exists-3F">#exists? — Gitlab::Satellite</a>
<li class="method"><a href="Snippet.html#method-i-expired-3F">#expired? — Snippet</a>
<li class="method"><a href="Milestone.html#method-i-expires_at">#expires_at — Milestone</a>
<li class="method"><a href="ExtractsPath.html#method-i-extract_ref">#extract_ref — ExtractsPath</a>
<li class="method"><a href="OmniauthCallbacksController.html#method-i-failure_message">#failure_message — OmniauthCallbacksController</a>
<li class="method"><a href="EventDecorator.html#method-i-feed_summary">#feed_summary — EventDecorator</a>
<li class="method"><a href="EventDecorator.html#method-i-feed_title">#feed_title — EventDecorator</a>
<li class="method"><a href="EventDecorator.html#method-i-feed_url">#feed_url — EventDecorator</a>
<li class="method"><a href="ProjectsController.html#method-i-files">#files — ProjectsController</a>
<li class="method"><a href="Gitlab/Auth.html#method-i-find_for_ldap_auth">#find_for_ldap_auth — Gitlab::Auth</a>
<li class="method"><a href="Gitlab/Auth.html#method-i-find_or_new_for_omniauth">#find_or_new_for_omniauth — Gitlab::Auth</a>
<li class="method"><a href="Key.html#method-i-fingerprintable_key">#fingerprintable_key — Key</a>
<li class="method"><a href="Account.html#method-i-first_name">#first_name — Account</a>
<li class="method"><a href="Note.html#method-i-for_commit-3F">#for_commit? — Note</a>
<li class="method"><a href="Note.html#method-i-for_diff_line-3F">#for_diff_line? — Note</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-forbidden-21">#forbidden! — Gitlab::APIHelpers</a>
<li class="method"><a href="Gitlab/GitLogger.html#method-i-format_message">#format_message — Gitlab::GitLogger</a>
<li class="method"><a href="Gitlab/AppLogger.html#method-i-format_message">#format_message — Gitlab::AppLogger</a>
<li class="method"><a href="Repository.html#method-i-fresh_commits">#fresh_commits — Repository</a>
<li class="method"><a href="User.html#method-i-generate_password">#generate_password — User</a>
<li class="method"><a href="Gitlab/Markdown.html#method-i-gfm">#gfm — Gitlab::Markdown</a>
<li class="method"><a href="Project.html#method-i-git_error-3F">#git_error? — Project</a>
<li class="method"><a href="GitHost.html#method-i-git_host">#git_host — GitHost</a>
<li class="method"><a href="ApplicationController.html#method-i-git_not_found-21">#git_not_found! — ApplicationController</a>
<li class="method"><a href="ErrorsController.html#method-i-githost">#githost — ErrorsController</a>
<li class="method"><a href="TreeHelper.html#method-i-gitlab_markdown-3F">#gitlab_markdown? — TreeHelper</a>
<li class="method"><a href="ProjectsController.html#method-i-graph">#graph — ProjectsController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-gravatar_icon">#gravatar_icon — ApplicationHelper</a>
<li class="method"><a href="GroupsController.html#method-i-group">#group — GroupsController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-grouped_options_refs">#grouped_options_refs — ApplicationHelper</a>
<li class="method"><a href="ProjectsHelper.html#method-i-grouper_project_members">#grouper_project_members — ProjectsHelper</a>
<li class="method"><a href="Authority.html#method-i-guest_access_for-3F">#guest_access_for? — Authority</a>
<li class="method"><a href="Repository.html#method-i-has_commits-3F">#has_commits? — Repository</a>
<li class="method"><a href="Repository.html#method-i-has_post_receive_file-3F">#has_post_receive_file? — Repository</a>
<li class="method"><a href="Repository.html#method-i-heads">#heads — Repository</a>
<li class="method"><a href="FileSizeValidator.html#method-i-help">#help — FileSizeValidator</a>
<li class="method"><a href="ApplicationHelper.html#method-i-hexdigest">#hexdigest — ApplicationHelper</a>
<li class="method"><a href="WikisController.html#method-i-history">#history — WikisController</a>
<li class="method"><a href="ProfileController.html#method-i-history">#history — ProfileController</a>
<li class="method"><a href="Repository.html#method-i-http_url_to_repo">#http_url_to_repo — Repository</a>
<li class="method"><a href="MergeRequest.html#method-i-human_state">#human_state — MergeRequest</a>
<li class="method"><a href="CommitsHelper.html#method-i-identification_type">#identification_type — CommitsHelper</a>
<li class="method"><a href="Account.html#method-i-identifier">#identifier — Account</a>
<li class="method"><a href="CommitsHelper.html#method-i-image_diff_class">#image_diff_class — CommitsHelper</a>
<li class="method"><a href="MilestonesController.html#method-i-index">#index — MilestonesController</a>
<li class="method"><a href="CompareController.html#method-i-index">#index — CompareController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-index">#index — MergeRequestsController</a>
<li class="method"><a href="IssuesController.html#method-i-index">#index — IssuesController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-index">#index — Admin::GroupsController</a>
<li class="method"><a href="HelpController.html#method-i-index">#index — HelpController</a>
<li class="method"><a href="ProtectedBranchesController.html#method-i-index">#index — ProtectedBranchesController</a>
<li class="method"><a href="SnippetsController.html#method-i-index">#index — SnippetsController</a>
<li class="method"><a href="Admin/DashboardController.html#method-i-index">#index — Admin::DashboardController</a>
<li class="method"><a href="DashboardController.html#method-i-index">#index — DashboardController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-index">#index — Admin::ProjectsController</a>
<li class="method"><a href="Admin/HooksController.html#method-i-index">#index — Admin::HooksController</a>
<li class="method"><a href="LabelsController.html#method-i-index">#index — LabelsController</a>
<li class="method"><a href="KeysController.html#method-i-index">#index — KeysController</a>
<li class="method"><a href="HooksController.html#method-i-index">#index — HooksController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-index">#index — Admin::UsersController</a>
<li class="method"><a href="DeployKeysController.html#method-i-index">#index — DeployKeysController</a>
<li class="method"><a href="NotesController.html#method-i-index">#index — NotesController</a>
<li class="method"><a href="TeamMembersController.html#method-i-index">#index — TeamMembersController</a>
<li class="method"><a href="Tree.html#method-i-invalid-3F">#invalid? — Tree</a>
<li class="method"><a href="Account.html#method-i-is_admin-3F">#is_admin? — Account</a>
<li class="method"><a href="IssueCommonality.html#method-i-is_assigned-3F">#is_assigned? — IssueCommonality</a>
<li class="method"><a href="IssueCommonality.html#method-i-is_being_closed-3F">#is_being_closed? — IssueCommonality</a>
<li class="method"><a href="IssueCommonality.html#method-i-is_being_reassigned-3F">#is_being_reassigned? — IssueCommonality</a>
<li class="method"><a href="IssueCommonality.html#method-i-is_being_reopened-3F">#is_being_reopened? — IssueCommonality</a>
<li class="method"><a href="Tree.html#method-i-is_blob-3F">#is_blob? — Tree</a>
<li class="method"><a href="Key.html#method-i-is_deploy_key">#is_deploy_key — Key</a>
<li class="method"><a href="IssuesController.html#method-i-issue">#issue — IssuesController</a>
<li class="method"><a href="Event.html#method-i-issue">#issue — Event</a>
<li class="method"><a href="Event.html#method-i-issue-3F">#issue? — Event</a>
<li class="method"><a href="IssuesHelper.html#method-i-issue_css_classes">#issue_css_classes — IssuesHelper</a>
<li class="method"><a href="Notify.html#method-i-issue_status_changed_email">#issue_status_changed_email — Notify</a>
<li class="method"><a href="IssuesHelper.html#method-i-issue_tags">#issue_tags — IssuesHelper</a>
<li class="method"><a href="DashboardController.html#method-i-issues">#issues — DashboardController</a>
<li class="method"><a href="GroupsController.html#method-i-issues">#issues — GroupsController</a>
<li class="method"><a href="IssuesHelper.html#method-i-issues_filter">#issues_filter — IssuesHelper</a>
<li class="method"><a href="IssuesController.html#method-i-issues_filtered">#issues_filtered — IssuesController</a>
<li class="method"><a href="Project.html#method-i-issues_labels">#issues_labels — Project</a>
<li class="method"><a href="Event.html#method-i-joined-3F">#joined? — Event</a>
<li class="method"><a href="Project.html#method-i-last_activity">#last_activity — Project</a>
<li class="method"><a href="Project.html#method-i-last_activity_date">#last_activity_date — Project</a>
<li class="method"><a href="Account.html#method-i-last_activity_project">#last_activity_project — Account</a>
<li class="method"><a href="ApplicationHelper.html#method-i-last_commit">#last_commit — ApplicationHelper</a>
<li class="method"><a href="PushEvent.html#method-i-last_commit">#last_commit — PushEvent</a>
<li class="method"><a href="MergeRequest.html#method-i-last_commit">#last_commit — MergeRequest</a>
<li class="method"><a href="Repository.html#method-i-last_commit_for">#last_commit_for — Repository</a>
<li class="method"><a href="Key.html#method-i-last_deploy-3F">#last_deploy? — Key</a>
<li class="method"><a href="PushEvent.html#method-i-last_push_to_non_root-3F">#last_push_to_non_root? — PushEvent</a>
<li class="method"><a href="OmniauthCallbacksController.html#method-i-ldap">#ldap — OmniauthCallbacksController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-ldap_enable-3F">#ldap_enable? — ApplicationHelper</a>
<li class="method"><a href="Event.html#method-i-left-3F">#left? — Event</a>
<li class="method"><a href="SnippetsHelper.html#method-i-lifetime_select_options">#lifetime_select_options — SnippetsHelper</a>
<li class="method"><a href="CommitDecorator.html#method-i-link_title">#link_title — CommitDecorator</a>
<li class="method"><a href="EventsHelper.html#method-i-link_to_author">#link_to_author — EventsHelper</a>
<li class="method"><a href="NotesHelper.html#method-i-link_to_commit_diff_line_note">#link_to_commit_diff_line_note — NotesHelper</a>
<li class="method"><a href="GitlabMarkdownHelper.html#method-i-link_to_gfm">#link_to_gfm — GitlabMarkdownHelper</a>
<li class="method"><a href="IssuesHelper.html#method-i-link_to_issue_assignee">#link_to_issue_assignee — IssuesHelper</a>
<li class="method"><a href="IssuesHelper.html#method-i-link_to_issue_author">#link_to_issue_author — IssuesHelper</a>
<li class="method"><a href="MergeRequestsHelper.html#method-i-link_to_merge_request_assignee">#link_to_merge_request_assignee — MergeRequestsHelper</a>
<li class="method"><a href="MergeRequestsHelper.html#method-i-link_to_merge_request_author">#link_to_merge_request_author — MergeRequestsHelper</a>
<li class="method"><a href="ProjectsHelper.html#method-i-link_to_project">#link_to_project — ProjectsHelper</a>
<li class="method"><a href="NotesHelper.html#method-i-loading_more_notes-3F">#loading_more_notes? — NotesHelper</a>
<li class="method"><a href="NotesHelper.html#method-i-loading_new_notes-3F">#loading_new_notes? — NotesHelper</a>
<li class="method"><a href="Gitlab/Auth.html#method-i-log">#log — Gitlab::Auth</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-log">#log — Gitlab::GitoliteConfig</a>
<li class="method"><a href="ProjectObserver.html#method-i-log_info">#log_info — ProjectObserver</a>
<li class="method"><a href="UserObserver.html#method-i-log_info">#log_info — UserObserver</a>
<li class="method"><a href="RefsController.html#method-i-logs_tree">#logs_tree — RefsController</a>
<li class="method"><a href="MergeRequest.html#method-i-mark_as_merged-21">#mark_as_merged! — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-mark_as_unchecked">#mark_as_unchecked — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-mark_as_unmergable">#mark_as_unmergable — MergeRequest</a>
<li class="method"><a href="GitlabMarkdownHelper.html#method-i-markdown">#markdown — GitlabMarkdownHelper</a>
<li class="method"><a href="TreeHelper.html#method-i-markup-3F">#markup? — TreeHelper</a>
<li class="method"><a href="Authority.html#method-i-master_access_for-3F">#master_access_for? — Authority</a>
<li class="method"><a href="PushEvent.html#method-i-md_ref-3F">#md_ref? — PushEvent</a>
<li class="method"><a href="Event.html#method-i-membership_changed-3F">#membership_changed? — Event</a>
<li class="method"><a href="Gitlab/Merge.html#method-i-merge-21">#merge! — Gitlab::Merge</a>
<li class="method"><a href="MergeRequest.html#method-i-merge-21">#merge! — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-merge_event">#merge_event — MergeRequest</a>
<li class="method"><a href="Event.html#method-i-merge_request">#merge_request — Event</a>
<li class="method"><a href="MergeRequestsController.html#method-i-merge_request">#merge_request — MergeRequestsController</a>
<li class="method"><a href="Event.html#method-i-merge_request-3F">#merge_request? — Event</a>
<li class="method"><a href="GroupsController.html#method-i-merge_requests">#merge_requests — GroupsController</a>
<li class="method"><a href="DashboardController.html#method-i-merge_requests">#merge_requests — DashboardController</a>
<li class="method"><a href="MergeRequest.html#method-i-merged-3F">#merged? — MergeRequest</a>
<li class="method"><a href="Event.html#method-i-merged-3F">#merged? — Event</a>
<li class="method"><a href="ApplicationController.html#method-i-method_missing">#method_missing — ApplicationController</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-i-method_missing">#method_missing — Gitlab::GraphCommit</a>
<li class="method"><a href="MilestonesController.html#method-i-milestone">#milestone — MilestonesController</a>
<li class="method"><a href="Snippet.html#method-i-mode">#mode — Snippet</a>
<li class="method"><a href="IssuesController.html#method-i-module_enabled">#module_enabled — IssuesController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-module_enabled">#module_enabled — MergeRequestsController</a>
<li class="method"><a href="LabelsController.html#method-i-module_enabled">#module_enabled — LabelsController</a>
<li class="method"><a href="MilestonesController.html#method-i-module_enabled">#module_enabled — MilestonesController</a>
<li class="method"><a href="MergeRequest.html#method-i-mr_and_commit_notes">#mr_and_commit_notes — MergeRequest</a>
<li class="method"><a href="MergeRequestsHelper.html#method-i-mr_css_classes">#mr_css_classes — MergeRequestsHelper</a>
<li class="method"><a href="Snippet.html#method-i-name">#name — Snippet</a>
<li class="method"><a href="TabHelper.html#method-i-nav_link">#nav_link — TabHelper</a>
<li class="method"><a href="KeysController.html#method-i-new">#new — KeysController</a>
<li class="method"><a href="TeamMembersController.html#method-i-new">#new — TeamMembersController</a>
<li class="method"><a href="SnippetsController.html#method-i-new">#new — SnippetsController</a>
<li class="method"><a href="MilestonesController.html#method-i-new">#new — MilestonesController</a>
<li class="method"><a href="ProjectsController.html#method-i-new">#new — ProjectsController</a>
<li class="method"><a href="IssuesController.html#method-i-new">#new — IssuesController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-new">#new — Admin::UsersController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-new">#new — MergeRequestsController</a>
<li class="method"><a href="DeployKeysController.html#method-i-new">#new — DeployKeysController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-new">#new — Admin::GroupsController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-new">#new — Admin::ProjectsController</a>
<li class="method"><a href="IssueCommonality.html#method-i-new-3F">#new? — IssueCommonality</a>
<li class="method"><a href="PushEvent.html#method-i-new_branch-3F">#new_branch? — PushEvent</a>
<li class="method"><a href="Event.html#method-i-new_issue-3F">#new_issue? — Event</a>
<li class="method"><a href="Notify.html#method-i-new_issue_email">#new_issue_email — Notify</a>
<li class="method"><a href="Event.html#method-i-new_merge_request-3F">#new_merge_request? — Event</a>
<li class="method"><a href="Notify.html#method-i-new_merge_request_email">#new_merge_request_email — Notify</a>
<li class="method"><a href="MergeRequestsHelper.html#method-i-new_mr_path_from_push_event">#new_mr_path_from_push_event — MergeRequestsHelper</a>
<li class="method"><a href="StaticModel.html#method-i-new_record-3F">#new_record? — StaticModel</a>
<li class="method"><a href="PushEvent.html#method-i-new_ref-3F">#new_ref? — PushEvent</a>
<li class="method"><a href="Notify.html#method-i-new_user_email">#new_user_email — Notify</a>
<li class="method"><a href="ApplicationController.html#method-i-no_cache_headers">#no_cache_headers — ApplicationController</a>
<li class="method"><a href="CommitDecorator.html#method-i-no_commit_message">#no_commit_message — CommitDecorator</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-not_allowed-21">#not_allowed! — Gitlab::APIHelpers</a>
<li class="method"><a href="ApplicationController.html#method-i-not_found-21">#not_found! — ApplicationController</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-not_found-21">#not_found! — Gitlab::APIHelpers</a>
<li class="method"><a href="Notify.html#method-i-note_commit_email">#note_commit_email — Notify</a>
<li class="method"><a href="NotesHelper.html#method-i-note_for_main_target-3F">#note_for_main_target? — NotesHelper</a>
<li class="method"><a href="Notify.html#method-i-note_issue_email">#note_issue_email — Notify</a>
<li class="method"><a href="Notify.html#method-i-note_merge_request_email">#note_merge_request_email — Notify</a>
<li class="method"><a href="Notify.html#method-i-note_wall_email">#note_wall_email — Notify</a>
<li class="method"><a href="Notify.html#method-i-note_wiki_email">#note_wiki_email — Notify</a>
<li class="method"><a href="Note.html#method-i-noteable">#noteable — Note</a>
<li class="method"><a href="NotesController.html#method-i-notes">#notes — NotesController</a>
<li class="method"><a href="Note.html#method-i-notify_only_author-3F">#notify_only_author? — Note</a>
<li class="method"><a href="NoteObserver.html#method-i-notify_team">#notify_team — NoteObserver</a>
<li class="method"><a href="ProfileHelper.html#method-i-oauth_active_class">#oauth_active_class — ProfileHelper</a>
<li class="method"><a href="PushObserver.html#method-i-observe_push">#observe_push — PushObserver</a>
<li class="method"><a href="MergeRequest.html#method-i-open-3F">#open? — MergeRequest</a>
<li class="method"><a href="Repository.html#method-i-open_branches">#open_branches — Repository</a>
<li class="method"><a href="WikisController.html#method-i-pages">#pages — WikisController</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-paginate">#paginate — Gitlab::APIHelpers</a>
<li class="method"><a href="PushEvent.html#method-i-parent_commit">#parent_commit — PushEvent</a>
<li class="method"><a href="Commit.html#method-i-parents_count">#parents_count — Commit</a>
<li class="method"><a href="Milestone.html#method-i-participants">#participants — Milestone</a>
<li class="method"><a href="ProfileController.html#method-i-password_update">#password_update — ProfileController</a>
<li class="method"><a href="Gitlab/Satellite.html#method-i-path">#path — Gitlab::Satellite</a>
<li class="method"><a href="Repository.html#method-i-path_to_repo">#path_to_repo — Repository</a>
<li class="method"><a href="GroupsController.html#method-i-people">#people — GroupsController</a>
<li class="method"><a href="Milestone.html#method-i-percent_complete">#percent_complete — Milestone</a>
<li class="method"><a href="StaticModel.html#method-i-persisted-3F">#persisted? — StaticModel</a>
<li class="method"><a href="TreeHelper.html#method-i-plain_text_readme-3F">#plain_text_readme? — TreeHelper</a>
<li class="method"><a href="PushObserver.html#method-i-post_receive_data">#post_receive_data — PushObserver</a>
<li class="method"><a href="Redcarpet/Render/GitlabHTML.html#method-i-postprocess">#postprocess — Redcarpet::Render::GitlabHTML</a>
<li class="method"><a href="Commit.html#method-i-prev_commit">#prev_commit — Commit</a>
<li class="method"><a href="Commit.html#method-i-prev_commit_id">#prev_commit_id — Commit</a>
<li class="method"><a href="NotesController.html#method-i-preview">#preview — NotesController</a>
<li class="method"><a href="StaticModel/ClassMethods.html#method-i-primary_key">#primary_key — StaticModel::ClassMethods</a>
<li class="method"><a href="Project.html#method-i-private-3F">#private? — Project</a>
<li class="method"><a href="MergeRequest.html#method-i-probably_merged-3F">#probably_merged? — MergeRequest</a>
<li class="method"><a href="ApplicationController.html#method-i-project">#project — ApplicationController</a>
<li class="method"><a href="Notify.html#method-i-project_access_granted_email">#project_access_granted_email — Notify</a>
<li class="method"><a href="UsersProject.html#method-i-project_access_human">#project_access_human — UsersProject</a>
<li class="method"><a href="Project.html#method-i-project_id">#project_id — Project</a>
<li class="method"><a href="GroupsController.html#method-i-project_ids">#project_ids — GroupsController</a>
<li class="method"><a href="Account.html#method-i-project_ids">#project_ids — Account</a>
<li class="method"><a href="IssuesHelper.html#method-i-project_issues_filter_path">#project_issues_filter_path — IssuesHelper</a>
<li class="method"><a href="ApplicationHelper.html#method-i-project_last_activity">#project_last_activity — ApplicationHelper</a>
<li class="method"><a href="Event.html#method-i-project_name">#project_name — Event</a>
<li class="method"><a href="TabHelper.html#method-i-project_tab_class">#project_tab_class — TabHelper</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-project_update">#project_update — Admin::GroupsController</a>
<li class="method"><a href="GroupsController.html#method-i-projects">#projects — GroupsController</a>
<li class="method"><a href="Key.html#method-i-projects">#projects — Key</a>
<li class="method"><a href="Account.html#method-i-projects_limit_percent">#projects_limit_percent — Account</a>
<li class="method"><a href="Account.html#method-i-projects_with_events">#projects_with_events — Account</a>
<li class="method"><a href="Repository.html#method-i-protected_branch-3F">#protected_branch? — Repository</a>
<li class="method"><a href="Project.html#method-i-public-3F">#public? — Project</a>
<li class="method"><a href="Event.html#method-i-push-3F">#push? — Event</a>
<li class="method"><a href="PushEvent.html#method-i-push_action_name">#push_action_name — PushEvent</a>
<li class="method"><a href="PushEvent.html#method-i-push_with_commits-3F">#push_with_commits? — PushEvent</a>
<li class="method"><a href="SnippetsController.html#method-i-raw">#raw — SnippetsController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-raw">#raw — MergeRequestsController</a>
<li class="method"><a href="TreeDecorator.html#method-i-readme">#readme — TreeDecorator</a>
<li class="method"><a href="Notify.html#method-i-reassigned_issue_email">#reassigned_issue_email — Notify</a>
<li class="method"><a href="Notify.html#method-i-reassigned_merge_request_email">#reassigned_merge_request_email — Notify</a>
<li class="method"><a href="Account.html#method-i-recent_push">#recent_push — Account</a>
<li class="method"><a href="RefsController.html#method-i-ref">#ref — RefsController</a>
<li class="method"><a href="PushEvent.html#method-i-ref_name">#ref_name — PushEvent</a>
<li class="method"><a href="Repository.html#method-i-ref_names">#ref_names — Repository</a>
<li class="method"><a href="PushEvent.html#method-i-ref_type">#ref_type — PushEvent</a>
<li class="method"><a href="ApplicationController.html#method-i-reject_blocked-21">#reject_blocked! — ApplicationController</a>
<li class="method"><a href="MergeRequest.html#method-i-reload_code">#reload_code — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-reloaded_commits">#reloaded_commits — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-reloaded_diffs">#reloaded_diffs — MergeRequest</a>
<li class="method"><a href="ProjectsHelper.html#method-i-remove_from_team_message">#remove_from_team_message — ProjectsHelper</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-remove_key">#remove_key — Gitlab::Gitolite</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-remove_project">#remove_project — Admin::GroupsController</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-remove_repository">#remove_repository — Gitlab::Gitolite</a>
<li class="method"><a href="ApplicationController.html#method-i-render_404">#render_404 — ApplicationController</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-render_api_error-21">#render_api_error! — Gitlab::APIHelpers</a>
<li class="method"><a href="TreeHelper.html#method-i-render_tree">#render_tree — TreeHelper</a>
<li class="method"><a href="Event.html#method-i-reopened-3F">#reopened? — Event</a>
<li class="method"><a href="Repository.html#method-i-repo">#repo — Repository</a>
<li class="method"><a href="UsersProject.html#method-i-repo_access_human">#repo_access_human — UsersProject</a>
<li class="method"><a href="Repository.html#method-i-repo_exists-3F">#repo_exists? — Repository</a>
<li class="method"><a href="Project.html#method-i-repo_name">#repo_name — Project</a>
<li class="method"><a href="Authority.html#method-i-report_access_for-3F">#report_access_for? — Authority</a>
<li class="method"><a href="Authority.html#method-i-repository_masters">#repository_masters — Authority</a>
<li class="method"><a href="Authority.html#method-i-repository_readers">#repository_readers — Authority</a>
<li class="method"><a href="Authority.html#method-i-repository_writers">#repository_writers — Authority</a>
<li class="method"><a href="ApplicationHelper.html#method-i-request_protocol">#request_protocol — ApplicationHelper</a>
<li class="method"><a href="ApplicationController.html#method-i-require_non_empty_project">#require_non_empty_project — ApplicationController</a>
<li class="method"><a href="Account.html#method-i-require_ssh_key-3F">#require_ssh_key? — Account</a>
<li class="method"><a href="Authority.html#method-i-reset_access">#reset_access — Authority</a>
<li class="method"><a href="ProfileController.html#method-i-reset_private_token">#reset_private_token — ProfileController</a>
<li class="method"><a href="SearchContext.html#method-i-result">#result — SearchContext</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-rm_key">#rm_key — Gitlab::GitoliteConfig</a>
<li class="method"><a href="PushEvent.html#method-i-rm_ref-3F">#rm_ref? — PushEvent</a>
<li class="method"><a href="UsersProject.html#method-i-role_access">#role_access — UsersProject</a>
<li class="method"><a href="Repository.html#method-i-root_ref">#root_ref — Repository</a>
<li class="method"><a href="Repository.html#method-i-root_ref-3F">#root_ref? — Repository</a>
<li class="method"><a href="Commit.html#method-i-safe_message">#safe_message — Commit</a>
<li class="method"><a href="Repository.html#method-i-satellite">#satellite — Repository</a>
<li class="method"><a href="Project.html#method-i-saved-3F">#saved? — Project</a>
<li class="method"><a href="GroupsController.html#method-i-search">#search — GroupsController</a>
<li class="method"><a href="IssueCommonality/ClassMethods.html#method-i-search">#search — IssueCommonality::ClassMethods</a>
<li class="method"><a href="IssuesController.html#method-i-search">#search — IssuesController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-search_autocomplete_source">#search_autocomplete_source — ApplicationHelper</a>
<li class="method"><a href="NoteObserver.html#method-i-send_notify_mails">#send_notify_mails — NoteObserver</a>
<li class="method"><a href="MergeRequestObserver.html#method-i-send_reassigned_email">#send_reassigned_email — MergeRequestObserver</a>
<li class="method"><a href="IssueObserver.html#method-i-send_reassigned_email">#send_reassigned_email — IssueObserver</a>
<li class="method"><a href="ApplicationController.html#method-i-set_current_user_for_observers">#set_current_user_for_observers — ApplicationController</a>
<li class="method"><a href="Key.html#method-i-set_identifier">#set_identifier — Key</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-set_key">#set_key — Gitlab::Gitolite</a>
<li class="method"><a href="Wiki.html#method-i-set_slug">#set_slug — Wiki</a>
<li class="method"><a href="Commit.html#method-i-short_id">#short_id — Commit</a>
<li class="method"><a href="RepositoriesController.html#method-i-show">#show — RepositoriesController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-show">#show — Admin::UsersController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-show">#show — Admin::GroupsController</a>
<li class="method"><a href="GroupsController.html#method-i-show">#show — GroupsController</a>
<li class="method"><a href="SearchController.html#method-i-show">#show — SearchController</a>
<li class="method"><a href="SnippetsController.html#method-i-show">#show — SnippetsController</a>
<li class="method"><a href="Admin/ResqueController.html#method-i-show">#show — Admin::ResqueController</a>
<li class="method"><a href="MilestonesController.html#method-i-show">#show — MilestonesController</a>
<li class="method"><a href="WikisController.html#method-i-show">#show — WikisController</a>
<li class="method"><a href="ProjectsController.html#method-i-show">#show — ProjectsController</a>
<li class="method"><a href="IssuesController.html#method-i-show">#show — IssuesController</a>
<li class="method"><a href="BlobController.html#method-i-show">#show — BlobController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-show">#show — MergeRequestsController</a>
<li class="method"><a href="KeysController.html#method-i-show">#show — KeysController</a>
<li class="method"><a href="CommitController.html#method-i-show">#show — CommitController</a>
<li class="method"><a href="TeamMembersController.html#method-i-show">#show — TeamMembersController</a>
<li class="method"><a href="ProfileController.html#method-i-show">#show — ProfileController</a>
<li class="method"><a href="TreeController.html#method-i-show">#show — TreeController</a>
<li class="method"><a href="CompareController.html#method-i-show">#show — CompareController</a>
<li class="method"><a href="CommitsController.html#method-i-show">#show — CommitsController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-show">#show — Admin::ProjectsController</a>
<li class="method"><a href="BlameController.html#method-i-show">#show — BlameController</a>
<li class="method"><a href="DeployKeysController.html#method-i-show">#show — DeployKeysController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-show_last_push_widget-3F">#show_last_push_widget? — ApplicationHelper</a>
<li class="method"><a href="Snippet.html#method-i-size">#size — Snippet</a>
<li class="method"><a href="SnippetsController.html#method-i-snippet">#snippet — SnippetsController</a>
<li class="method"><a href="IssuesController.html#method-i-sort">#sort — IssuesController</a>
<li class="method"><a href="Repository.html#method-i-ssh_url_to_repo">#ssh_url_to_repo — Repository</a>
<li class="method"><a href="AttachmentUploader.html#method-i-store_dir">#store_dir — AttachmentUploader</a>
<li class="method"><a href="Key.html#method-i-strip_white_space">#strip_white_space — Key</a>
<li class="method"><a href="RefsController.html#method-i-switch">#switch — RefsController</a>
<li class="method"><a href="PushEvent.html#method-i-tag-3F">#tag? — PushEvent</a>
<li class="method"><a href="TagsHelper.html#method-i-tag_list">#tag_list — TagsHelper</a>
<li class="method"><a href="PushEvent.html#method-i-tag_name">#tag_name — PushEvent</a>
<li class="method"><a href="Repository.html#method-i-tag_names">#tag_names — Repository</a>
<li class="method"><a href="TagsHelper.html#method-i-tag_path">#tag_path — TagsHelper</a>
<li class="method"><a href="RepositoriesController.html#method-i-tags">#tags — RepositoriesController</a>
<li class="method"><a href="Repository.html#method-i-tags">#tags — Repository</a>
<li class="method"><a href="Event.html#method-i-target_title">#target_title — Event</a>
<li class="method"><a href="Team.html#method-i-team_member_by_id">#team_member_by_id — Team</a>
<li class="method"><a href="Team.html#method-i-team_member_by_name_or_email">#team_member_by_name_or_email — Team</a>
<li class="method"><a href="Admin/UsersController.html#method-i-team_update">#team_update — Admin::UsersController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-team_update">#team_update — Admin::ProjectsController</a>
<li class="method"><a href="NoteObserver.html#method-i-team_without_note_author">#team_without_note_author — NoteObserver</a>
<li class="method"><a href="Admin/HooksController.html#method-i-test">#test — Admin::HooksController</a>
<li class="method"><a href="HooksController.html#method-i-test">#test — HooksController</a>
<li class="method"><a href="CommitDecorator.html#method-i-title">#title — CommitDecorator</a>
<li class="method"><a href="Gitlab/GraphCommit.html#method-i-to_graph_hash">#to_graph_hash — Gitlab::GraphCommit</a>
<li class="method"><a href="Group.html#method-i-to_param">#to_param — Group</a>
<li class="method"><a href="Project.html#method-i-to_param">#to_param — Project</a>
<li class="method"><a href="Wiki.html#method-i-to_param">#to_param — Wiki</a>
<li class="method"><a href="StaticModel.html#method-i-to_param">#to_param — StaticModel</a>
<li class="method"><a href="MergeRequest.html#method-i-to_raw">#to_raw — MergeRequest</a>
<li class="method"><a href="IssueCommonality.html#method-i-today-3F">#today? — IssueCommonality</a>
<li class="method"><a href="ProfileController.html#method-i-token">#token — ProfileController</a>
<li class="method"><a href="Repository.html#method-i-tree">#tree — Repository</a>
<li class="method"><a href="TreeHelper.html#method-i-tree_hex_class">#tree_hex_class — TreeHelper</a>
<li class="method"><a href="TreeHelper.html#method-i-tree_icon">#tree_icon — TreeHelper</a>
<li class="method"><a href="TreeHelper.html#method-i-tree_join">#tree_join — TreeHelper</a>
<li class="method"><a href="PushObserver.html#method-i-trigger_post_receive">#trigger_post_receive — PushObserver</a>
<li class="method"><a href="IssuesHelper.html#method-i-unassigned_filter">#unassigned_filter — IssuesHelper</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-unauthorized-21">#unauthorized! — Gitlab::APIHelpers</a>
<li class="method"><a href="Admin/UsersController.html#method-i-unblock">#unblock — Admin::UsersController</a>
<li class="method"><a href="MergeRequest.html#method-i-unchecked-3F">#unchecked? — MergeRequest</a>
<li class="method"><a href="Key.html#method-i-unique_key">#unique_key — Key</a>
<li class="method"><a href="MergeRequest.html#method-i-unmerged_commits">#unmerged_commits — MergeRequest</a>
<li class="method"><a href="MergeRequest.html#method-i-unmerged_diffs">#unmerged_diffs — MergeRequest</a>
<li class="method"><a href="TreeDecorator.html#method-i-up_dir-3F">#up_dir? — TreeDecorator</a>
<li class="method"><a href="TreeDecorator.html#method-i-up_dir_path">#up_dir_path — TreeDecorator</a>
<li class="method"><a href="ProjectsController.html#method-i-update">#update — ProjectsController</a>
<li class="method"><a href="ProfileController.html#method-i-update">#update — ProfileController</a>
<li class="method"><a href="Admin/ProjectsController.html#method-i-update">#update — Admin::ProjectsController</a>
<li class="method"><a href="TreeController.html#method-i-update">#update — TreeController</a>
<li class="method"><a href="Admin/GroupsController.html#method-i-update">#update — Admin::GroupsController</a>
<li class="method"><a href="IssuesController.html#method-i-update">#update — IssuesController</a>
<li class="method"><a href="Admin/UsersController.html#method-i-update">#update — Admin::UsersController</a>
<li class="method"><a href="Gitlab/FileEditor.html#method-i-update">#update — Gitlab::FileEditor</a>
<li class="method"><a href="MilestonesController.html#method-i-update">#update — MilestonesController</a>
<li class="method"><a href="Admin/TeamMembersController.html#method-i-update">#update — Admin::TeamMembersController</a>
<li class="method"><a href="TeamMembersController.html#method-i-update">#update — TeamMembersController</a>
<li class="method"><a href="MergeRequestsController.html#method-i-update">#update — MergeRequestsController</a>
<li class="method"><a href="SnippetsController.html#method-i-update">#update — SnippetsController</a>
<li class="method"><a href="PushObserver.html#method-i-update_merge_requests">#update_merge_requests — PushObserver</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-update_project">#update_project — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-update_project-21">#update_project! — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-update_project_config">#update_project_config — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-update_projects">#update_projects — Gitlab::GitoliteConfig</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-update_repository">#update_repository — Gitlab::Gitolite</a>
<li class="method"><a href="ProtectedBranch.html#method-i-update_repository">#update_repository — ProtectedBranch</a>
<li class="method"><a href="Repository.html#method-i-update_repository">#update_repository — Repository</a>
<li class="method"><a href="UsersProject.html#method-i-update_repository">#update_repository — UsersProject</a>
<li class="method"><a href="Team.html#method-i-update_users_ids_to_role">#update_users_ids_to_role — Team</a>
<li class="method"><a href="Note.html#method-i-upvote-3F">#upvote? — Note</a>
<li class="method"><a href="Votes.html#method-i-upvotes">#upvotes — Votes</a>
<li class="method"><a href="Votes.html#method-i-upvotes_in_percent">#upvotes_in_percent — Votes</a>
<li class="method"><a href="Repository.html#method-i-url_to_repo">#url_to_repo — Repository</a>
<li class="method"><a href="Gitlab/Gitolite.html#method-i-url_to_repo">#url_to_repo — Gitlab::Gitolite</a>
<li class="method"><a href="Gitlab/APIHelpers.html#method-i-user_project">#user_project — Gitlab::APIHelpers</a>
<li class="method"><a href="Group.html#method-i-users">#users — Group</a>
<li class="method"><a href="Gitlab/Encode.html#method-i-utf8">#utf8 — Gitlab::Encode</a>
<li class="method"><a href="Grack/Auth.html#method-i-valid-3F">#valid? — Grack::Auth</a>
<li class="method"><a href="MergeRequest.html#method-i-valid_diffs-3F">#valid_diffs? — MergeRequest</a>
<li class="method"><a href="PushEvent.html#method-i-valid_push-3F">#valid_push? — PushEvent</a>
<li class="method"><a href="Repository.html#method-i-valid_repo-3F">#valid_repo? — Repository</a>
<li class="method"><a href="MergeRequest.html#method-i-validate_branches">#validate_branches — MergeRequest</a>
<li class="method"><a href="FileSizeValidator.html#method-i-validate_each">#validate_each — FileSizeValidator</a>
<li class="method"><a href="Grack/Auth.html#method-i-validate_get_request">#validate_get_request — Grack::Auth</a>
<li class="method"><a href="Grack/Auth.html#method-i-validate_post_request">#validate_post_request — Grack::Auth</a>
<li class="method"><a href="MergeRequestsController.html#method-i-validates_merge_request">#validates_merge_request — MergeRequestsController</a>
<li class="method"><a href="Votes.html#method-i-votes_count">#votes_count — Votes</a>
<li class="method"><a href="ProjectsController.html#method-i-wall">#wall — ProjectsController</a>
<li class="method"><a href="ApplicationHelper.html#method-i-web_app_url">#web_app_url — ApplicationHelper</a>
<li class="method"><a href="Project.html#method-i-web_url">#web_url — Project</a>
<li class="method"><a href="Project.html#method-i-wiki_notes">#wiki_notes — Project</a>
<li class="method"><a href="Gitlab/GitoliteConfig.html#method-i-write_key">#write_key — Gitlab::GitoliteConfig</a>
</ul>
<footer id="validator-badges">
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
</footer>