mirror of
https://github.com/Karaka-Management/oms-QA.git
synced 2026-02-17 16:28:41 +00:00
bug fixes
This commit is contained in:
parent
9954e59224
commit
642b819464
2
.github/workflows/greetings.yml
vendored
2
.github/workflows/greetings.yml
vendored
|
|
@ -9,5 +9,5 @@ jobs:
|
||||||
- uses: actions/first-interaction@v1
|
- uses: actions/first-interaction@v1
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
issue-message: 'Thank you for createing this issue. We will check it as soon as possible.'
|
issue-message: 'Thank you for creating this issue. We will check it as soon as possible.'
|
||||||
pr-message: 'Thank you for your pull request. We will check it as soon as possible.'
|
pr-message: 'Thank you for your pull request. We will check it as soon as possible.'
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ echo $this->data['nav']->render(); ?>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<div class="portlet">
|
<section class="portlet">
|
||||||
<div class="portlet-head"><?= $this->getHtml('Apps'); ?><i class="g-icon download btn end-xs">download</i></div>
|
<div class="portlet-head"><?= $this->getHtml('Apps'); ?><i class="g-icon download btn end-xs">download</i></div>
|
||||||
<div class="slider">
|
<div class="slider">
|
||||||
<table id="appList" class="default sticky">
|
<table id="appList" class="default sticky">
|
||||||
|
|
@ -67,6 +67,6 @@ echo $this->data['nav']->render(); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -184,9 +184,11 @@ final class ApiController extends Controller
|
||||||
$question->status = QAQuestionStatus::tryFromValue($request->getDataInt('status')) ?? QAQuestionStatus::ACTIVE;
|
$question->status = QAQuestionStatus::tryFromValue($request->getDataInt('status')) ?? QAQuestionStatus::ACTIVE;
|
||||||
$question->createdBy = new Profile(new NullAccount($request->header->account));
|
$question->createdBy = new Profile(new NullAccount($request->header->account));
|
||||||
|
|
||||||
|
/*
|
||||||
if ($request->hasData('tags')) {
|
if ($request->hasData('tags')) {
|
||||||
$question->tags = $this->app->moduleManager->get('Tag', 'Api')->createTagsFromRequest($request);
|
$question->tags = $this->app->moduleManager->get('Tag', 'Api')->createTagsFromRequest($request);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
// @todo implement subfolders
|
// @todo implement subfolders
|
||||||
if (!empty($request->files)) {
|
if (!empty($request->files)) {
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ echo $this->data['nav']->render();
|
||||||
?>
|
?>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-xs-12">
|
<div class="col-xs-12">
|
||||||
<div class="portlet">
|
<section class="portlet">
|
||||||
<div class="portlet-head">
|
<div class="portlet-head">
|
||||||
<?= $this->getHtml('Apps'); ?>
|
<?= $this->getHtml('Apps'); ?>
|
||||||
<i class="g-icon download btn end-xs">download</i>
|
<i class="g-icon download btn end-xs">download</i>
|
||||||
|
|
@ -46,6 +46,6 @@ echo $this->data['nav']->render();
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
Loading…
Reference in New Issue
Block a user