James Brooks
bdb3619bc9
Apply fixes from StyleCI
2019-07-12 12:38:58 +00:00
James Brooks
3ac7492858
Remove old Tag commands, refactor migration etc
2019-07-12 11:08:25 +01:00
James Brooks
3807a6b3bb
Fix another bug
2019-07-12 10:41:55 +01:00
James Brooks
6810af48f7
Tag syncing is now done within the Component commands
2019-07-12 10:29:23 +01:00
Anne-Greeth van Herwijnen
29e0cf9528
Forgot to add notify to CreatScheduleCommand in API
2019-04-26 14:41:25 +02:00
TakeMeNL
5f1dfc6249
Resolve #3288
...
If Binput::get('enabled') is not defined this will return NULL which resulted in a false.
Updated tests
2018-12-17 17:46:31 +01:00
Gazder Bence
15a87a8e78
Add bool cast to boolean Incident parameters
2018-08-16 10:35:09 +02:00
TakeMeNL
39c0829fce
Code style fixes
2018-07-20 00:23:17 +02:00
TakeMeNL
c60f1bd50f
Added GET incident templates to use in POST incidents template
2018-07-20 00:17:46 +02:00
James Brooks
8bb8ee3dc7
Fix command dispatching
2018-06-25 22:25:54 +01:00
James Brooks
3f4c423005
Use Analyzer and fix several issues
2018-06-25 21:49:07 +01:00
James Brooks
7298e1e25a
Use query
2018-06-20 20:15:30 +01:00
James Brooks
b20461fe89
Merge pull request #3093 from CachetHQ/smoke-tests
...
Start working on Smoke Tests
2018-06-19 08:50:51 +01:00
James Brooks
9eab7ce27e
Merge pull request #3087 from CachetHQ/tag-commands
...
Fix how tags are created
2018-06-18 21:37:31 +01:00
James Brooks
788b9af959
Import missing Collection
2018-06-18 21:31:18 +01:00
James Brooks
b22f7abd28
Fix how tags are created. Fixes #3004
2018-06-18 21:28:46 +01:00
James Brooks
ab64572274
Add the ability to filter components by tags. Closes #2920
2018-06-18 21:22:43 +01:00
James Brooks
9accf90c32
Test for status changes before firing event. Fixes #3082
2018-06-17 17:52:34 +01:00
James Brooks
0f40bbd275
Fix my email
2018-06-17 09:52:29 +01:00
Nico Stapelbroek
206022acfd
Fix invalid amount of arguments in CreateIncidentUpdateCommandTest
2018-01-27 22:45:19 +01:00
James Brooks
7a4ec0535d
Fixes part of #2775
2018-01-21 18:49:12 +00:00
James Brooks
b5f6c239b4
Fixes #2730
2017-09-19 14:32:44 +01:00
James Brooks
85c10f1436
Rename controller methods following Laravel's resource controllers
2017-07-26 08:31:11 -04:00
James Brooks
f11c1edeee
Implement creating of meta data and tests
2017-06-13 19:34:50 +01:00
James Brooks
485116b5ce
Rename incident bus
2017-03-18 09:41:33 +00:00
James Brooks
a55575656d
Rename Bus Add to Create
2017-03-18 09:30:36 +00:00
James Brooks
e9c32af672
Apply fixes from StyleCI ( #2403 )
...
[ci skip] [skip ci]
2017-03-04 10:45:03 +00:00
James Brooks
883fdb56dc
Add system status to /status endpoint
2017-03-04 10:43:49 +00:00
James Brooks
8725ab2b9b
Component notifications can be silenced. Closes #2316
2017-02-06 18:59:05 +00:00
James Brooks
edfbb2384f
Components can now be supplied meta data
2016-12-05 19:03:27 +00:00
James Brooks
f5b6919aa3
Default components subscription to null
2016-12-04 17:52:05 +00:00
James Brooks
105cff50b9
Added metric visibility options. Closes #2244
2016-12-04 16:54:36 +00:00
James Brooks
516b761220
Don't clean schedule messages either...
2016-11-14 18:22:36 +00:00
James Brooks
bb56f28b89
Don't clean incident message. Part of #2236
2016-11-14 18:22:10 +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
James Brooks
fe96a00b82
Incident templates cleanup ( #2182 )
...
Clean up Incident Templates, supply incident array to them by default
2016-10-14 08:03:19 +01:00
James Brooks
bed038653a
Standardise @joecohens name in the class headers
2016-10-07 12:25:40 +01:00
James Brooks
c94919f1b9
Backport Incident Updates from v3.0.0
2016-10-06 22:40:56 +01:00
Davide Bellini
7cdd537b42
Fixed groups order on API
...
Issue: if the request use “?sort=order” returns groups ordered by “order DESC”.
This is unexpected.
If I would a reversed order I have to use “sort=order&order=desc”
2016-10-05 09:26:52 +02: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
Graham Campbell
f53e466500
Applied fixes from StyleCI
...
[ci skip] [skip ci]
2016-07-20 14:56:55 -04:00
Graham Campbell
1e24138d7a
Removed extra brackets
2016-07-20 19:54:48 +01:00
Graham Campbell
9120dba237
Fixed verification skipping
2016-07-20 19:52:23 +01:00
James Brooks
503252c3a2
Tidy up integrations, use contracts
2016-07-13 14:33:20 +01:00
James Brooks
fdfebc18fb
Implement the system status api endpoint. Closes #1936
2016-07-13 14:21:57 +01:00
James Brooks
947aa27e40
Move dashboard version check into version api endpoint
2016-06-10 17:27:21 +01:00
James Brooks
715eb02844
Use default_view or view. Fixes #1842
2016-06-03 13:54:26 +01:00
James Brooks
cab030237b
Set an order on metrics via the API. Closes #1874
2016-06-02 10:16:23 +01:00