-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Signup page leftovers (#2849)"
This reverts commit 0f7a4d2.
- Loading branch information
1 parent
27e0342
commit fb5e52b
Showing
18 changed files
with
175 additions
and
229 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
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
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
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
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
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
29 changes: 4 additions & 25 deletions
29
services/workflows-service/src/common/guards/token-guard/token-auth.module.ts
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 |
---|---|---|
@@ -1,31 +1,10 @@ | ||
import { Module } from '@nestjs/common'; | ||
|
||
import { CustomerService } from '@/customer/customer.service'; | ||
import { ApiKeyService } from '@/customer/api-key/api-key.service'; | ||
import { CustomerRepository } from '@/customer/customer.repository'; | ||
import { ProjectScopeService } from '@/project/project-scope.service'; | ||
import { ApiKeyRepository } from '@/customer/api-key/api-key.repository'; | ||
import { UiDefinitionService } from '@/ui-definition/ui-definition.service'; | ||
import { TokenAuthGuard } from '@/common/guards/token-guard/token-auth.guard'; | ||
import { UiDefinitionRepository } from '@/ui-definition/ui-definition.repository'; | ||
import { WorkflowTokenService } from '@/auth/workflow-token/workflow-token.service'; | ||
import { WorkflowTokenRepository } from '@/auth/workflow-token/workflow-token.repository'; | ||
import { WorkflowRuntimeDataRepository } from '@/workflow/workflow-runtime-data.repository'; | ||
import { WorkflowTokenService } from '@/auth/workflow-token/workflow-token.service'; | ||
import { TokenAuthGuard } from '@/common/guards/token-guard/token-auth.guard'; | ||
import { Module } from '@nestjs/common'; | ||
|
||
@Module({ | ||
providers: [ | ||
WorkflowTokenRepository, | ||
WorkflowTokenService, | ||
TokenAuthGuard, | ||
CustomerService, | ||
CustomerRepository, | ||
UiDefinitionService, | ||
ProjectScopeService, | ||
UiDefinitionRepository, | ||
WorkflowRuntimeDataRepository, | ||
ApiKeyService, | ||
ApiKeyRepository, | ||
], | ||
providers: [WorkflowTokenRepository, WorkflowTokenService, TokenAuthGuard], | ||
exports: [WorkflowTokenRepository, WorkflowTokenService, TokenAuthGuard], | ||
}) | ||
export class TokenAuthModule {} |
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
Oops, something went wrong.