├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── README.md ├── application ├── clicommands │ ├── DaemonCommand.php │ └── OpenapiCommand.php ├── controllers │ ├── ApiController.php │ ├── ChannelController.php │ ├── ChannelsController.php │ ├── ConfigController.php │ ├── ContactController.php │ ├── ContactGroupController.php │ ├── ContactGroupsController.php │ ├── ContactsController.php │ ├── DaemonController.php │ ├── EventController.php │ ├── EventRuleController.php │ ├── EventRulesController.php │ ├── EventsController.php │ ├── IncidentController.php │ ├── IncidentsController.php │ ├── ScheduleController.php │ ├── SchedulesController.php │ ├── SourceController.php │ ├── SourcesController.php │ └── SuggestController.php └── forms │ ├── ChannelForm.php │ ├── ContactGroupForm.php │ ├── DatabaseConfigForm.php │ ├── DeleteSourceForm.php │ ├── EventRuleConfigElements │ ├── ConfigProvider.php │ ├── ConfigProviderInterface.php │ ├── DynamicElements.php │ ├── Escalation.php │ ├── EscalationCondition.php │ ├── EscalationConditions.php │ ├── EscalationRecipient.php │ ├── EscalationRecipients.php │ ├── Escalations.php │ └── NotificationConfigProvider.php │ ├── EventRuleConfigForm.php │ ├── EventRuleForm.php │ ├── MoveRotationForm.php │ ├── RotationConfigForm.php │ ├── ScheduleForm.php │ └── SourceForm.php ├── config └── systemd │ └── icinga-desktop-notifications.service ├── configuration.php ├── doc ├── 01-About.md ├── 02-Installation.md ├── 02-Installation.md.d │ └── From-Source.md ├── 03-Configuration.md ├── 05-Upgrading.md ├── 06-Desktop-Notifications.md ├── 20-REST-API.md ├── api │ ├── api-v1-public.json │ └── v1.md └── res │ ├── notifications-architecture.png │ └── notifications-preview.png ├── library └── Notifications │ ├── Api │ ├── ApiCore.php │ ├── EndpointInterface.php │ ├── Exception │ │ └── InvalidFilterParameterException.php │ ├── Middleware │ │ ├── DispatchMiddleware.php │ │ ├── EndpointExecutionMiddleware.php │ │ ├── ErrorHandlingMiddleware.php │ │ ├── LegacyRequestConversionMiddleware.php │ │ ├── MiddlewarePipeline.php │ │ ├── RoutingMiddleware.php │ │ └── ValidationMiddleware.php │ ├── OpenApiDescriptionElement │ │ ├── OadV1Delete.php │ │ ├── OadV1Get.php │ │ ├── OadV1GetPlural.php │ │ ├── OadV1Post.php │ │ ├── OadV1Put.php │ │ ├── Parameter │ │ │ ├── PathParameter.php │ │ │ └── QueryParameter.php │ │ ├── Response │ │ │ ├── Error404Response.php │ │ │ ├── ErrorResponse.php │ │ │ ├── Example │ │ │ │ └── ResponseExample.php │ │ │ ├── SuccessDataResponse.php │ │ │ └── SuccessResponse.php │ │ └── Schema │ │ │ └── SchemaUUID.php │ ├── OpenApiPreprocessor │ │ ├── AddGlobal401Response.php │ │ └── ConsistentOrder.php │ └── V1 │ │ ├── ApiV1.php │ │ ├── Channels.php │ │ ├── ContactGroups.php │ │ └── Contacts.php │ ├── Common │ ├── Auth.php │ ├── ConfigurationTabs.php │ ├── Database.php │ ├── DetailActions.php │ ├── HttpMethod.php │ ├── Icons.php │ ├── Links.php │ ├── LoadMore.php │ ├── NoSubjectLink.php │ └── PsrLogger.php │ ├── Daemon │ ├── Daemon.php │ ├── Sender.php │ └── Server.php │ ├── Hook │ ├── ObjectsRendererHook.php │ └── V1 │ │ └── SourceHook.php │ ├── Model │ ├── AvailableChannelType.php │ ├── Behavior │ │ ├── IcingaCustomVars.php │ │ ├── IdTagAggregator.php │ │ └── ObjectTags.php │ ├── BrowserSession.php │ ├── Channel.php │ ├── Contact.php │ ├── ContactAddress.php │ ├── Contactgroup.php │ ├── ContactgroupMember.php │ ├── Daemon │ │ ├── Connection.php │ │ ├── Event.php │ │ ├── EventIdentifier.php │ │ └── User.php │ ├── Event.php │ ├── ExtraTag.php │ ├── Incident.php │ ├── IncidentContact.php │ ├── IncidentHistory.php │ ├── ObjectExtraTag.php │ ├── ObjectIdTag.php │ ├── Objects.php │ ├── Rotation.php │ ├── RotationMember.php │ ├── Rule.php │ ├── RuleEscalation.php │ ├── RuleEscalationRecipient.php │ ├── Schedule.php │ ├── Source.php │ ├── Tag.php │ ├── Timeperiod.php │ └── TimeperiodEntry.php │ ├── ProvidedHook │ ├── Notifications │ │ └── ObjectsRenderer.php │ └── SessionStorage.php │ ├── Test │ ├── ApiTestBackends.php │ └── BaseApiV1TestCase.php │ ├── Util │ └── ObjectSuggestionsCursor.php │ ├── View │ ├── ChannelRenderer.php │ ├── ContactRenderer.php │ ├── ContactgroupRenderer.php │ ├── EventRenderer.php │ ├── EventRuleRenderer.php │ ├── IncidentContactRenderer.php │ ├── IncidentHistoryRenderer.php │ ├── IncidentRenderer.php │ ├── ScheduleRenderer.php │ └── SourceRenderer.php │ ├── Web │ ├── Control │ │ └── SearchBar │ │ │ ├── ExtraTagSuggestions.php │ │ │ └── ObjectSuggestions.php │ ├── FilterRenderer.php │ └── Form │ │ ├── ContactForm.php │ │ └── EventRuleDecorator.php │ └── Widget │ ├── Calendar.php │ ├── Calendar │ ├── Attendee.php │ ├── Controls.php │ ├── DayGrid.php │ ├── Entry.php │ ├── MonthGrid.php │ └── WeekGrid.php │ ├── Detail │ ├── EventDetail.php │ ├── IncidentDetail.php │ ├── IncidentQuickActions.php │ ├── ObjectHeader.php │ ├── ScheduleDetail.php │ └── ScheduleDetail │ │ └── Controls.php │ ├── EventSourceBadge.php │ ├── IconBall.php │ ├── ItemList │ ├── LoadMoreObjectList.php │ ├── ObjectList.php │ └── PageSeparatorItem.php │ ├── MemberSuggestions.php │ ├── RuleEscalationRecipientBadge.php │ ├── ShowMore.php │ ├── TimeGrid │ ├── BaseGrid.php │ ├── DaysHeader.php │ ├── DynamicGrid.php │ ├── Entry.php │ ├── EntryProvider.php │ ├── ExtraEntryCount.php │ ├── GridStep.php │ ├── Timescale.php │ └── Util.php │ ├── Timeline.php │ ├── Timeline │ ├── Entry.php │ ├── EntryFlyout.php │ ├── FakeEntry.php │ ├── FutureEntry.php │ ├── Member.php │ ├── MinimalGrid.php │ └── Rotation.php │ └── TimezoneWarning.php ├── module.info ├── phpstan-baseline-standard.neon ├── phpstan.neon ├── public ├── css │ ├── calendar.less │ ├── checkbox-icon.less │ ├── common.less │ ├── detail │ │ ├── event-rule-detail.less │ │ └── incident-detail.less │ ├── event-source-badge.less │ ├── form.less │ ├── list │ │ ├── action-list.less │ │ └── schedule-list.less │ ├── load-more.less │ ├── mixins.less │ ├── quick-actions.less │ ├── schedule.less │ ├── timeline.less │ └── view-mode-switcher.less ├── img │ ├── icinga-notifications-critical.webp │ ├── icinga-notifications-ok.webp │ ├── icinga-notifications-unknown.webp │ ├── icinga-notifications-warning.webp │ └── pictogram │ │ ├── 24-7-dark.jpg │ │ ├── 24-7-light.jpg │ │ ├── multi-dark.jpg │ │ ├── multi-light.jpg │ │ ├── partial-dark.jpg │ │ └── partial-light.jpg └── js │ ├── doc │ ├── NOTIFICATIONS.md │ ├── notifications-arch.puml │ └── notifications-arch.svg │ ├── module.js │ ├── notifications-worker.js │ ├── notifications.js │ └── schedule.js ├── run.php └── test └── php ├── application ├── controllers │ ├── ApiV1ChannelsTest.php │ ├── ApiV1ContactGroupsTest.php │ └── ApiV1ContactsTest.php └── forms │ ├── EventRuleConfigFormTest.php │ └── SourceFormTest.php └── library └── Notifications └── Widget └── CalendarTest.php /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/README.md -------------------------------------------------------------------------------- /application/clicommands/DaemonCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/clicommands/DaemonCommand.php -------------------------------------------------------------------------------- /application/clicommands/OpenapiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/clicommands/OpenapiCommand.php -------------------------------------------------------------------------------- /application/controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ApiController.php -------------------------------------------------------------------------------- /application/controllers/ChannelController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ChannelController.php -------------------------------------------------------------------------------- /application/controllers/ChannelsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ChannelsController.php -------------------------------------------------------------------------------- /application/controllers/ConfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ConfigController.php -------------------------------------------------------------------------------- /application/controllers/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ContactController.php -------------------------------------------------------------------------------- /application/controllers/ContactGroupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ContactGroupController.php -------------------------------------------------------------------------------- /application/controllers/ContactGroupsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ContactGroupsController.php -------------------------------------------------------------------------------- /application/controllers/ContactsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ContactsController.php -------------------------------------------------------------------------------- /application/controllers/DaemonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/DaemonController.php -------------------------------------------------------------------------------- /application/controllers/EventController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/EventController.php -------------------------------------------------------------------------------- /application/controllers/EventRuleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/EventRuleController.php -------------------------------------------------------------------------------- /application/controllers/EventRulesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/EventRulesController.php -------------------------------------------------------------------------------- /application/controllers/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/EventsController.php -------------------------------------------------------------------------------- /application/controllers/IncidentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/IncidentController.php -------------------------------------------------------------------------------- /application/controllers/IncidentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/IncidentsController.php -------------------------------------------------------------------------------- /application/controllers/ScheduleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/ScheduleController.php -------------------------------------------------------------------------------- /application/controllers/SchedulesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/SchedulesController.php -------------------------------------------------------------------------------- /application/controllers/SourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/SourceController.php -------------------------------------------------------------------------------- /application/controllers/SourcesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/SourcesController.php -------------------------------------------------------------------------------- /application/controllers/SuggestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/controllers/SuggestController.php -------------------------------------------------------------------------------- /application/forms/ChannelForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/ChannelForm.php -------------------------------------------------------------------------------- /application/forms/ContactGroupForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/ContactGroupForm.php -------------------------------------------------------------------------------- /application/forms/DatabaseConfigForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/DatabaseConfigForm.php -------------------------------------------------------------------------------- /application/forms/DeleteSourceForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/DeleteSourceForm.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/ConfigProvider.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/ConfigProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/ConfigProviderInterface.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/DynamicElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/DynamicElements.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/Escalation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/Escalation.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/EscalationCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/EscalationCondition.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/EscalationConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/EscalationConditions.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/EscalationRecipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/EscalationRecipient.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/EscalationRecipients.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/EscalationRecipients.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/Escalations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/Escalations.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigElements/NotificationConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigElements/NotificationConfigProvider.php -------------------------------------------------------------------------------- /application/forms/EventRuleConfigForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleConfigForm.php -------------------------------------------------------------------------------- /application/forms/EventRuleForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/EventRuleForm.php -------------------------------------------------------------------------------- /application/forms/MoveRotationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/MoveRotationForm.php -------------------------------------------------------------------------------- /application/forms/RotationConfigForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/RotationConfigForm.php -------------------------------------------------------------------------------- /application/forms/ScheduleForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/ScheduleForm.php -------------------------------------------------------------------------------- /application/forms/SourceForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/application/forms/SourceForm.php -------------------------------------------------------------------------------- /config/systemd/icinga-desktop-notifications.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/config/systemd/icinga-desktop-notifications.service -------------------------------------------------------------------------------- /configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/configuration.php -------------------------------------------------------------------------------- /doc/01-About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/01-About.md -------------------------------------------------------------------------------- /doc/02-Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/02-Installation.md -------------------------------------------------------------------------------- /doc/02-Installation.md.d/From-Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/02-Installation.md.d/From-Source.md -------------------------------------------------------------------------------- /doc/03-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/03-Configuration.md -------------------------------------------------------------------------------- /doc/05-Upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/05-Upgrading.md -------------------------------------------------------------------------------- /doc/06-Desktop-Notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/06-Desktop-Notifications.md -------------------------------------------------------------------------------- /doc/20-REST-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/20-REST-API.md -------------------------------------------------------------------------------- /doc/api/api-v1-public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/api/api-v1-public.json -------------------------------------------------------------------------------- /doc/api/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/api/v1.md -------------------------------------------------------------------------------- /doc/res/notifications-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/res/notifications-architecture.png -------------------------------------------------------------------------------- /doc/res/notifications-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/doc/res/notifications-preview.png -------------------------------------------------------------------------------- /library/Notifications/Api/ApiCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/ApiCore.php -------------------------------------------------------------------------------- /library/Notifications/Api/EndpointInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/EndpointInterface.php -------------------------------------------------------------------------------- /library/Notifications/Api/Exception/InvalidFilterParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Exception/InvalidFilterParameterException.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/DispatchMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/DispatchMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/EndpointExecutionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/EndpointExecutionMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/ErrorHandlingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/ErrorHandlingMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/LegacyRequestConversionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/LegacyRequestConversionMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/MiddlewarePipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/MiddlewarePipeline.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/RoutingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/RoutingMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/Middleware/ValidationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/Middleware/ValidationMiddleware.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/OadV1Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/OadV1Delete.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/OadV1Get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/OadV1Get.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/OadV1GetPlural.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/OadV1GetPlural.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/OadV1Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/OadV1Post.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/OadV1Put.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/OadV1Put.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Parameter/PathParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Parameter/PathParameter.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Parameter/QueryParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Parameter/QueryParameter.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Response/Error404Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Response/Error404Response.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Response/ErrorResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Response/ErrorResponse.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Response/Example/ResponseExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Response/Example/ResponseExample.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Response/SuccessDataResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Response/SuccessDataResponse.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Response/SuccessResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Response/SuccessResponse.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiDescriptionElement/Schema/SchemaUUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiDescriptionElement/Schema/SchemaUUID.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiPreprocessor/AddGlobal401Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiPreprocessor/AddGlobal401Response.php -------------------------------------------------------------------------------- /library/Notifications/Api/OpenApiPreprocessor/ConsistentOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/OpenApiPreprocessor/ConsistentOrder.php -------------------------------------------------------------------------------- /library/Notifications/Api/V1/ApiV1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/V1/ApiV1.php -------------------------------------------------------------------------------- /library/Notifications/Api/V1/Channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/V1/Channels.php -------------------------------------------------------------------------------- /library/Notifications/Api/V1/ContactGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/V1/ContactGroups.php -------------------------------------------------------------------------------- /library/Notifications/Api/V1/Contacts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Api/V1/Contacts.php -------------------------------------------------------------------------------- /library/Notifications/Common/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/Auth.php -------------------------------------------------------------------------------- /library/Notifications/Common/ConfigurationTabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/ConfigurationTabs.php -------------------------------------------------------------------------------- /library/Notifications/Common/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/Database.php -------------------------------------------------------------------------------- /library/Notifications/Common/DetailActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/DetailActions.php -------------------------------------------------------------------------------- /library/Notifications/Common/HttpMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/HttpMethod.php -------------------------------------------------------------------------------- /library/Notifications/Common/Icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/Icons.php -------------------------------------------------------------------------------- /library/Notifications/Common/Links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/Links.php -------------------------------------------------------------------------------- /library/Notifications/Common/LoadMore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/LoadMore.php -------------------------------------------------------------------------------- /library/Notifications/Common/NoSubjectLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/NoSubjectLink.php -------------------------------------------------------------------------------- /library/Notifications/Common/PsrLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Common/PsrLogger.php -------------------------------------------------------------------------------- /library/Notifications/Daemon/Daemon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Daemon/Daemon.php -------------------------------------------------------------------------------- /library/Notifications/Daemon/Sender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Daemon/Sender.php -------------------------------------------------------------------------------- /library/Notifications/Daemon/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Daemon/Server.php -------------------------------------------------------------------------------- /library/Notifications/Hook/ObjectsRendererHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Hook/ObjectsRendererHook.php -------------------------------------------------------------------------------- /library/Notifications/Hook/V1/SourceHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Hook/V1/SourceHook.php -------------------------------------------------------------------------------- /library/Notifications/Model/AvailableChannelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/AvailableChannelType.php -------------------------------------------------------------------------------- /library/Notifications/Model/Behavior/IcingaCustomVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Behavior/IcingaCustomVars.php -------------------------------------------------------------------------------- /library/Notifications/Model/Behavior/IdTagAggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Behavior/IdTagAggregator.php -------------------------------------------------------------------------------- /library/Notifications/Model/Behavior/ObjectTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Behavior/ObjectTags.php -------------------------------------------------------------------------------- /library/Notifications/Model/BrowserSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/BrowserSession.php -------------------------------------------------------------------------------- /library/Notifications/Model/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Channel.php -------------------------------------------------------------------------------- /library/Notifications/Model/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Contact.php -------------------------------------------------------------------------------- /library/Notifications/Model/ContactAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/ContactAddress.php -------------------------------------------------------------------------------- /library/Notifications/Model/Contactgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Contactgroup.php -------------------------------------------------------------------------------- /library/Notifications/Model/ContactgroupMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/ContactgroupMember.php -------------------------------------------------------------------------------- /library/Notifications/Model/Daemon/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Daemon/Connection.php -------------------------------------------------------------------------------- /library/Notifications/Model/Daemon/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Daemon/Event.php -------------------------------------------------------------------------------- /library/Notifications/Model/Daemon/EventIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Daemon/EventIdentifier.php -------------------------------------------------------------------------------- /library/Notifications/Model/Daemon/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Daemon/User.php -------------------------------------------------------------------------------- /library/Notifications/Model/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Event.php -------------------------------------------------------------------------------- /library/Notifications/Model/ExtraTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/ExtraTag.php -------------------------------------------------------------------------------- /library/Notifications/Model/Incident.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Incident.php -------------------------------------------------------------------------------- /library/Notifications/Model/IncidentContact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/IncidentContact.php -------------------------------------------------------------------------------- /library/Notifications/Model/IncidentHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/IncidentHistory.php -------------------------------------------------------------------------------- /library/Notifications/Model/ObjectExtraTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/ObjectExtraTag.php -------------------------------------------------------------------------------- /library/Notifications/Model/ObjectIdTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/ObjectIdTag.php -------------------------------------------------------------------------------- /library/Notifications/Model/Objects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Objects.php -------------------------------------------------------------------------------- /library/Notifications/Model/Rotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Rotation.php -------------------------------------------------------------------------------- /library/Notifications/Model/RotationMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/RotationMember.php -------------------------------------------------------------------------------- /library/Notifications/Model/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Rule.php -------------------------------------------------------------------------------- /library/Notifications/Model/RuleEscalation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/RuleEscalation.php -------------------------------------------------------------------------------- /library/Notifications/Model/RuleEscalationRecipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/RuleEscalationRecipient.php -------------------------------------------------------------------------------- /library/Notifications/Model/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Schedule.php -------------------------------------------------------------------------------- /library/Notifications/Model/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Source.php -------------------------------------------------------------------------------- /library/Notifications/Model/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Tag.php -------------------------------------------------------------------------------- /library/Notifications/Model/Timeperiod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/Timeperiod.php -------------------------------------------------------------------------------- /library/Notifications/Model/TimeperiodEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Model/TimeperiodEntry.php -------------------------------------------------------------------------------- /library/Notifications/ProvidedHook/Notifications/ObjectsRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/ProvidedHook/Notifications/ObjectsRenderer.php -------------------------------------------------------------------------------- /library/Notifications/ProvidedHook/SessionStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/ProvidedHook/SessionStorage.php -------------------------------------------------------------------------------- /library/Notifications/Test/ApiTestBackends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Test/ApiTestBackends.php -------------------------------------------------------------------------------- /library/Notifications/Test/BaseApiV1TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Test/BaseApiV1TestCase.php -------------------------------------------------------------------------------- /library/Notifications/Util/ObjectSuggestionsCursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Util/ObjectSuggestionsCursor.php -------------------------------------------------------------------------------- /library/Notifications/View/ChannelRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/ChannelRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/ContactRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/ContactRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/ContactgroupRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/ContactgroupRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/EventRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/EventRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/EventRuleRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/EventRuleRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/IncidentContactRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/IncidentContactRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/IncidentHistoryRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/IncidentHistoryRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/IncidentRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/IncidentRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/ScheduleRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/ScheduleRenderer.php -------------------------------------------------------------------------------- /library/Notifications/View/SourceRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/View/SourceRenderer.php -------------------------------------------------------------------------------- /library/Notifications/Web/Control/SearchBar/ExtraTagSuggestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Web/Control/SearchBar/ExtraTagSuggestions.php -------------------------------------------------------------------------------- /library/Notifications/Web/Control/SearchBar/ObjectSuggestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Web/Control/SearchBar/ObjectSuggestions.php -------------------------------------------------------------------------------- /library/Notifications/Web/FilterRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Web/FilterRenderer.php -------------------------------------------------------------------------------- /library/Notifications/Web/Form/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Web/Form/ContactForm.php -------------------------------------------------------------------------------- /library/Notifications/Web/Form/EventRuleDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Web/Form/EventRuleDecorator.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/Attendee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/Attendee.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/Controls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/Controls.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/DayGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/DayGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/Entry.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/MonthGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/MonthGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Calendar/WeekGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Calendar/WeekGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/EventDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/EventDetail.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/IncidentDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/IncidentDetail.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/IncidentQuickActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/IncidentQuickActions.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/ObjectHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/ObjectHeader.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/ScheduleDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/ScheduleDetail.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Detail/ScheduleDetail/Controls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Detail/ScheduleDetail/Controls.php -------------------------------------------------------------------------------- /library/Notifications/Widget/EventSourceBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/EventSourceBadge.php -------------------------------------------------------------------------------- /library/Notifications/Widget/IconBall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/IconBall.php -------------------------------------------------------------------------------- /library/Notifications/Widget/ItemList/LoadMoreObjectList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/ItemList/LoadMoreObjectList.php -------------------------------------------------------------------------------- /library/Notifications/Widget/ItemList/ObjectList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/ItemList/ObjectList.php -------------------------------------------------------------------------------- /library/Notifications/Widget/ItemList/PageSeparatorItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/ItemList/PageSeparatorItem.php -------------------------------------------------------------------------------- /library/Notifications/Widget/MemberSuggestions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/MemberSuggestions.php -------------------------------------------------------------------------------- /library/Notifications/Widget/RuleEscalationRecipientBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/RuleEscalationRecipientBadge.php -------------------------------------------------------------------------------- /library/Notifications/Widget/ShowMore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/ShowMore.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/BaseGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/BaseGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/DaysHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/DaysHeader.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/DynamicGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/DynamicGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/Entry.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/EntryProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/EntryProvider.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/ExtraEntryCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/ExtraEntryCount.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/GridStep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/GridStep.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/Timescale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/Timescale.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimeGrid/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimeGrid/Util.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/Entry.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/EntryFlyout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/EntryFlyout.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/FakeEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/FakeEntry.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/FutureEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/FutureEntry.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/Member.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/MinimalGrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/MinimalGrid.php -------------------------------------------------------------------------------- /library/Notifications/Widget/Timeline/Rotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/Timeline/Rotation.php -------------------------------------------------------------------------------- /library/Notifications/Widget/TimezoneWarning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/library/Notifications/Widget/TimezoneWarning.php -------------------------------------------------------------------------------- /module.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/module.info -------------------------------------------------------------------------------- /phpstan-baseline-standard.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/phpstan-baseline-standard.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/phpstan.neon -------------------------------------------------------------------------------- /public/css/calendar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/calendar.less -------------------------------------------------------------------------------- /public/css/checkbox-icon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/checkbox-icon.less -------------------------------------------------------------------------------- /public/css/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/common.less -------------------------------------------------------------------------------- /public/css/detail/event-rule-detail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/detail/event-rule-detail.less -------------------------------------------------------------------------------- /public/css/detail/incident-detail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/detail/incident-detail.less -------------------------------------------------------------------------------- /public/css/event-source-badge.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/event-source-badge.less -------------------------------------------------------------------------------- /public/css/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/form.less -------------------------------------------------------------------------------- /public/css/list/action-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/list/action-list.less -------------------------------------------------------------------------------- /public/css/list/schedule-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/list/schedule-list.less -------------------------------------------------------------------------------- /public/css/load-more.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/load-more.less -------------------------------------------------------------------------------- /public/css/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/mixins.less -------------------------------------------------------------------------------- /public/css/quick-actions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/quick-actions.less -------------------------------------------------------------------------------- /public/css/schedule.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/schedule.less -------------------------------------------------------------------------------- /public/css/timeline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/timeline.less -------------------------------------------------------------------------------- /public/css/view-mode-switcher.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/css/view-mode-switcher.less -------------------------------------------------------------------------------- /public/img/icinga-notifications-critical.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/icinga-notifications-critical.webp -------------------------------------------------------------------------------- /public/img/icinga-notifications-ok.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/icinga-notifications-ok.webp -------------------------------------------------------------------------------- /public/img/icinga-notifications-unknown.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/icinga-notifications-unknown.webp -------------------------------------------------------------------------------- /public/img/icinga-notifications-warning.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/icinga-notifications-warning.webp -------------------------------------------------------------------------------- /public/img/pictogram/24-7-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/24-7-dark.jpg -------------------------------------------------------------------------------- /public/img/pictogram/24-7-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/24-7-light.jpg -------------------------------------------------------------------------------- /public/img/pictogram/multi-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/multi-dark.jpg -------------------------------------------------------------------------------- /public/img/pictogram/multi-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/multi-light.jpg -------------------------------------------------------------------------------- /public/img/pictogram/partial-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/partial-dark.jpg -------------------------------------------------------------------------------- /public/img/pictogram/partial-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/img/pictogram/partial-light.jpg -------------------------------------------------------------------------------- /public/js/doc/NOTIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/doc/NOTIFICATIONS.md -------------------------------------------------------------------------------- /public/js/doc/notifications-arch.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/doc/notifications-arch.puml -------------------------------------------------------------------------------- /public/js/doc/notifications-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/doc/notifications-arch.svg -------------------------------------------------------------------------------- /public/js/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/module.js -------------------------------------------------------------------------------- /public/js/notifications-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/notifications-worker.js -------------------------------------------------------------------------------- /public/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/notifications.js -------------------------------------------------------------------------------- /public/js/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/public/js/schedule.js -------------------------------------------------------------------------------- /run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/run.php -------------------------------------------------------------------------------- /test/php/application/controllers/ApiV1ChannelsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/application/controllers/ApiV1ChannelsTest.php -------------------------------------------------------------------------------- /test/php/application/controllers/ApiV1ContactGroupsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/application/controllers/ApiV1ContactGroupsTest.php -------------------------------------------------------------------------------- /test/php/application/controllers/ApiV1ContactsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/application/controllers/ApiV1ContactsTest.php -------------------------------------------------------------------------------- /test/php/application/forms/EventRuleConfigFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/application/forms/EventRuleConfigFormTest.php -------------------------------------------------------------------------------- /test/php/application/forms/SourceFormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/application/forms/SourceFormTest.php -------------------------------------------------------------------------------- /test/php/library/Notifications/Widget/CalendarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/icinga-notifications-web/HEAD/test/php/library/Notifications/Widget/CalendarTest.php --------------------------------------------------------------------------------