A calendar management project, for events and activities related to communities fighting for freedoms.
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
This can be related to software, art, data, hardware, content, commons, internet.
https://www.agendadulibre.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
451 B
21 lines
451 B
# Groups life cycle |
|
class LugsController < ApplicationController |
|
before_action :set_lug, only: [:show] |
|
|
|
def index |
|
@search = Lug.search params[:q] |
|
@search.sorts = 'name' if @search.sorts.empty? |
|
@lugs = @search.result.page params[:page] |
|
end |
|
|
|
def show |
|
@search = Lug.search params[:q] |
|
end |
|
|
|
private |
|
|
|
# Use callbacks to share common setup or constraints between actions. |
|
def set_lug |
|
@lug = Lug.find params[:id] |
|
end |
|
end
|
|
|