🎨 format oauth provider list

fixing the list format on oauth login.
This commit is contained in:
2025-08-24 14:20:10 +07:00
parent a5e3af9367
commit eaf6a4de8e
4 changed files with 38 additions and 45 deletions

View File

@ -0,0 +1,8 @@
interface oauthProviders {
name: string;
icon: string;
req_endpoint: string;
client_id: string | undefined;
client_secret: string | undefined;
client_callback: string;
}