Method: Forms#revert_published_form

Defined in:
lib/user/content/forms.rb

#revert_published_form(id) ⇒ Object

Revert published form.

Revert a published form.

Parameters

id

(Integer) – Form id.

Example

@data = @mints_user.revert_published_form(1)


66
67
68
# File 'lib/user/content/forms.rb', line 66

def revert_published_form(id)
  @client.raw('get', "/content/forms/#{id}/revert-published-data")
end