Sinatra extensions for blocking non-AJAX requests. Provide ajax_only condition. Return 403 when request is not ajax.
Add this line to your application's Gemfile:
gem 'sinatra-ajax_only'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sinatra-ajax_only
# Only allow access via Ajax.
get "/should/ajax", ajax_only do
"Ok!"
end
class MyApp < Sinatra::Base
register Sinatra::AjaxOnly
# Only allow access via Ajax.
get "/should/ajax", ajax_only do
"Hey!"
end
end
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request