forked from ShunL12324/PixelmonSync2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put perm nodes & strings to a new class.
- Loading branch information
1 parent
6877299
commit 2113bcb
Showing
4 changed files
with
39 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
rootProject.name = 'PixelmonSync2' | ||
rootProject.name = 'PixelmonSync' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/com/github/ericliu/pixelmonsync/pref/Reference.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.github.ericliu.pixelmonsync.pref; | ||
|
||
public class Reference { | ||
|
||
public static final String PLUGIN_ID = "pixelmonsync"; | ||
public static final String PLUGIN_NAME = "Pixelmonsync"; | ||
|
||
public static final String USER_NODE = "user"; | ||
public static final String ADMIN_NODE = "admin"; | ||
|
||
public static final String PERM_NODE_LOAD = PLUGIN_ID + "." + ADMIN_NODE + "." + "load"; | ||
public static final String PERM_NODE_SAVE = PLUGIN_ID + "." + ADMIN_NODE + "." + "save"; | ||
public static final String PERM_NODE_SERVER = PLUGIN_ID + "." + ADMIN_NODE + "." + "server"; | ||
public static final String PERM_NODE_MIGRATE = PLUGIN_ID + "." + ADMIN_NODE + "." + "migrate"; | ||
|
||
|
||
} |