Class: NextSges::CollectionNotesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/next_sges/collection_notes_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /collection_notes



26
27
28
29
30
31
32
33
34
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 26

def create
  @collection_note = CollectionNote.new(collection_note_params)

  if @collection_note.save
    redirect_to @collection_note, notice: 'Collection note was successfully created.'
  else
    render :new
  end
end

#destroyObject

DELETE /collection_notes/1



46
47
48
49
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 46

def destroy
  @collection_note.destroy
  redirect_to collection_notes_url, notice: 'Collection note was successfully destroyed.'
end

#editObject

GET /collection_notes/1/edit



22
23
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 22

def edit
end

#indexObject

GET /collection_notes



8
9
10
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 8

def index
  @collection_notes = CollectionNote.all
end

#newObject

GET /collection_notes/new



17
18
19
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 17

def new
  @collection_note = CollectionNote.new
end

#showObject

GET /collection_notes/1



13
14
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 13

def show
end

#updateObject

PATCH/PUT /collection_notes/1



37
38
39
40
41
42
43
# File 'app/controllers/next_sges/collection_notes_controller.rb', line 37

def update
  if @collection_note.update(collection_note_params)
    redirect_to @collection_note, notice: 'Collection note was successfully updated.'
  else
    render :edit
  end
end