Исправлено имя метода для единообрания

This commit is contained in:
Pavel Gnedov 2022-06-18 17:53:34 +07:00
parent bf3b5d2b5f
commit 850a26f093

View file

@ -11,7 +11,7 @@ export class Users {
private static logger = new Logger(Users.name);
private static usersDb = null;
static async getUsers(): Promise<nano.DocumentScope<RedmineTypes.User>> {
static async getDatasource(): Promise<nano.DocumentScope<RedmineTypes.User>> {
if (Users.usersDb) {
return Users.usersDb;
}