prettier changes its rules everyday.

This commit is contained in:
fiatjaf 2021-03-07 19:20:39 -03:00
parent 1630a28da0
commit 4c8ce1bfed
3 changed files with 37 additions and 44 deletions

View File

@ -17,8 +17,8 @@
<code>[&lt;paywall_object&gt;, ...]</code> <code>[&lt;paywall_object&gt;, ...]</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root }}api/v1/paywalls -H >curl -X GET {{ request.url_root }}api/v1/paywalls -H "X-Api-Key: {{
"X-Api-Key: {{ g.user.wallets[0].inkey }}" g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -48,11 +48,11 @@
> >
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X POST {{ request.url_root }}api/v1/paywalls -d >curl -X POST {{ request.url_root }}api/v1/paywalls -d '{"url":
'{"url": &lt;string&gt;, "memo": &lt;string&gt;, "description": &lt;string&gt;, "memo": &lt;string&gt;, "description": &lt;string&gt;,
&lt;string&gt;, "amount": &lt;integer&gt;, "remembers": "amount": &lt;integer&gt;, "remembers": &lt;boolean&gt;}' -H
&lt;boolean&gt;}' -H "Content-type: application/json" -H "X-Api-Key: "Content-type: application/json" -H "X-Api-Key: {{
{{ g.user.wallets[0].adminkey }}" g.user.wallets[0].adminkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>

View File

