🚩 complete oauth process
Complete the OAuth process by adding a redirect when pressing the login button with the provider. When the button is pressed, the system will request the authentication URL from the backend, then the user will be redirected.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
interface oauthProviders {
|
||||
export interface OauthProviders {
|
||||
name: string;
|
||||
icon: string;
|
||||
req_endpoint: string;
|
||||
|
||||
5
features/auth/types/responseRequestOauthUrl.ts
Normal file
5
features/auth/types/responseRequestOauthUrl.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export interface ResponseRequestOauthUrl {
|
||||
data: string;
|
||||
message: string;
|
||||
status: string;
|
||||
}
|
||||
Reference in New Issue
Block a user