osunyorg/admin

View on GitHub
app/controllers/extranet/style_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Extranet::StyleController < Extranet::ApplicationController
  skip_before_action :authenticate_user!, :authorize_extranet_access!
  
  def index
    render body: current_extranet.css, content_type: 'text/css'
  end
end