From 939a11d701a1f47426594d82f23127f5c47eadc0 Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Tue, 25 Jan 2022 02:40:49 +0400 Subject: [PATCH] feat: rename tags to deployments in events.php --- app/config/events.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/config/events.php b/app/config/events.php index 2d88d2a4e6..a7a1115949 100644 --- a/app/config/events.php +++ b/app/config/events.php @@ -147,18 +147,18 @@ return [ 'model' => Response::MODEL_ANY, 'note' => 'version >= 0.7', ], - 'functions.tags.create' => [ - 'description' => 'This event triggers when a function tag is created.', + 'functions.deployments.create' => [ + 'description' => 'This event triggers when a function delpoyment is created.', 'model' => Response::MODEL_TAG, 'note' => 'version >= 0.7', ], - 'functions.tags.update' => [ - 'description' => 'This event triggers when a function tag is updated.', + 'functions.deployments.update' => [ + 'description' => 'This event triggers when a function delpoyment is updated.', 'model' => Response::MODEL_FUNCTION, 'note' => 'version >= 0.7', ], - 'functions.tags.delete' => [ - 'description' => 'This event triggers when a function tag is deleted.', + 'functions.deployments.delete' => [ + 'description' => 'This event triggers when a function delpoyment is deleted.', 'model' => Response::MODEL_ANY, 'note' => 'version >= 0.7', ],