Module: Roda::RodaPlugins::Csrf::InstanceMethods

Defined in:
lib/roda/plugins/csrf.rb

Instance Method Summary collapse

Instance Method Details

#csrf_fieldObject

The name of the hidden/meta csrf tag.



49
50
51
# File 'lib/roda/plugins/csrf.rb', line 49

def csrf_field
  CSRF.field
end

#csrf_headerObject

The http header name to use for submitting csrf token via headers.



54
55
56
# File 'lib/roda/plugins/csrf.rb', line 54

def csrf_header
  CSRF.header
end

#csrf_metatag(opts = {}) ⇒ Object

An html meta tag string containing the token.



59
60
61
# File 'lib/roda/plugins/csrf.rb', line 59

def csrf_metatag(opts={})
  CSRF.metatag(env, opts)
end

#csrf_tagObject

An html hidden input tag string containing the token.



64
65
66
# File 'lib/roda/plugins/csrf.rb', line 64

def csrf_tag
  CSRF.tag(env)
end

#csrf_tokenObject

The value of the csrf token.



69
70
71
# File 'lib/roda/plugins/csrf.rb', line 69

def csrf_token
  CSRF.token(env)
end