File tree Expand file tree Collapse file tree
views/administration/notifications Expand file tree Collapse file tree Original file line number Diff line number Diff line change 501501 "delete_alert" : " Delete Alert" ,
502502 "limit_to" : " Limit To" ,
503503 "limit_to_projects" : " Limit to projects" ,
504+ "include_children" : " Include active children of projects" ,
504505 "limit_to_tags" : " Limit to Tags" ,
505506 "alert_created" : " Alert created" ,
506507 "alert_deleted" : " Alert deleted" ,
Original file line number Diff line number Diff line change 155155 <actionable-list-group-item :add-icon="true" v-on:actionClicked="$root.$emit('bv::show::modal', 'selectProjectModal')"/>
156156 </div>
157157 </b-form-group>
158+ <div v-if="limitToVisible === true">
159+ <c-switch id="isNotifyChildrenEnabled" color="primary" v-model="notifyChildren" label v-bind="labelIcon"/>
160+ {{ $t('admin.include_children') }}
161+ </div>
158162 </b-col>
159163 <b-col sm="6">
160164 <b-form-group id="fieldset-5" :label="this.$t('admin.scope')" label-for="input-5">
209213 uuid: row .uuid ,
210214 name: row .name ,
211215 enabled: row .enabled ,
216+ notifyChildren: row .notifyChildren ,
212217 publisherClass: row .publisher .publisherClass ,
213218 notificationLevel: row .notificationLevel ,
214219 destination: this .parseDestination (row),
230235 enabled () {
231236 this .updateNotificationRule ();
232237 },
238+ notifyChildren () {
239+ this .updateNotificationRule ();
240+ },
233241 notifyOn () {
234242 this .updateNotificationRule ();
235243 },
260268 uuid: this .uuid ,
261269 name: this .name ,
262270 enabled: this .enabled ,
271+ notifyChildren: this .notifyChildren ,
263272 notificationLevel: this .notificationLevel ,
264273 publisherConfig: JSON .stringify ({ destination: this .destination }),
265274 notifyOn: this .notifyOn
You can’t perform that action at this time.
0 commit comments