Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Zitrone44 committed Nov 17, 2023
2 parents b16ca5b + d2eb7d4 commit 7abac84
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/fbs-core/web/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ import { I18NextModule } from "angular-i18next";
import { I18N_PROVIDERS } from "./util/i18n";
import { LanguageMenuComponent } from "./page-components/sidebar/language-menu/language-menu.component";

import { registerLocaleData } from "@angular/common";
import localeDe from "@angular/common/locales/de";
import localeDeExtra from "@angular/common/locales/extra/de";

@Injectable()
export class ApiURIHttpInterceptor implements HttpInterceptor {
constructor(private authService: AuthService) {}
Expand Down Expand Up @@ -268,3 +272,5 @@ export class AppModule {}
export function tokenGetter() {
return localStorage.getItem("token");
}

registerLocaleData(localeDe, localeDeExtra);

0 comments on commit 7abac84

Please sign in to comment.