This repository has been archived on 2020-06-04. You can view files and clone it, but cannot push or open issues or pull requests.
GitNex/app/src/main/java/org/mian/gitnex/helpers/StaticGlobalVariables.java
M M Arif 7336f05756
All checks were successful
continuous-integration/drone/pr Build is passing
delete all drafts, added messages where needed
2020-04-24 17:43:33 +05:00

32 lines
796 B
Java

package org.mian.gitnex.helpers;
/**
* Author M M Arif
*/
public interface StaticGlobalVariables {
// generic values
int resultLimitNewGiteaInstances = 25; // Gitea 1.12 and above
int resultLimitOldGiteaInstances = 10; // Gitea 1.11 and below
// issues variables
int issuesPageInit = 1;
String issuesRequestType = "issues";
// pull request
int prPageInit = 1;
// drafts
String draftTypeComment = "comment";
String draftTypeIssue = "issue";
// TAGS
String tagPullRequestsList = "PullRequestsListFragment";
String tagIssuesList = "IssuesListFragment";
String draftsRepository = "DraftsRepository";
String repositoriesRepository = "RepositoriesRepository";
String replyToIssueActivity = "ReplyToIssueActivity";
String tagDraftsBottomSheet = "BottomSheetDraftsFragment";
}