mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-14 18:09:03 +01:00
flask backend: Add a stub for bitcoin certificates
Returns an empty array. No plans to implement.
This commit is contained in:
parent
c55bb5eff2
commit
4d0550934a
@ -659,6 +659,15 @@ class message(HandlerMixin):
|
|||||||
result['result'] = 'done'
|
result['result'] = 'done'
|
||||||
return jsonify({'result': result})
|
return jsonify({'result': result})
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
def getCertificatesStatus(self, parameters, request):
|
||||||
|
"""
|
||||||
|
Provides support for BTC Certificate feature.
|
||||||
|
|
||||||
|
No idea how it works.
|
||||||
|
"""
|
||||||
|
return jsonify({'result': {}})
|
||||||
|
|
||||||
|
|
||||||
class logout(HandlerMixin):
|
class logout(HandlerMixin):
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user