Files
postal/app/controllers/help_controller.rb
2017-04-19 13:07:25 +01:00

12 lines
249 B
Ruby

class HelpController < ApplicationController
include WithinOrganization
before_action { @server = organization.servers.find_by_permalink!(params[:server_id]) }
def outgoing
@credentials = @server.credentials.group_by(&:type)
end
end