openSUSE/open-build-service

View on GitHub
src/api/app/controllers/webui/image_templates_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Webui::ImageTemplatesController < Webui::WebuiController
  before_action :require_login

  def index
    @projects = Project.image_templates

    respond_to do |format|
      format.html
      format.xml
    end
  end
end