Arie/serveme

View on GitHub
app/controllers/api/servers_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Api
  class ServersController < Api::ApplicationController
    def index
      @servers = Server.active.order(:name)
    end
  end
end