osunyorg/admin

View on GitHub
app/controllers/api/osuny/communication/websites_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::Osuny::Communication::WebsitesController < Api::Osuny::Communication::Websites::ApplicationController
  def index
    @websites = websites.ordered(current_language)
  end

  def show
    @website = websites.find params[:id]
  end
end