Skip to content

Commit

Permalink
Fix compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbachorski committed Jun 14, 2024
1 parent 7279384 commit a62b77e
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/(dashboard)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
import { type ReactNode } from 'react'
import { authenticatedOnly } from '../../modules/firebase/guards'

Expand Down
7 changes: 7 additions & 0 deletions modules/firebase/guards.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
import { redirect } from 'next/navigation'
import { getServerApp } from './serverApp'
import { routes } from '../routes'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
import { type Auth, signInWithEmailAndPassword } from 'firebase/auth'
import { useTranslations } from 'next-intl'
import { z } from 'zod'
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
export * from './EmailPasswordForm'
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
'use client'
import { type Auth, type AuthProvider, signInWithPopup } from 'firebase/auth'
import { useTranslations } from 'next-intl'
Expand Down
7 changes: 7 additions & 0 deletions packages/design-system/src/modules/auth/SignInForm/index.tsx
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
export * from './SignInForm'

0 comments on commit a62b77e

Please sign in to comment.