mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
|
import User from '../../types/user';
|
||
|
|
||
|
export interface IChangeRequestAccessReadModel {
|
||
|
canBypassChangeRequest(
|
||
|
project: string,
|
||
|
environment: string,
|
||
|
user?: User,
|
||
|
): Promise<boolean>;
|
||
|
isChangeRequestsEnabled(
|
||
|
project: string,
|
||
|
environment: string,
|
||
|
): Promise<boolean>;
|
||
|
}
|