Skip to content

Commit

Permalink
make api token optional (not used currently)
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Nov 20, 2023
1 parent c00831b commit f12838e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/interfaces/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ export interface Tokens {
prefix: string; // for shorthand prefix commands
token: string;
apiUrl: string;
apiPassword: string; // for api authentification
apiPassword?: string; // for api authentication
errorChannel: string; // error channel where errors are sent
developers: string[];
gitToken: string;
developers: string[]; // people authorized to use dev-only commands and features
gitToken: string; // for feedback system
dev: boolean; // if true: instantiate command only it the bot dev discord server
verbose: boolean; // show extra logs for debugging
maintenance: boolean; // if true: disallow normal bot functions and update status
Expand Down

0 comments on commit f12838e

Please sign in to comment.