Conversations: Use correct oauth paths for extended api.

This commit is contained in:
lain 2019-08-14 15:55:43 +02:00
parent 560dbad538
commit df81abb68c
1 changed files with 5 additions and 1 deletions

View File

@ -263,9 +263,13 @@ defmodule Pleroma.Web.Router do
pipe_through(:authenticated_api)
scope [] do
pipe_through(:oauth_write)
pipe_through(:oauth_read)
get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
get("/conversations/:id", PleromaAPIController, :conversation)
end
scope [] do
pipe_through(:oauth_write)
patch("/conversations/:id", PleromaAPIController, :update_conversation)
end
end