mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
fix: add scoped API permissions to map endpoints (#25423)
This commit is contained in:
parent
3304c8efd8
commit
c320146538
5 changed files with 18 additions and 3 deletions
|
|
@ -6305,6 +6305,7 @@
|
|||
"state": "Stable"
|
||||
}
|
||||
],
|
||||
"x-immich-permission": "map.read",
|
||||
"x-immich-state": "Stable"
|
||||
}
|
||||
},
|
||||
|
|
@ -6376,6 +6377,7 @@
|
|||
"state": "Stable"
|
||||
}
|
||||
],
|
||||
"x-immich-permission": "map.search",
|
||||
"x-immich-state": "Stable"
|
||||
}
|
||||
},
|
||||
|
|
@ -18966,6 +18968,8 @@
|
|||
"timeline.read",
|
||||
"timeline.download",
|
||||
"maintenance",
|
||||
"map.read",
|
||||
"map.search",
|
||||
"memory.create",
|
||||
"memory.read",
|
||||
"memory.update",
|
||||
|
|
|
|||
|
|
@ -5534,6 +5534,8 @@ export enum Permission {
|
|||
TimelineRead = "timeline.read",
|
||||
TimelineDownload = "timeline.download",
|
||||
Maintenance = "maintenance",
|
||||
MapRead = "map.read",
|
||||
MapSearch = "map.search",
|
||||
MemoryCreate = "memory.create",
|
||||
MemoryRead = "memory.read",
|
||||
MemoryUpdate = "memory.update",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue