-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add xml_file field to update case in store * fix test and commit Bus:chain * start with job * rewrite update to transaction * use pint for code style * make save job * make update (no tested) * rewrite metadata storage name to config file * change saving attribute from name to xml_id * make Cache lock on job * make run script function * rewrite to Locks Across Processes * mke mda paths with env * make RateLimited for RunMdaScript job * Add pint to laravel workflow --------- Co-authored-by: Artem Otliaguzov <[email protected]>
- Loading branch information
1 parent
6473425
commit cd9bf9d
Showing
88 changed files
with
1,073 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,9 @@ VITE_PUSHER_PORT="${PUSHER_PORT}" | |
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" | ||
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||
|
||
MDA_CONFIG_FOLDER=/opt/mda-distribution-0.10.0/config | ||
MDA_SCRIPT=/opt/mda-distribution-0.10.0/mda.sh | ||
|
||
GIT_REMOTE=[email protected]:repository | ||
GIT_REMOTE_BRANCH=main | ||
GIT_LOCAL=/home/user/metaman/storage/git | ||
|
@@ -86,4 +89,4 @@ LDAP_PORT=636 | |
LDAP_BASE_DN="ou=Organizations,dc=example,dc=org" | ||
LDAP_BASE_DN_EDUIDCZORGANIZATIONS="ou=Organizations,o=saml,dc=example,dc=org" | ||
LDAP_SSL=true | ||
LDAP_TLS=false | ||
LDAP_TLS=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace App\Events; | ||
|
||
use App\Models\Entity; | ||
use Illuminate\Broadcasting\InteractsWithSockets; | ||
use Illuminate\Foundation\Events\Dispatchable; | ||
use Illuminate\Queue\SerializesModels; | ||
|
||
class CreateEntity | ||
{ | ||
use Dispatchable, InteractsWithSockets, SerializesModels; | ||
|
||
public Entity $entity; | ||
|
||
/** | ||
* Create a new event instance. | ||
*/ | ||
public function __construct(Entity $entity) | ||
{ | ||
$this->entity = $entity; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace App\Events; | ||
|
||
use App\Models\Entity; | ||
use Illuminate\Broadcasting\InteractsWithSockets; | ||
use Illuminate\Foundation\Events\Dispatchable; | ||
use Illuminate\Queue\SerializesModels; | ||
|
||
class UpdateEntity | ||
{ | ||
use Dispatchable, InteractsWithSockets, SerializesModels; | ||
|
||
public Entity $entity; | ||
|
||
/** | ||
* Create a new event instance. | ||
*/ | ||
public function __construct(Entity $entity) | ||
{ | ||
$this->entity = $entity; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.