weihsth
weihsth
Hi, on iOS Safari alway tells me, that "com.example.app:/" is not a valid url.. so redirect is not working. For Android it works like a charm with keycloak. Any ideas?
For all having problems with iOS... I solved it! This docu: https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app tells us to configure this: Identifier: com.example.myphotoapp URL Schemes: myphotoapp Role: Viewer But it needs to be: Identifier:...
Ohh sorry, you're right.. should have searched for "index"... I'll try my best to get the import path of prisma client done an do a PR =)
Hi, instead of using the APP_INITIALIZER for the entire app, you should use Guards (for example CanLoad on a lazy loaded module) to add the keyCloak logic. There is also...
A bit different solution and in TypeScript: ``` private _autosizeColumnCells({columns}: Worksheet) { let dataMax: number[]; let max: number; columns.forEach((column: Column) => { dataMax = []; column.eachCell({includeEmpty: false}, (cell: Cell) =>...
https://github.com/SWBennett06/EgressIntent
But isn't this working already? ``` model Category { id Int @id @default(autoincrement()) parent_category_id Int? [...more fields...] parentCategory Category? @relation("categoriesTocategories_parent_category_id", fields: [parent_category_id], references: [id]) childCategory Category[] @relation("categoriesTocategories_parent_category_id") @@map("categories") } ```...
After checking the lib code, I found out, that I am not allowed to set the response_type. For example for lokal development I am always using `response_type: 'token'`, which is...
Hello folks, is there really noone with any hint why I get errors on the callback page? Redirect to login-page (keycloak) works, redirekt to callback page (app) works. But on...
Thank you for your response @dmoojunk ! I am doing the init() call right after platform.ready(). So that was not the issue.. I fixed it today, after I checked all...