Class: ActiveadminCms::PostsService

Inherits:
Object
  • Object
show all
Defined in:
app/services/activeadmin_cms/posts_service.rb

Class Method Summary collapse

Class Method Details

.move_draft(post) ⇒ Object



9
10
11
12
# File 'app/services/activeadmin_cms/posts_service.rb', line 9

def move_draft(post)
  post.published = false
  post.save
end

.publish(post) ⇒ Object



4
5
6
7
# File 'app/services/activeadmin_cms/posts_service.rb', line 4

def publish(post)
  post.published = true
  post.save
end