cf503bfba3
(And probably even then)
13 lines
211 B
Ruby
13 lines
211 B
Ruby
class Collections::PublicationsController < ApplicationController
|
|
include CollectionScoped
|
|
|
|
def create
|
|
@collection.publish
|
|
end
|
|
|
|
def destroy
|
|
@collection.unpublish
|
|
@collection.reload
|
|
end
|
|
end
|