Add API retrieval by organization code and enhance SSO user handling

- Implemented `getApisByOrgCode` method in `ObpApiService` to fetch APIs based on organization code.
- Added corresponding endpoint in `ObpApiController`.
- Updated `SsoController` to handle user creation without synchronization for existing users.
- Introduced new properties for SSO synchronization settings in `KjbProperty`.
This commit is contained in:
Rinjae
2026-01-14 15:09:07 +09:00
parent 2108c32b4b
commit 4d2421a6e7
2 changed files with 24 additions and 0 deletions
@@ -10,4 +10,5 @@ import java.lang.annotation.Target;
public @interface KjbPropertyValue {
String key();
String defaultValue() default "";
String description() default "";
}