Retrospring/app/controllers/announcement_controller.rb

21 lines
209 B
Ruby
Raw Normal View History

2020-04-19 12:12:22 -07:00
class AnnouncementController < ApplicationController
def index
@announcements = Announcement.all
end
def new
end
def create
end
def edit
end
def update
end
def destroy
end
end