# SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors # SPDX-License-Identifier: AGPL-3.0-or-later Feature: maintenance-mode Background: Given Maintenance mode is enabled Then the command was successful Scenario: Accessing /index.php with maintenance mode enabled When requesting "/index.php" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /remote.php/webdav with maintenance mode enabled When requesting "/remote.php/webdav" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /remote.php/dav with maintenance mode enabled When requesting "/remote.php/dav" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /ocs/v1.php with maintenance mode enabled When requesting "/ocs/v1.php" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /ocs/v2.php with maintenance mode enabled When requesting "/ocs/v2.php" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /public.php/webdav with maintenance mode enabled When requesting "/public.php/webdav" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful Scenario: Accessing /public.php/dav with maintenance mode enabled When requesting "/public.php/dav" with "GET" Then the HTTP status code should be "503" Then Maintenance mode is disabled And the command was successful net-better-new-wording-better-than-delete-and-unshare Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/User/DisplayNameCache.php
blob: 40e1c75258916112e5e2dcaafb26e8715ae0ef52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82