Adds incident visibility. Closes #602
This commit is contained in:
committed by
James Brooks
parent
9257135641
commit
df2ae7726d
@@ -45,8 +45,10 @@ return [
|
||||
'scheduled_at' => 'When to schedule the maintenance for?',
|
||||
'incident_time' => 'When did this incident occur?',
|
||||
'notify_subscribers' => 'Notify subscribers',
|
||||
|
||||
'templates' => [
|
||||
'visibility' => 'Incident Visibility',
|
||||
'public' => 'Viewable by public',
|
||||
'logged_in_only' => 'Only visible logged in users',
|
||||
'templates' => [
|
||||
'name' => 'Name',
|
||||
'template' => 'Template',
|
||||
],
|
||||
|
||||
@@ -55,6 +55,13 @@
|
||||
{{ trans('cachet.incidents.status')[4] }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="incident-name">{{ trans('forms.incidents.visibility') }}</label>
|
||||
<select name='incident[visible]' class="form-control">
|
||||
<option value='1' selected>{{ trans('forms.incidents.public') }}</option>
|
||||
<option value='0'>{{ trans('forms.incidents.logged_in_only') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
@if(!$componentsInGroups->isEmpty() || !$componentsOutGroups->isEmpty())
|
||||
<div class="form-group">
|
||||
<label>{{ trans('forms.incidents.component') }}</label>
|
||||
|
||||
@@ -44,6 +44,13 @@
|
||||
{{ trans('cachet.incidents.status')[4] }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="incident-visibility">{{ trans('forms.incidents.visibility') }}</label>
|
||||
<select name='incident[visible]' id="incident-visibility" class="form-control">
|
||||
<option value='1' {{ $incident->visible === 1 ? 'selected' : null }}>{{ trans('forms.incidents.public') }}</option>
|
||||
<option value='0' {{ $incident->visible === 0 ? 'selected' : null }}>{{ trans('forms.incidents.logged_in_only') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>{{ trans('forms.incidents.message') }}</label>
|
||||
<div class='markdown-control'>
|
||||
|
||||
Reference in New Issue
Block a user