flyinggrizzly/s301

View on GitHub
app/helpers/short_urls_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ShortUrlsHelper
  # Returns the URL of the short URL at the application endpoint
  def endpoint_for(short_url)
    S301::Application.config.endpoint + '/' + short_url.slug
  end
end