mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 07:52:16 +00:00
issues: renamed method PersonenMitOffenenIssues, added expose to components
This commit is contained in:
@@ -13,7 +13,8 @@ class Issues extends FHCAPI_Controller
|
||||
|
||||
parent::__construct(
|
||||
array(
|
||||
'getOpenIssuesByProperties' => Self::DEFAULT_PERMISSION
|
||||
'getOpenIssuesByProperties' => Self::DEFAULT_PERMISSION,
|
||||
'getPersonenMitOffenenIssues' => Self::DEFAULT_PERMISSION
|
||||
)
|
||||
);
|
||||
|
||||
@@ -64,7 +65,7 @@ class Issues extends FHCAPI_Controller
|
||||
$this->terminateWithSuccess(hasData($issueRes) ? getData($issueRes) : []);
|
||||
}
|
||||
|
||||
public function PersonenMitOffenenIssues()
|
||||
public function getPersonenMitOffenenIssues()
|
||||
{
|
||||
|
||||
$sql = <<<EOSQL
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
export default {
|
||||
name: 'IssueChecker',
|
||||
expose: ['countPersonOpenIssues', 'checkPerson'],
|
||||
//emits: ['issuesLoaded'],
|
||||
components: {
|
||||
"p-skeleton": primevue.skeleton,
|
||||
|
||||
@@ -3,6 +3,7 @@ import ApiIssueList from '../../api/factory/issueList.js';
|
||||
export default {
|
||||
name: 'IssueList',
|
||||
emits: ['issuesLoaded'],
|
||||
expose: ['fetchIssues'],
|
||||
components: {
|
||||
},
|
||||
props: {
|
||||
|
||||
Reference in New Issue
Block a user