forked from AkkomaGang/akkoma
OpenAPI: PleromaAPI UserImport Controller
This commit is contained in:
parent
ef5de5eb39
commit
e4743847a1
2 changed files with 2 additions and 1 deletions
|
@ -23,6 +23,7 @@ def follow_operation do
|
|||
requestBody: request_body("Parameters", import_request(), required: true),
|
||||
responses: %{
|
||||
200 => ok_response(),
|
||||
403 => Operation.response("Error", "application/json", ApiError),
|
||||
500 => Operation.response("Error", "application/json", ApiError)
|
||||
},
|
||||
security: [%{"oAuth" => ["write:follow"]}]
|
||||
|
|
|
@ -83,7 +83,7 @@ test "requires 'follow' or 'write:follows' permissions" do
|
|||
assert %{"error" => "Insufficient permissions: follow | write:follows."} ==
|
||||
json_response(conn, 403)
|
||||
else
|
||||
assert json_response(conn, 200)
|
||||
assert json_response_and_validate_schema(conn, 200)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue