mirror of https://github.com/abpframework/abp
Merge pull request #15788 from abpframework/issue/15713_dd_grant_function_on_AuthService
add grant function on AuthServicepull/15820/head
commit
1ae688c019
@ -0,0 +1,10 @@
|
||||
export interface AbpAuthResponse {
|
||||
access_token: string;
|
||||
id_token: string;
|
||||
token_type: string;
|
||||
expires_in: number;
|
||||
refresh_token: string;
|
||||
scope: string;
|
||||
state?: string;
|
||||
tenant_domain?: string;
|
||||
}
|
||||
@ -1,3 +1,4 @@
|
||||
export * from './ng-model.component';
|
||||
export * from './auth.guard';
|
||||
export * from './auth.service';
|
||||
export * from './auth-response.model';
|
||||
|
||||
Loading…
Reference in new issue