johnrees/fablabs

View on GitHub
app/controllers/backstage/redirects_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Backstage::RedirectsController < Backstage::BackstageController

  def projects
    redirect_to 'https://projects.fablabs.io', status: 302
  end

  def myprojects
    redirect_to 'https://projects.fablabs.io/@' + current_user.username , status: 302
  end
end