diff options
author | James Moger <james.moger@gitblit.com> | 2012-01-04 08:42:54 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-01-04 08:42:54 -0500 |
commit | df162cdbdfeb5fbf5500546c9783e1685be6980f (patch) | |
tree | bc3df2a3803387023a967ca4fe27767c6c9c84b6 /src/com/gitblit/Constants.java | |
parent | 0ea17fc294c1bb55a90037a150f4624992c0e9fb (diff) | |
download | gitblit-df162cdbdfeb5fbf5500546c9783e1685be6980f.tar.gz gitblit-df162cdbdfeb5fbf5500546c9783e1685be6980f.zip |
Federation pull_scripts request. Documentation.
Diffstat (limited to 'src/com/gitblit/Constants.java')
-rw-r--r-- | src/com/gitblit/Constants.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index 8171d667..602a6aef 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -117,7 +117,7 @@ public class Constants { * Enumeration representing the types of federation requests.
*/
public static enum FederationRequest {
- POKE, PROPOSAL, PULL_REPOSITORIES, PULL_USERS, PULL_TEAMS, PULL_SETTINGS, STATUS;
+ POKE, PROPOSAL, PULL_REPOSITORIES, PULL_USERS, PULL_TEAMS, PULL_SETTINGS, PULL_SCRIPTS, STATUS;
public static FederationRequest fromName(String name) {
for (FederationRequest type : values()) {
|