Created
November 29, 2012 20:30
-
-
Save petrokoriakin/4171702 to your computer and use it in GitHub Desktop.
Grape Congig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/grape.rb | |
module AppstackGrapeEndpointSetup | |
extend ActiveSupport::Concern | |
module ClassMethods | |
include Rails.application.routes.url_helpers | |
def default_url_options | |
{host: ::Rails.application.config.action_mailer.default_url_options[:host]} | |
end | |
end | |
end | |
module Grape | |
class Endpoint | |
include Rails.application.routes.url_helpers | |
default_url_options[:host] = ::Rails.application.config.action_mailer.default_url_options[:host] | |
end | |
class Entity | |
include AppstackGrapeEndpointSetup | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment