mirror of
https://github.com/s-frick/effigenix.git
synced 2026-03-28 12:19:35 +01:00
feat(tui): Edit-Screen für Lagerort-Bearbeitung (Name, Temperaturbereich)
StorageLocationEditScreen mit Formular für Name und Temperaturbereich. StorageType wird als immutable angezeigt. Erreichbar über [Bearbeiten] im DetailScreen. Vervollständigt Story 1.2 im Frontend.
This commit is contained in:
parent
614f3ece30
commit
5020df5d93
6 changed files with 192 additions and 4 deletions
|
|
@ -71,7 +71,7 @@ export interface paths {
|
|||
path?: never;
|
||||
cookie?: never;
|
||||
};
|
||||
get?: never;
|
||||
get: operations["getStorageLocation"];
|
||||
put: operations["updateStorageLocation"];
|
||||
post?: never;
|
||||
delete?: never;
|
||||
|
|
@ -1885,6 +1885,28 @@ export interface operations {
|
|||
};
|
||||
};
|
||||
};
|
||||
getStorageLocation: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
header?: never;
|
||||
path: {
|
||||
id: string;
|
||||
};
|
||||
cookie?: never;
|
||||
};
|
||||
requestBody?: never;
|
||||
responses: {
|
||||
/** @description OK */
|
||||
200: {
|
||||
headers: {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"*/*": components["schemas"]["StorageLocationResponse"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
updateStorageLocation: {
|
||||
parameters: {
|
||||
query?: never;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue