mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
18 lines
No EOL
561 B
PHP
18 lines
No EOL
561 B
PHP
<div class="page-header">
|
|
<h2><?= t('API') ?></h2>
|
|
</div>
|
|
<section class="listing">
|
|
<ul>
|
|
<li>
|
|
<?= t('API token:') ?>
|
|
<strong><?= $this->e($values['api_token']) ?></strong>
|
|
</li>
|
|
<li>
|
|
<?= t('API endpoint:') ?>
|
|
<input type="text" class="auto-select" readonly="readonly" value="<?= $this->getCurrentBaseUrl().'jsonrpc.php' ?>">
|
|
</li>
|
|
<li>
|
|
<?= $this->a(t('Reset token'), 'config', 'token', array('type' => 'api'), true) ?>
|
|
</li>
|
|
</ul>
|
|
</section>
|