mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 12:46:54 +00:00
fixed the is_bank_id_exact_match field
This commit is contained in:
parent
6fd61834cd
commit
0b3c9cc94d
@ -70,7 +70,7 @@
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-2" align="center">
|
||||
<select class="is_bank_id_exact_match form-control">
|
||||
{% if method_routing.is_bank_id_exact_match == "false" %}
|
||||
{% if method_routing.is_bank_id_exact_match == False %}
|
||||
<option value="False">False</option>
|
||||
<option value="True">True</option>
|
||||
{% else %}
|
||||
|
||||
@ -60,7 +60,7 @@ def methodrouting_save(request):
|
||||
payload = {
|
||||
'method_name' : method_name,
|
||||
'connector_name': connector_name,
|
||||
'is_bank_id_exact_match': bool(is_bank_id_exact_match),
|
||||
'is_bank_id_exact_match': (is_bank_id_exact_match=="True"),
|
||||
'bank_id_pattern':bank_id_pattern,
|
||||
'parameters':eval(parameters),
|
||||
'method_routing_id':method_routing_id
|
||||
|
||||
Loading…
Reference in New Issue
Block a user