mirror of
https://github.com/e1fueg0/intellij-gitea-plugin.git
synced 2024-10-27 20:34:04 +00:00
- fixed default url
This commit is contained in:
parent
1db06a0ad3
commit
19f52092b2
@ -12,7 +12,7 @@ public class Consts {
|
|||||||
public static final String UNSPEC_PROJ_ID = "--";
|
public static final String UNSPEC_PROJ_ID = "--";
|
||||||
|
|
||||||
public interface Url {
|
public interface Url {
|
||||||
String DEFAULT = "https://git2.elfuego.biz:444";
|
String DEFAULT = "https://try.gitea.io";
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface EndPoint {
|
public interface EndPoint {
|
||||||
@ -25,24 +25,24 @@ public class Consts {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public enum States {
|
public enum States {
|
||||||
OPEN, CLOSED;
|
OPEN, CLOSED
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface TaskFields {
|
public interface TaskFields {
|
||||||
static final String ID = "id";
|
String ID = "id";
|
||||||
static final String TITLE = "title";
|
String TITLE = "title";
|
||||||
static final String DESCRIPTION = "body";
|
String DESCRIPTION = "body";
|
||||||
static final String CREATEDAT = "created_at";
|
String CREATEDAT = "created_at";
|
||||||
static final String UPDATEDAT = "updated_at";
|
String UPDATEDAT = "updated_at";
|
||||||
static final String STATE = "state";
|
String STATE = "state";
|
||||||
static final String ASSIGNEE = "assignee";
|
String ASSIGNEE = "assignee";
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface CommentFields {
|
public interface CommentFields {
|
||||||
static final String DATE = "updated_at";
|
String DATE = "updated_at";
|
||||||
static final String TEXT = "body";
|
String TEXT = "body";
|
||||||
static final String USER = "user";
|
String USER = "user";
|
||||||
static final String FULLNAME = "full_name";
|
String FULLNAME = "full_name";
|
||||||
static final String USERNAME = "username";
|
String USERNAME = "username";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user