mv lib to app/lib due to upgrade

This commit is contained in:
viehlieb 2023-01-06 16:27:41 +01:00
parent 0ca69ae8a2
commit 6c910a75f2
26 changed files with 75 additions and 78 deletions

6
app/lib/api/errors.rb Normal file
View file

@ -0,0 +1,6 @@
module Api::Errors
class Error < StandardError; end
# Authentication is handled by Doorkeeper, so no errors for that here
class PermissionRequired < Error; end
end