Browse Source
Feature/change grant private access with permissions to general availability (#3169)
* Change grant private access with permissions from experimental to general availability
* Update changelog
pull/3164/head^2
Thomas Kaul
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
8 additions and
8 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts
-
apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html
-
apps/client/src/app/components/user-account-access/create-or-update-access-dialog/interfaces/interfaces.ts
-
apps/client/src/app/components/user-account-access/user-account-access.component.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added the symbol and ISIN number to the position detail dialog |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Moved the support to grant private access with permissions from experimental to general availability |
|
|
|
|
|
|
|
## 2.64.0 - 2024-03-16 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -29,7 +29,7 @@ export class CreateOrUpdateAccessDialog implements OnDestroy { |
|
|
|
|
|
|
|
public constructor( |
|
|
|
private changeDetectorRef: ChangeDetectorRef, |
|
|
|
@Inject(MAT_DIALOG_DATA) public data: CreateOrUpdateAccessDialogParams, |
|
|
|
@Inject(MAT_DIALOG_DATA) private data: CreateOrUpdateAccessDialogParams, |
|
|
|
public dialogRef: MatDialogRef<CreateOrUpdateAccessDialog>, |
|
|
|
private dataService: DataService, |
|
|
|
private formBuilder: FormBuilder |
|
|
|
|
|
@ -35,9 +35,7 @@ |
|
|
|
<mat-option i18n value="READ_RESTRICTED" |
|
|
|
>Restricted view</mat-option |
|
|
|
> |
|
|
|
@if (data?.user?.settings?.isExperimentalFeatures) { |
|
|
|
<mat-option i18n value="READ">View</mat-option> |
|
|
|
} |
|
|
|
<mat-option i18n value="READ">View</mat-option> |
|
|
|
</mat-select> |
|
|
|
</mat-form-field> |
|
|
|
</div> |
|
|
|
|
|
@ -1,6 +1,5 @@ |
|
|
|
import { Access, User } from '@ghostfolio/common/interfaces'; |
|
|
|
import { Access } from '@ghostfolio/common/interfaces'; |
|
|
|
|
|
|
|
export interface CreateOrUpdateAccessDialogParams { |
|
|
|
access: Access; |
|
|
|
user: User; |
|
|
|
} |
|
|
|
|
|
@ -107,8 +107,7 @@ export class UserAccountAccessComponent implements OnDestroy, OnInit { |
|
|
|
alias: '', |
|
|
|
permissions: ['READ_RESTRICTED'], |
|
|
|
type: 'PRIVATE' |
|
|
|
}, |
|
|
|
user: this.user |
|
|
|
} |
|
|
|
}, |
|
|
|
height: this.deviceType === 'mobile' ? '97.5vh' : '80vh', |
|
|
|
width: this.deviceType === 'mobile' ? '100vw' : '50rem' |
|
|
|