Skip to content
Snippets Groups Projects
Unverified Commit a5fde0a0 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #25811 from eileenmcnaughton/import_access

#4184 Permit access to template user jobs (imports)
parents 395e0df2 0d986942
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,9 @@ class CRM_Core_BAO_UserJob extends CRM_Core_DAO_UserJob implements \Civi\Core\Ho
public function addSelectWhereClause(): array {
$clauses = [];
if (!\CRM_Core_Permission::check('administer queues')) {
$clauses['created_id'] = '= ' . (int) CRM_Core_Session::getLoggedInContactID();
// @todo - the is_template should really be prefixed. We need to add support
// for that in the compiler & then this would be `{table}.is_template`
$clauses['created_id'] = '= ' . (int) CRM_Core_Session::getLoggedInContactID() . ' OR is_template = 1';
}
CRM_Utils_Hook::selectWhereClause($this, $clauses);
return $clauses;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment