1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

fix(mobile): make user.memoryEnable optional (#3680)

* chore(server): avoid breaking changes

* generate api

* mobile app
This commit is contained in:
Alex 2023-08-14 12:52:06 -05:00 committed by GitHub
parent b1b215f083
commit 0d80ae3a91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 10 deletions

View file

@ -3159,7 +3159,7 @@ export interface UserResponseDto {
* @type {boolean}
* @memberof UserResponseDto
*/
'memoriesEnabled': boolean;
'memoriesEnabled'?: boolean;
/**
*
* @type {string}

View file

@ -342,10 +342,11 @@ class HomePage extends HookConsumerWidget {
listener: selectionListener,
selectionActive: selectionEnabledHook.value,
onRefresh: refreshAssets,
topWidget:
(currentUser != null && currentUser.memoryEnabled)
? const MemoryLane()
: const SizedBox(),
topWidget: (currentUser != null &&
currentUser.memoryEnabled != null &&
currentUser.memoryEnabled!)
? const MemoryLane()
: const SizedBox(),
),
error: (error, _) => Center(child: Text(error.toString())),
loading: buildLoadingIndicator,

View file

@ -44,7 +44,7 @@ class User {
bool isPartnerSharedWith;
bool isAdmin;
String profileImagePath;
bool memoryEnabled;
bool? memoryEnabled;
@Backlink(to: 'owner')
final IsarLinks<Album> albums = IsarLinks<Album>();
@Backlink(to: 'sharedUsers')

Binary file not shown.

Binary file not shown.

View file

@ -7152,8 +7152,7 @@
"createdAt",
"deletedAt",
"updatedAt",
"oauthId",
"memoriesEnabled"
"oauthId"
],
"type": "object"
},

View file

@ -14,7 +14,7 @@ export class UserResponseDto {
deletedAt!: Date | null;
updatedAt!: Date;
oauthId!: string;
memoriesEnabled!: boolean;
memoriesEnabled?: boolean;
}
export function mapUser(entity: UserEntity): UserResponseDto {

View file

@ -3159,7 +3159,7 @@ export interface UserResponseDto {
* @type {boolean}
* @memberof UserResponseDto
*/
'memoriesEnabled': boolean;
'memoriesEnabled'?: boolean;
/**
*
* @type {string}