prevent users from starring/tagging entries that are not theirs

This commit is contained in:
Athou
2026-08-22 08:09:28 +02:00
parent d2aaddea33
commit 43588df2b4
11 changed files with 20 additions and 31 deletions

View File

@@ -166,7 +166,6 @@ export const starEntry = createAppAsyncThunk(
(arg: { entry: Entry; starred: boolean }) => {
client.entry.star({
id: arg.entry.id,
feedId: +arg.entry.feedId,
starred: arg.starred,
})
},

View File

@@ -297,7 +297,6 @@ export interface LocalSettings {
export interface StarRequest {
id: string
feedId: number
starred: boolean
}