feat(web): app api support shared_only key
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
* @Author: ZhaoYing
|
* @Author: ZhaoYing
|
||||||
* @Date: 2026-02-03 16:34:12
|
* @Date: 2026-02-03 16:34:12
|
||||||
* @Last Modified by: ZhaoYing
|
* @Last Modified by: ZhaoYing
|
||||||
* @Last Modified time: 2026-03-13 17:03:40
|
* @Last Modified time: 2026-03-16 09:56:02
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Application Management Page
|
* Application Management Page
|
||||||
@@ -185,7 +185,7 @@ const ApplicationManagement: React.FC = () => {
|
|||||||
<PageScrollList<Application, Query>
|
<PageScrollList<Application, Query>
|
||||||
ref={scrollListRef}
|
ref={scrollListRef}
|
||||||
url={getApplicationListUrl}
|
url={getApplicationListUrl}
|
||||||
query={{ ...query, include_shared: activeTab === 'sharing' }}
|
query={{ ...query, shared_only: activeTab === 'sharing' }}
|
||||||
renderItem={(item) => (
|
renderItem={(item) => (
|
||||||
<RbCard
|
<RbCard
|
||||||
title={item.name}
|
title={item.name}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* @Author: ZhaoYing
|
* @Author: ZhaoYing
|
||||||
* @Date: 2026-02-03 16:34:15
|
* @Date: 2026-02-03 16:34:15
|
||||||
* @Last Modified by: ZhaoYing
|
* @Last Modified by: ZhaoYing
|
||||||
* @Last Modified time: 2026-03-13 17:01:06
|
* @Last Modified time: 2026-03-16 09:55:52
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* Type definitions for Application Management
|
* Type definitions for Application Management
|
||||||
@@ -15,7 +15,7 @@ export interface Query {
|
|||||||
/** Search keyword */
|
/** Search keyword */
|
||||||
search: string;
|
search: string;
|
||||||
type?: string;
|
type?: string;
|
||||||
include_shared?: boolean;
|
shared_only?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user