Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spsh 128 #79

Merged
merged 3 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/config.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"SESSION_SECRET": "SessionSecretForDevelopment",
"SESSION_TTL_MS": 3600000,
"BACKEND_ADDRESS": "http://127.0.0.1:9090",
"OIDC_CALLBACK_URL": "http://localhost:8099/api/frontend/login",
"DEFAULT_LOGIN_REDIRECT": "http://localhost:8099/",
"LOGOUT_REDIRECT": "http://localhost:8099/"
"OIDC_CALLBACK_URL": "https://localhost:8099/api/frontend/login",
"DEFAULT_LOGIN_REDIRECT": "https://localhost:8099/",
"LOGOUT_REDIRECT": "https://localhost:8099/"
},
"DB": {
"CLIENT_URL": "postgres://admin:[email protected]:5432",
Expand Down
4 changes: 2 additions & 2 deletions dev-realm-spsh.json
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@
"secret": "YDp6fYkbUcj4ZkyAOnbAHGQ9O72htc5M",
"redirectUris": [
"http://localhost:9091/*",
"http://localhost:8099/*",
"https://localhost:8099/*",
"/*"
],
"webOrigins": [
Expand Down Expand Up @@ -2364,4 +2364,4 @@
"clientPolicies": {
"policies": []
}
}
}
2 changes: 1 addition & 1 deletion src/modules/rolle/api/provider.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ApiTags, ApiUnauthorizedResponse } from '@nestjs/swagger';
import { AuthenticatedUser } from 'nest-keycloak-connect';
import { GetServiceProviderInfoDo } from '../domain/get-service-provider-info.do.js';

@ApiTags('rolle')
@ApiTags('provider')
@Controller({ path: 'provider' })
export class ProviderController {
public constructor(private readonly rolleService: RolleService) {}
Expand Down
Loading