We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following is a sample for a Api Controller that will allow http basic and run it through your exisiting devise configuration.
class Api::ApiController < ApplicationController before_filter :check_auth def check_auth authenticate_or_request_with_http_basic do |username,password| resource = User.find_by_email(username) if resource.valid_password?(password) sign_in :user, resource end end end end