Module: WDA::TouchID
- Included in:
- WDA
- Defined in:
- lib/wda_lib/touch_id.rb
Instance Method Summary collapse
-
#match_touchid ⇒ Object
Touch ID Match TouchID.
-
#unmatch_touchid ⇒ Object
Do not match TouchID.
Instance Method Details
#match_touchid ⇒ Object
Touch ID Match TouchID
10 11 12 |
# File 'lib/wda_lib/touch_id.rb', line 10 def match_touchid post(@base_url + '/wda/touch_id', { match: 1 }.to_json) end |
#unmatch_touchid ⇒ Object
Do not match TouchID
15 16 17 |
# File 'lib/wda_lib/touch_id.rb', line 15 def unmatch_touchid post(@base_url + '/wda/touch_id', { match: 0 }.to_json) end |