mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
14 lines
No EOL
299 B
Ruby
14 lines
No EOL
299 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Auth
|
|
class IosController < ApplicationController
|
|
def success
|
|
render json: {
|
|
success: true,
|
|
message: 'iOS authentication successful',
|
|
token: params[:token],
|
|
redirect_url: root_url
|
|
}, status: :ok
|
|
end
|
|
end
|
|
end |