We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1008612 commit 0ff8919Copy full SHA for 0ff8919
1 file changed
src/main/java/com/junichi11/netbeans/modules/github/issues/query/GitHubDefaultQueries.java
@@ -54,8 +54,19 @@ public final class GitHubDefaultQueries {
54
55
public enum Type {
56
57
- ASSIGNED_TO_ME,
58
- CREATED_BY_ME,
+ // must not change option key name
+ ASSIGNED_TO_ME("query.assigned.to.me"), // NOI18N
59
+ CREATED_BY_ME("query.created.by.me"); // NOI18N
60
+ private final String optionKey;
61
+
62
+ private Type(String optionKey) {
63
+ this.optionKey = optionKey;
64
+ }
65
66
+ public String getOptionKey() {
67
+ return optionKey;
68
69
70
}
71
private static final Logger LOGGER = Logger.getLogger(GitHubDefaultQueries.class.getName());
72
0 commit comments