-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Migrate credential stuffing to
app
INTER-911 (#158)
* chore: move credential stuffing client to `app` * chore: move credential stuffing server to `app`
- Loading branch information
Showing
8 changed files
with
43 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { USE_CASES } from '../../../client/components/common/content'; | ||
import { generateUseCaseMetadata } from '../../../client/components/common/seo'; | ||
import { CredentialStuffing } from '.././CredentialStuffing'; | ||
|
||
export const metadata = generateUseCaseMetadata(USE_CASES.credentialStuffing); | ||
|
||
export default function CredentialStuffingPage() { | ||
return <CredentialStuffing />; | ||
} |
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { USE_CASES } from '../../client/components/common/content'; | ||
import { generateUseCaseMetadata } from '../../client/components/common/seo'; | ||
import { CredentialStuffing } from './CredentialStuffing'; | ||
|
||
export const metadata = generateUseCaseMetadata(USE_CASES.credentialStuffing); | ||
|
||
export default function CredentialStuffingPage() { | ||
return <CredentialStuffing />; | ||
} |
This file was deleted.
Oops, something went wrong.