class Acme::Resources::Registration

def agree_terms

def agree_terms
  if @term_of_service_uri
    payload = {
      resource: "reg",
      agreement: @term_of_service_uri
    }
    response = @client.connection.post(@uri, { resource: 'reg', agreement: @term_of_service_uri })
    response.success?
  else
    true
  end
end