mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
388 B
TypeScript
10 lines
388 B
TypeScript
import Bluebird = require("bluebird");
|
|
|
|
import { GroupsAndEmails } from "./GroupsAndEmails";
|
|
|
|
export interface IUsersDatabase {
|
|
checkUserPassword(username: string, password: string): Bluebird<GroupsAndEmails>;
|
|
getEmails(username: string): Bluebird<string[]>;
|
|
getGroups(username: string): Bluebird<string[]>;
|
|
updatePassword(username: string, newPassword: string): Bluebird<void>;
|
|
} |