This repository has been archived by the owner on Aug 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BB-2239] Hero customization page (#559)
* Implement the hero customization page in the console Also implement the necessary changes in the backend needed by the frontend.
- Loading branch information
1 parent
85505dd
commit f391954
Showing
54 changed files
with
3,805 additions
and
48 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.2.3-SNAPSHOT | ||
4.3.1-SNAPSHOT |
This file contains 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
70 changes: 70 additions & 0 deletions
70
frontend/packages/api_client/src/models/ApplicationImageUpload.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* OpenCraft Instance Manager | ||
* API for OpenCraft Instance Manager | ||
* | ||
* The version of the OpenAPI document: api | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { exists, mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface ApplicationImageUpload | ||
*/ | ||
export interface ApplicationImageUpload { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ApplicationImageUpload | ||
*/ | ||
readonly logo?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ApplicationImageUpload | ||
*/ | ||
readonly favicon?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ApplicationImageUpload | ||
*/ | ||
readonly heroCoverImage?: string; | ||
} | ||
|
||
export function ApplicationImageUploadFromJSON(json: any): ApplicationImageUpload { | ||
return ApplicationImageUploadFromJSONTyped(json, false); | ||
} | ||
|
||
export function ApplicationImageUploadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationImageUpload { | ||
if ((json === undefined) || (json === null)) { | ||
return json; | ||
} | ||
return { | ||
|
||
'logo': !exists(json, 'logo') ? undefined : json['logo'], | ||
'favicon': !exists(json, 'favicon') ? undefined : json['favicon'], | ||
'heroCoverImage': !exists(json, 'hero_cover_image') ? undefined : json['hero_cover_image'], | ||
}; | ||
} | ||
|
||
export function ApplicationImageUploadToJSON(value?: ApplicationImageUpload | null): any { | ||
if (value === undefined) { | ||
return undefined; | ||
} | ||
if (value === null) { | ||
return null; | ||
} | ||
return { | ||
|
||
}; | ||
} | ||
|
||
|
This file contains 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 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 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 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.