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