Method: ApplicationHelper#generic_edit_link

Defined in:
app/helpers/application_helper.rb

Get a link to edit the specified post.

Parameters:

  • post (Post)

    The post to link to.

Returns:

  • (String)


188
189
190
# File 'app/helpers/application_helper.rb', line 188

def generic_edit_link(post)
  edit_post_url(post)
end