mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-14 12:27:50 -05:00
17 lines
345 B
Ruby
17 lines
345 B
Ruby
class AdminController < ApplicationController
|
|
def index
|
|
authorize! :manage, :all
|
|
respond_to do |format|
|
|
format.html # index.html.haml
|
|
end
|
|
end
|
|
|
|
def newsletter
|
|
authorize! :manage, :all
|
|
@members = Member.confirmed.wants_newsletter.all
|
|
respond_to do |format|
|
|
format.html # index.html.haml
|
|
end
|
|
end
|
|
end
|