644f7fc632
Memind CI / Test, build, and release guards (push) Has been cancelled
Ship the WeChat Cursor executor helpers referenced by the page delivery path so tests and runtime imports resolve consistently. Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
514 B
JavaScript
18 lines
514 B
JavaScript
import {
|
|
isIntentAllowedByWechatCursorPolicy,
|
|
isUserAllowedByWechatCursorPolicy,
|
|
} from './wechat-cursor-executor-admin-config.mjs';
|
|
|
|
export function resolveWechatCursorExecutorEligible({
|
|
user = null,
|
|
userId = null,
|
|
intentKind = '',
|
|
policy = null,
|
|
} = {}) {
|
|
if (!policy?.enabled) return false;
|
|
const subject = user ?? { userId };
|
|
if (!isUserAllowedByWechatCursorPolicy(subject, policy)) return false;
|
|
if (!isIntentAllowedByWechatCursorPolicy(intentKind, policy)) return false;
|
|
return true;
|
|
}
|