Skip to content

Commit 55d5384

Browse files
committed
fix: linter
1 parent 3bc2456 commit 55d5384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/biome/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { type CAS, OAuth2 } from "~cas";
66
export * from "./models";
77

88
export class Biome {
9-
public static readonly oauth2 = new OAuth2("biome-prod", "https://biome.unilim.fr/authentication/callback", ["openid", "profile", "email"]);
9+
public static readonly oauth2: OAuth2 = new OAuth2("biome-prod", "https://biome.unilim.fr/authentication/callback", ["openid", "profile", "email"]);
1010
private static readonly HOST = "https://apis.unilim.fr";
1111

1212
public get roles(): Array<string> {

src/iut/signatures/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class Signatures {
66
public static readonly COOKIE = "session";
77

88
public static readonly HOST = "https://signatures.unilim.fr";
9-
public static readonly oauth2 = new OAuth2("signatures", "https://signatures.unilim.fr/callback", ["openid", "profile"]);
9+
public static readonly oauth2: OAuth2 = new OAuth2("signatures", "https://signatures.unilim.fr/callback", ["openid", "profile"]);
1010

1111
public constructor(
1212
public readonly session: string

0 commit comments

Comments
 (0)