Feature/add permissions to access model (#2833)
* Add permissions to Access model * Update changelog
This commit is contained in:
parent
04fc2cd3e1
commit
73c0843d51
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## Unreleased
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added `permissions` to the `Access` model
|
||||||
|
|
||||||
## 2.44.0 - 2024-01-24
|
## 2.44.0 - 2024-01-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
-- CreateEnum
|
||||||
|
CREATE TYPE "AccessPermission" AS ENUM ('READ', 'READ_RESTRICTED');
|
||||||
|
|
||||||
|
-- AlterTable
|
||||||
|
ALTER TABLE "Access" ADD COLUMN "permissions" "AccessPermission"[] DEFAULT ARRAY['READ_RESTRICTED']::"AccessPermission"[];
|
@ -14,6 +14,7 @@ model Access {
|
|||||||
createdAt DateTime @default(now())
|
createdAt DateTime @default(now())
|
||||||
granteeUserId String?
|
granteeUserId String?
|
||||||
id String @id @default(uuid())
|
id String @id @default(uuid())
|
||||||
|
permissions AccessPermission[] @default([READ_RESTRICTED])
|
||||||
updatedAt DateTime @updatedAt
|
updatedAt DateTime @updatedAt
|
||||||
userId String
|
userId String
|
||||||
GranteeUser User? @relation("accessGet", fields: [granteeUserId], references: [id])
|
GranteeUser User? @relation("accessGet", fields: [granteeUserId], references: [id])
|
||||||
@ -196,6 +197,11 @@ model User {
|
|||||||
Subscription Subscription[]
|
Subscription Subscription[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum AccessPermission {
|
||||||
|
READ
|
||||||
|
READ_RESTRICTED
|
||||||
|
}
|
||||||
|
|
||||||
enum AssetClass {
|
enum AssetClass {
|
||||||
CASH
|
CASH
|
||||||
COMMODITY
|
COMMODITY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user