public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
100644 7 lines (7 sloc) 0.165 kb
1
2
3
4
5
6
7
class Redirector < Application
  def show(id)
    @redirect = Redirect[id]
    self.status = @redirect.permanent ? 301 : 302
    redirect(@redirect.to_url)
  end
end