175 Commits

Author SHA1 Message Date
Nico Stapelbroek
06efafc3ae Replace Inf with asterisk when using pluralization in translations
Since Laravel 5.4 the "Inf" has been replaced with *
@see https://laravel.com/docs/5.4/upgrade#upgrade-5.4.0
2018-01-16 08:56:12 +01:00
Nico Stapelbroek
72b029e0e9 Add a button to Manage Incident updates
Also removed the link on the overview pages to re-align them with other components
2018-01-14 22:09:00 +01:00
Nico Stapelbroek
5dc595d55b Replace Inf with asterisk when using pluralization in touched translations
@see https://github.com/CachetHQ/Cachet/pull/2868
2018-01-13 18:51:21 +01:00
Nico Stapelbroek
55f6ee7dc7 Fix styleci violations 2018-01-13 18:32:02 +01:00
Nico Stapelbroek
569b15000a Implement edit IncidentUpdate feature 2018-01-13 17:43:35 +01:00
Nico Stapelbroek
3a9688c510 Change navigation flow from incidents to incident updates page
Clicking on the incident title will now navigate to the incident updates page rather than editing the incident. To prevent confusion I've also removed the "update" button from the incidents overview page and added the incident name to the page title of the incident updates page.
2018-01-13 16:01:58 +01:00
Nico Stapelbroek
532d8a20c5 Create an incident updates overview page 2018-01-13 15:42:02 +01:00
Vivek
6d64ea8f12 Added postedAt on the single incident page (#2795)
Added a PostedAt tooltip
2017-12-03 10:35:23 +00:00
James Brooks
d807770ff6 Resource changes 2017-09-15 07:39:40 +01:00
James Brooks
ff4e59eaf1 Merge branch '2.4' of github.com:CachetHQ/Cachet into 2.4 2017-09-09 13:08:15 +01:00
jvictor
6330f8a2fb added auto-refresh on master status page 2017-08-31 16:09:27 +02:00
James Brooks
057e4d5393 Show a different message when subscribers are disabled 2017-08-27 11:34:22 +01:00
James Brooks
964eaa3ce0 Renamed Scheduled Maintenance to just Maintenance. Closes #2516 2017-07-18 22:35:20 +01:00
James Brooks
a23b0c419a Fixes #2542 2017-07-18 21:52:56 +01:00
James Brooks
261be1dfef Fixes #2579 2017-06-24 18:37:35 +01:00
James Brooks
52415d1194 Fix a spacing issue within text 2017-06-24 18:37:35 +01:00
James Brooks
2786b5b0da Fix bad Update success message 2017-05-03 09:42:02 +01:00
James Brooks
9a56625f09 Use Laravel pagination links. Closes #2415 2017-03-09 19:18:11 +00:00
James Brooks
f22d3fc717 Fix tests 2017-01-09 18:44:03 +00:00
James Brooks
c1831d8559 Granular notification strings. Closes #2303 2017-01-09 18:41:51 +00:00
James Brooks
ce577fb97d Include unsubscribe link in Slack footer 2017-01-04 19:51:20 +00:00
James Brooks
b8a9f41ae4 Integrate Mail, Nexmo and Slack notifications into Cachet 2017-01-04 19:51:20 +00:00
James Brooks
2429fddd40 Fix html entities 2017-01-02 15:21:16 +00:00
Thijs Kinkhorst
fc77102fc9 Fix validation messages.
They seem to have all been shifted one position down by accident,
therefore no longer matching the keys. This basically reverts commit
21fac303503c16fb88d8cf08a9b905740d872401 i.r.t. this file.
2016-12-20 13:47:46 +00:00
James Brooks
105cff50b9 Added metric visibility options. Closes #2244 2016-12-04 16:54:36 +00:00
James Brooks
ebc427b4b6 Apply fixes from StyleCI
[ci skip] [skip ci]
2016-11-29 18:32:01 +00:00
James Brooks
9dc80b4229 Edit the mail config from the dashboard and provide testing button 2016-11-29 18:31:37 +00:00
James Brooks
c9c592b033 Show an alert when ./bootstrap/cachet is not writeable. 2016-11-25 20:19:38 +00:00
James Brooks
ec625a13d9 Tidy up the service statuses 2016-10-30 21:42:32 +00:00
James Brooks
ebed68a7d8 Rewrite the entire scheduled maintenance implementation 2016-10-30 21:15:46 +00:00
James Brooks
a0f2d6642e Add incident column for when an incident occurred at (#2212)
Add incident column for when an incident occurred at. Closes #2208
[ci skip] [skip ci]
2016-10-29 17:25:52 +01:00
Nicolas Fagotti
b223da94a0 Add "Unknown" status to the available component statuses 2016-10-24 10:32:00 -03:00
James Brooks
70f2f1d32e Merge pull request #2158 from CachetHQ/remember-me
Add remember me functionality to login
2016-10-08 18:25:01 +01:00
James Brooks
0371d86be0 Making changes to the setup screen 2016-10-08 17:30:32 +01:00
James Brooks
b0d5306023 Add remember me functionality to login 2016-10-08 16:39:53 +01:00
James Brooks
c94919f1b9 Backport Incident Updates from v3.0.0 2016-10-06 22:40:56 +01:00
James Brooks
179de1ff28 Option to only show disrupted days. Closes #2088 2016-10-04 19:16:50 +01:00
Marius Palade
ad0954eb20 Add visibility to component groups (#2027)
Implement visibility for the components groups. Closes #1892

Add functional test that asserts a guest can only see public items.

* Fix tests not running due to hitting the Setup page.

The missing `boostrap/cachet/testing.php` file is now generated the first time tests are ran.

* Add a functional test that asserts logged in users can see all items.

Add constants for possible values for the visible column/field of the ComponentGroup model.
Code review changes.

* Add API tests for component group visibility feature.

* Implement the visibility hidden option for a component group. Fixes #1892.

Add migration for the created_by column, in component_groups table.
Add methods to the ComponentGroup and User models to be able to work with the created_by column.
Hidden component groups are no longer displayed on the index page for loggedin users.
Add functional test for the dashboard page.
Save owner on create/edit component group.
Update the API tests for Component group visibility feature.

* Replace auth() usage with app(Guard::class).

* Apply StyleCI fixes.

* Drop the hidden visibility feature and fix all tests.

Some code review fixes too.

* Rename public to visible since it's a reserved keyword. Apply StyleCI fixes and correct typo.

* Code review changes.

* Tidy up component and component groups gathering.

* Code review changes and StyleCI fixes.

* Code review changes.

* Remove extra whitespace

* Remove useless method.
2016-10-02 13:57:32 +01:00
Antoine GIRARD
1954cf26f3 Add stickied incident 2016-09-06 22:45:52 +02:00
James Brooks
268e0c1747 Language changes 2016-09-05 19:36:41 +01:00
James Brooks
936ecfae35 Show the latest log output. Closes #2045 2016-08-23 13:40:10 +01:00
James Brooks
6685ae96d8 Welcome all users to their status page 2016-08-23 13:09:47 +01:00
James Brooks
c27d59aadf Select timezone is now translated. Fixes #2032 2016-08-07 22:38:11 +01:00
Graham Campbell
5a8ad3bd06 Merge branch '2.3' into 2.4 2016-08-07 22:07:30 +01:00
James Brooks
77409abc5a Applied fixes from StyleCI
[ci skip] [skip ci]
2016-08-07 16:10:12 -04:00
James Brooks
915ea0d0bd Merge branch '2.3' into 2.4 2016-07-29 11:45:45 -04:00
James Brooks
c1d8203602 Added missing setup translations. Closes #2010 2016-07-28 15:06:16 -04:00
James Brooks
7f261a218a Added option to skip subscriber verification. Closes #1990 2016-07-20 16:00:27 +01:00
James Brooks
5298ad241a Show the timezone in the footer. 2016-07-11 21:43:59 +01:00
James Brooks
b6c22c1029 Option to disable external dependencies. Closes #1929 2016-07-11 10:11:44 +01:00