-
Notifications
You must be signed in to change notification settings - Fork 2
feat: MVP1 RBAC 권한 모델 적용 #65
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
06cb44a
feat: MVP1 RBAC foundation 추가
yoonki1207 1551825
feat: 팀 권한 관리 API 추가
yoonki1207 81e458e
feat: 앱 워크플로우 배포 권한 적용
yoonki1207 e0a3e20
feat: LLM credential 권한 적용
yoonki1207 38bd6cb
docs: MVP1 RBAC API 문서 정렬
yoonki1207 7e1de3b
fix: SQLAlchemy Row 권한 grant 평가 수정
yoonki1207 7f9b64a
fix: workflow stats 권한 오류 보존
yoonki1207 5e7098b
fix: RBAC 권한 검증 보강
yoonki1207 0bed815
fix: LLM pricing 관리자 권한 적용
yoonki1207 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When both
app_idandworkflow_idare supplied, this check authorizes only the suppliedworkflow_idbecause the app lookup is skipped, whileDeploymentService.list_deploymentsstill returns deployments forapp_idwhen it is present. A caller with read access to any workflow can therefore pass that workflow_id together with another app's id and read that app's deployment graph snapshots; resolve the app's workflow and reject mismatches or ignoreapp_idin this case.Useful? React with 👍 / 👎.