@ -42,8 +42,8 @@
<code>JSON list of users</code> <code>JSON list of users</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root }}api/v1/users -H >curl -X GET {{ request.url_root }}api/v1/users -H "X-Api-Key: {{
"X-Api-Key: {{ g.user.wallets[0].inkey }}" g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -64,9 +64,8 @@
<code>JSON wallet data</code> <code>JSON wallet data</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root >curl -X GET {{ request.url_root }}api/v1/wallets/&lt;user_id&gt; -H
}}api/v1/wallets/&lt;user_id&gt; -H "X-Api-Key: {{ "X-Api-Key: {{ g.user.wallets[0].inkey }}"
g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -87,9 +86,8 @@
<code>JSON a wallets transactions</code> <code>JSON a wallets transactions</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root >curl -X GET {{ request.url_root }}api/v1/wallets&lt;wallet_id&gt; -H
}}api/v1/wallets&lt;wallet_id&gt; -H "X-Api-Key: {{ "X-Api-Key: {{ g.user.wallets[0].inkey }}"
g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -128,10 +126,10 @@
> >
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X POST {{ request.url_root }}api/v1/users -d >curl -X POST {{ request.url_root }}api/v1/users -d '{"admin_id": "{{
'{"admin_id": "{{ g.user.id }}", "wallet_name": &lt;string&gt;, g.user.id }}", "wallet_name": &lt;string&gt;, "user_name":
"user_name": &lt;string&gt;}' -H "X-Api-Key: {{ &lt;string&gt;}' -H "X-Api-Key: {{ g.user.wallets[0].inkey }}" -H
g.user.wallets[0].inkey }}" -H "Content-type: application/json" "Content-type: application/json"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -165,10 +163,10 @@
> >
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X POST {{ request.url_root }}api/v1/wallets -d >curl -X POST {{ request.url_root }}api/v1/wallets -d '{"user_id":
'{"user_id": &lt;string&gt;, "wallet_name": &lt;string&gt;, &lt;string&gt;, "wallet_name": &lt;string&gt;, "admin_id": "{{
"admin_id": "{{ g.user.id }}"}' -H "X-Api-Key: {{ g.user.id }}"}' -H "X-Api-Key: {{ g.user.wallets[0].inkey }}" -H
g.user.wallets[0].inkey }}" -H "Content-type: application/json" "Content-type: application/json"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -189,9 +187,8 @@
<code>{"X-Api-Key": &lt;string&gt;}</code> <code>{"X-Api-Key": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X DELETE {{ request.url_root >curl -X DELETE {{ request.url_root }}api/v1/users/&lt;user_id&gt; -H
}}api/v1/users/&lt;user_id&gt; -H "X-Api-Key: {{ "X-Api-Key: {{ g.user.wallets[0].inkey }}"
g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -207,9 +204,8 @@
<code>{"X-Api-Key": &lt;string&gt;}</code> <code>{"X-Api-Key": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X DELETE {{ request.url_root >curl -X DELETE {{ request.url_root }}api/v1/wallets/&lt;wallet_id&gt;
}}api/v1/wallets/&lt;wallet_id&gt; -H "X-Api-Key: {{ -H "X-Api-Key: {{ g.user.wallets[0].inkey }}"
g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -230,8 +226,8 @@
<code>{"X-Api-Key": &lt;string&gt;}</code> <code>{"X-Api-Key": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X POST {{ request.url_root }}api/v1/extensions -d >curl -X POST {{ request.url_root }}api/v1/extensions -d '{"userid":
'{"userid": &lt;string&gt;, "extension": &lt;string&gt;, "active": &lt;string&gt;, "extension": &lt;string&gt;, "active":
&lt;integer&gt;}' -H "X-Api-Key: {{ g.user.wallets[0].inkey }}" -H &lt;integer&gt;}' -H "X-Api-Key: {{ g.user.wallets[0].inkey }}" -H
"Content-type: application/json" "Content-type: application/json"
</code> </code>

View File

@ -22,8 +22,8 @@
<code>[&lt;withdraw_link_object&gt;, ...]</code> <code>[&lt;withdraw_link_object&gt;, ...]</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root }}api/v1/links -H >curl -X GET {{ request.url_root }}api/v1/links -H "X-Api-Key: {{
"X-Api-Key: {{ g.user.wallets[0].inkey }}" g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -49,9 +49,8 @@
<code>{"lnurl": &lt;string&gt;}</code> <code>{"lnurl": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X GET {{ request.url_root >curl -X GET {{ request.url_root }}api/v1/links/&lt;withdraw_id&gt; -H
}}api/v1/links/&lt;withdraw_id&gt; -H "X-Api-Key: {{ "X-Api-Key: {{ g.user.wallets[0].inkey }}"
g.user.wallets[0].inkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>
@ -79,8 +78,8 @@
<code>{"lnurl": &lt;string&gt;}</code> <code>{"lnurl": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X POST {{ request.url_root }}api/v1/links -d >curl -X POST {{ request.url_root }}api/v1/links -d '{"title":
'{"title": &lt;string&gt;, "min_withdrawable": &lt;integer&gt;, &lt;string&gt;, "min_withdrawable": &lt;integer&gt;,
"max_withdrawable": &lt;integer&gt;, "uses": &lt;integer&gt;, "max_withdrawable": &lt;integer&gt;, "uses": &lt;integer&gt;,
"wait_time": &lt;integer&gt;, "is_unique": &lt;boolean&gt;}' -H "wait_time": &lt;integer&gt;, "is_unique": &lt;boolean&gt;}' -H
"Content-type: application/json" -H "X-Api-Key: {{ "Content-type: application/json" -H "X-Api-Key: {{
@ -115,9 +114,8 @@
<code>{"lnurl": &lt;string&gt;}</code> <code>{"lnurl": &lt;string&gt;}</code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X PUT {{ request.url_root >curl -X PUT {{ request.url_root }}api/v1/links/&lt;withdraw_id&gt; -d
}}api/v1/links/&lt;withdraw_id&gt; -d '{"title": '{"title": &lt;string&gt;, "min_withdrawable": &lt;integer&gt;,
&lt;string&gt;, "min_withdrawable": &lt;integer&gt;,
"max_withdrawable": &lt;integer&gt;, "uses": &lt;integer&gt;, "max_withdrawable": &lt;integer&gt;, "uses": &lt;integer&gt;,
"wait_time": &lt;integer&gt;, "is_unique": &lt;boolean&gt;}' -H "wait_time": &lt;integer&gt;, "is_unique": &lt;boolean&gt;}' -H
"Content-type: application/json" -H "X-Api-Key: {{ "Content-type: application/json" -H "X-Api-Key: {{
@ -145,9 +143,8 @@
<code></code> <code></code>
<h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5> <h5 class="text-caption q-mt-sm q-mb-none">Curl example</h5>
<code <code
>curl -X DELETE {{ request.url_root >curl -X DELETE {{ request.url_root }}api/v1/links/&lt;withdraw_id&gt;
}}api/v1/links/&lt;withdraw_id&gt; -H "X-Api-Key: {{ -H "X-Api-Key: {{ g.user.wallets[0].adminkey }}"
g.user.wallets[0].adminkey }}"
</code> </code>
</q-card-section> </q-card-section>
</q-card> </q-card>