mirror of
https://github.com/sismics/docs.git
synced 2025-12-13 01:36:18 +00:00
#189: fire async event after transactionutil.handle
This commit is contained in:
@@ -188,14 +188,14 @@
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<a class="text-center"><span class="glyphicon glyphicon-plus"></span> Add this search query on the home</a>
|
||||
<!--<a class="text-center"><span class="glyphicon glyphicon-plus"></span> Add this search query on the home</a>-->
|
||||
|
||||
<div class="pull-left" title="{{ 'document.upgrade_quota' | translate }}"
|
||||
<div class="pull-left small text-muted" title="{{ 'document.upgrade_quota' | translate }}"
|
||||
translate="document.quota"
|
||||
translate-values="{ current: userInfo.storage_current / 1000000, percent: userInfo.storage_current / userInfo.storage_quota * 100, total: userInfo.storage_quota / 1000000 }">
|
||||
</div>
|
||||
|
||||
<div class="text-right" >
|
||||
<div class="text-right small text-muted">
|
||||
<span ng-if="totalDocuments" translate="document.count" translate-values="{ count: totalDocuments }"></span>
|
||||
<span ng-if="!totalDocuments"> </span>
|
||||
</div>
|
||||
|
||||
@@ -297,7 +297,7 @@ public class TestAppResource extends BaseJerseyTest {
|
||||
|
||||
// Search for added documents
|
||||
json = target().path("/document/list")
|
||||
.queryParam("search", "tag:Inbox")
|
||||
.queryParam("search", "tag:Inbox full:content")
|
||||
.request()
|
||||
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, adminToken)
|
||||
.get(JsonObject.class);
|
||||
@@ -317,7 +317,7 @@ public class TestAppResource extends BaseJerseyTest {
|
||||
|
||||
// Search for added documents
|
||||
json = target().path("/document/list")
|
||||
.queryParam("search", "tag:Inbox")
|
||||
.queryParam("search", "tag:Inbox full:content")
|
||||
.request()
|
||||
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, adminToken)
|
||||
.get(JsonObject.class);
|
||||
|
||||
Reference in New Issue
Block a user