Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No resources are shown in the calendar ressource booking tab #3907

Closed
q-wertz opened this issue Jan 22, 2022 · 16 comments · Fixed by #3982
Closed

No resources are shown in the calendar ressource booking tab #3907

q-wertz opened this issue Jan 22, 2022 · 16 comments · Fixed by #3982
Labels
0. to triage Pending approval or rejection bug

Comments

@q-wertz
Copy link

q-wertz commented Jan 22, 2022

Steps to reproduce

  1. Install the Calendar resource management backend
  2. Add some resources (Room, etc.)
  3. In the calendar webview try to add a resource to an event

Expected behaviour

The previously added resources are listed

Actual behaviour

No ressources can be found
image

root@asterix:/var/www/nextcloud# sudo -u www-data php occ calendar-resource:resources:list
Buildings:
+----+-------------------+---------------------------------------------+--------------+-----------------------+
| ID | Name              | Address                                     | Description  | Wheelchair Accessible |
+----+-------------------+---------------------------------------------+--------------+-----------------------+
| 1  | Schlossstr 2      | Schlossstr. 2, Berlin, Germany        |              | no                    |
| 3  | Schlossstr 3      | Schlossstr. 2, Berlin, Germany        | testbuilding | no                    |
+----+-------------------+---------------------------------------------+--------------+-----------------------+
Rooms:
+----+----------+-------------------+------------------------------+------------------------------+--------------+----------------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
| ID | UID      | Name              | Located in                   | Email                        | Room Type    | Contact Person             | Capacity | Room Number | Phone | Video Conferencing | TV | Projector | Whiteboard | Wheelchair Accessible |
+----+----------+-------------------+------------------------------+------------------------------+--------------+----------------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
| 30 | Br2-3/38 | Seminarraum       | Schlossstr. 2, 3rd floor | noreply@secret.de | Meeting room | ins@secret.de   | 16       | 3/38        | yes   | no                 | no | yes       | yes        | no                    |
| 31 | testuid  | Test meeting room | Schlossstr. 3, 2nd floor | secret@yahoo.com            | meeting-room | secret@web.de | 16       |             | no    | no                 | no | no        | no         | no                    |
+----+----------+-------------------+------------------------------+------------------------------+--------------+----------------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
Resources:
+----+--------------+---------------+---------------------+----------------+------------------+
| ID | UID          | Name          | Located in          | Contact Person | Type             |
+----+--------------+---------------+---------------------+----------------+------------------+
| 1  | testresource | resource test | 3 Schlossstr. 3 |                | testresourcetype |
+----+--------------+---------------+---------------------+----------------+------------------+
Vehicles:
+----+-----+------+------------+-------+----------------+------+------+-------+----------+-------+----------+
| ID | UID | Name | Located in | Email | Contact Person | Type | Make | Model | Electric | Range | Capacity |
+----+-----+------+------------+-------+----------------+------+------+-------+----------+-------+----------+
Restrictions:
+----+--------+-----------+---------------+
| ID | Entity | Entity ID | Restricted To |
+----+--------+-----------+---------------+

It looks like they are written to different tables (no idea why there are so many with redundant information):

MariaDB [nextcloud]> SELECT * FROM oc_calendar_resources
    -> ;
+----+------------------------------+--------------+----------------------+---------------+--------------------+
| id | backend_id                   | resource_id  | email                | displayname   | group_restrictions |
+----+------------------------------+--------------+----------------------+---------------+--------------------+
|  1 | calendar_resource_management | testresource | secret@gmail.com | resource test | []                 |
+----+------------------------------+--------------+----------------------+---------------+--------------------+
1 row in set (0.000 sec)

MariaDB [nextcloud]> SELECT * FROM oc_calendar_resources_md;
+----+-------------+----------------------------------------+------------------+
| id | resource_id | key                                    | value            |
+----+-------------+----------------------------------------+------------------+
|  1 |           1 | {http://nextcloud.com/ns}resource-type | testresourcetype |
+----+-------------+----------------------------------------+------------------+
1 row in set (0.000 sec)

MariaDB [nextcloud]> SELECT * FROM oc_calendar_rooms;
+----+------------------------------+-------------+------------------------------+-------------------+--------------------+
| id | backend_id                   | resource_id | email                        | displayname       | group_restrictions |
+----+------------------------------+-------------+------------------------------+-------------------+--------------------+
|  1 | calendar_resource_management | Br2-3/38    | noreply@secret.de | Seminarraum   | []                 |
|  6 | calendar_resource_management | testuid     | secret@yahoo.com            | Test meeting room | []                 |
+----+------------------------------+-------------+------------------------------+-------------------+--------------------+
2 rows in set (0.000 sec)

MariaDB [nextcloud]> SELECT * FROM oc_calendar_rooms_md;
+----+---------+----------------------------------------------------+---------------------------------------------+
| id | room_id | key                                                | value                                       |
+----+---------+----------------------------------------------------+---------------------------------------------+
|  1 |       1 | {http://nextcloud.com/ns}room-type                 | Meeting room                                |
|  2 |       1 | {http://nextcloud.com/ns}room-building-address     | Schlossstr. 2, Berlin, Germany |
|  3 |       1 | {http://nextcloud.com/ns}room-building-story       | 3rd floor                                   |
|  4 |       1 | {http://nextcloud.com/ns}room-features             | PHONE,PROJECTOR,WHITEBOARD                  |
| 28 |       1 | {http://nextcloud.com/ns}room-seating-capacity     | 16                                          |
| 29 |       1 | {http://nextcloud.com/ns}room-building-room-number | 3/38                                        |
| 30 |       6 | {http://nextcloud.com/ns}room-type                 | meeting-room                                |
| 31 |       6 | {http://nextcloud.com/ns}room-seating-capacity     | 16                                          |
| 32 |       6 | {http://nextcloud.com/ns}room-building-address     | Schlossstr. 2, Berlin, Germany |
| 33 |       6 | {http://nextcloud.com/ns}room-building-story       | 2nd floor                                   |
+----+---------+----------------------------------------------------+---------------------------------------------+
10 rows in set (0.001 sec)

MariaDB [nextcloud]> SELECT * FROM oc_calresources_rooms;
+----+----------+----------+-------------------+------------------------------+--------------+----------------------------+----------+-------------+-----------+------------------------+--------+---------------+----------------+--------------------------+
| id | story_id | uid      | display_name      | email                        | room_type    | contact_person_user_id     | capacity | room_number | has_phone | has_video_conferencing | has_tv | has_projector | has_whiteboard | is_wheelchair_accessible |
+----+----------+----------+-------------------+------------------------------+--------------+----------------------------+----------+-------------+-----------+------------------------+--------+---------------+----------------+--------------------------+
| 30 |        2 | Br2-3/38 | Seminarraum   | noreply@secret.de | Meeting room | ins@secret.de   |       16 | 3/38        |         1 |                      0 |      0 |             1 |              1 |                        0 |
| 31 |        6 | testuid  | Test meeting room | secret@yahoo.com            | meeting-room | secret@web.de |       16 | NULL        |         0 |                      0 |      0 |             0 |              0 |                        0 |
+----+----------+----------+-------------------+------------------------------+--------------+----------------------------+----------+-------------+-----------+------------------------+--------+---------------+----------------+--------------------------+
2 rows in set (0.000 sec)

MariaDB [nextcloud]> SELECT * FROM oc_calresources_resources;
+----+-------------+--------------+---------------+----------------------+------------------+------------------------+
| id | building_id | uid          | display_name  | email                | resource_type    | contact_person_user_id |
+----+-------------+--------------+---------------+----------------------+------------------+------------------------+
|  1 |           3 | testresource | resource test | secret@gmail.com | testresourcetype |                        |
+----+-------------+--------------+---------------+----------------------+------------------+------------------------+
1 row in set (0.000 sec)

Also see nextcloud/calendar_resource_management#36

Calendar app

Calendar app version: 3.0.5

CalDAV-clients used: Webcalendar

Client configuration

Browser: Firefox 96.0

Operating system: Ubuntu

Server configuration

Operating system: Ubuntu 20.0.4

Web server: Nginx 1.18

Database: MariaDB (mysql Ver 15.1 Distrib 10.3.32-MariaDB, for debian-linux-gnu (x86_64) using readline 5.2)

PHP version: 7.4

Nextcloud Version: 22.2.3

Updated from an older installed version or fresh install: Updated

List of activated apps:

Enabled:
  - accessibility: 1.8.0
  - activity: 2.15.0
  - admin_audit: 1.12.0
  - appointments: 1.11.11
  - bruteforcesettings: 2.3.0
  - calendar: 3.0.5
  - calendar_resource_management: 0.1.0
  - circles: 22.1.1
  - cloud_federation_api: 1.5.0
  - comments: 1.12.0
  - contacts: 4.0.7
  - dashboard: 7.2.0
  - dav: 1.19.0
  - deck: 1.5.5
  - drawio: 1.0.2
  - federatedfilesharing: 1.12.0
  - federation: 1.12.0
  - files: 1.17.0
  - files_external: 1.13.0
  - files_pdfviewer: 2.3.1
  - files_rightclick: 1.1.0
  - files_sharing: 1.14.0
  - files_trashbin: 1.12.0
  - files_versions: 1.15.0
  - files_videoplayer: 1.11.0
  - firstrunwizard: 2.11.0
  - groupfolders: 10.0.2
  - integration_gitlab: 1.0.3
  - integration_openproject: 1.0.6
  - logreader: 2.7.0
  - lookup_server_connector: 1.10.0
  - news: 17.0.1
  - nextcloud_announcements: 1.11.0
  - notifications: 2.10.1
  - oauth2: 1.10.0
  - password_policy: 1.12.0
  - photos: 1.4.0
  - polls: 3.4.2
  - privacy: 1.6.0
  - provisioning_api: 1.12.0
  - quota_warning: 1.13.0
  - recommendations: 1.1.0
  - serverinfo: 1.12.0
  - settings: 1.4.0
  - sharebymail: 1.12.0
  - support: 1.5.0
  - systemtags: 1.12.0
  - tasks: 0.14.2
  - text: 3.3.0
  - theming: 1.13.0
  - twofactor_backupcodes: 1.11.0
  - updatenotification: 1.12.0
  - user_ldap: 1.12.1
  - user_status: 1.2.0
  - viewer: 1.6.0
  - weather_status: 1.2.0
  - workflowengine: 2.4.0
Disabled:
  - contactsinteraction
  - encryption
  - mail
  - ransomware_protection
  - survey_client

Nextcloud configuration:

{
    "system": {
        "instanceid": "***REMOVED SENSITIVE VALUE***",
        "passwordsalt": "***REMOVED SENSITIVE VALUE***",
        "secret": "***REMOVED SENSITIVE VALUE***",
        "trusted_domains": [
            "nc.mimimi.de",
            "nc.mimimiold.de"
        ],
        "datadirectory": "***REMOVED SENSITIVE VALUE***",
        "dbtype": "mysql",
        "version": "22.2.3.0",
        "overwrite.cli.url": "https:\/\/nc.mimimi.de",
        "dbname": "***REMOVED SENSITIVE VALUE***",
        "dbhost": "***REMOVED SENSITIVE VALUE***",
        "dbport": "",
        "dbtableprefix": "oc_",
        "dbuser": "***REMOVED SENSITIVE VALUE***",
        "dbpassword": "***REMOVED SENSITIVE VALUE***",
        "installed": true,
        "mysql.utf8mb4": true,
        "maintenance": false,
        "session_lifetime": 604800,
        "session_keepalive": true,
        "mail_smtpmode": "smtp",
        "mail_sendmailmode": "smtp",
        "mail_domain": "***REMOVED SENSITIVE VALUE***",
        "mail_from_address": "***REMOVED SENSITIVE VALUE***",
        "mail_smtphost": "***REMOVED SENSITIVE VALUE***",
        "mail_smtpport": "25",
        "default_language": "de_DE",
        "default_locale": "de",
        "default_phone_region": "DE",
        "skeletondirectory": "",
        "loglevel": 2,
        "updater.release.channel": "stable",
        "app_install_overwrite": [
            "drawio"
        ],
        "mail_smtpsecure": "tls",
        "ldapIgnoreNamingRules": false,
        "ldapProviderFactory": "OCA\\User_LDAP\\LDAPProviderFactory",
        "memcache.local": "\\OC\\Memcache\\APCu",
        "memcache.distributed": "\\OC\\Memcache\\Redis",
        "memcache.locking": "\\OC\\Memcache\\Redis",
        "redis": {
            "host": "***REMOVED SENSITIVE VALUE***",
            "port": 0,
            "password": "***REMOVED SENSITIVE VALUE***"
        }
    }
}

Logs

Web server error log (e.g. /var/log/apache)

Nothing in error.log, no relevant entries seem to be in access.log

Log file (data/nextcloud.log)

{"reqId":"784UWH3WBVzr2RXisKMC","level":4,"time":"2022-01-22T12:10:44+00:00","remoteAddr":"89.245.245.105","user":"92F7ED71-5921-4FED-AD86-46812A23B841","app":"webdav","method":"PROPFIND","url":"/remote.php/dav/files/92F7ED71-592>
{"reqId":"dPll8VxZ6C6QVpnlJmIb","level":4,"time":"2022-01-22T12:10:44+00:00","remoteAddr":"89.245.245.105","user":"92F7ED71-5921-4FED-AD86-46812A23B841","app":"webdav","method":"PROPFIND","url":"/remote.php/dav/files/92F7ED71-592>

Browser log

Insert your browser log here, this could for example include:

a) The javascript console log
b) The network log
c) ...
@q-wertz q-wertz added 0. to triage Pending approval or rejection bug labels Jan 22, 2022
@spaetz
Copy link

spaetz commented Jan 25, 2022

Could this be related to my issue nextcloud/calendar_resource_management#44 :
Only small letters in resources can be found (and not capital letters).

@q-wertz
Copy link
Author

q-wertz commented Jan 25, 2022

I started from scratch by deleting all entries and created new ones where no capital letters or spaces are used. Still nothing appearing… 😞

Which NC version are you using?

@spaetz
Copy link

spaetz commented Jan 29, 2022

I am in the stable v23

@q-wertz
Copy link
Author

q-wertz commented Feb 21, 2022

Can someone provide information on a working setup/configuration? So which versions of Server, Calendar & Calendar Ressource management?

And maybe the used commands for adding a ressource?

Is there anything I can check? Any external dependencies etc.?

@q-wertz
Copy link
Author

q-wertz commented Feb 22, 2022

Investigated a little bit more...

Added another floor and few resources with different combinations:

  • From the following code I thought maybe only meeting-room etc. are allowed values
    export function getAllRoomTypes() {
    return [
    { value: 'meeting-room', label: t('calendar', 'Meeting room') },
    { value: 'lecture-hall', label: t('calendar', 'Lecture hall') },
    { value: 'seminar-room', label: t('calendar', 'Seminar room') },
    { value: 'other', label: t('calendar', 'Other') },
    ]
    }
  • From the https://github.com/nextcloud/calendar_resource_management Readme.md it looks like I have to enter numbers for the room type
sudo -u www-data ./occ  calendar-resource:story:create 2 newstory
sudo -u www-data ./occ calendar-resource:room:create 2 "berlin_main_office" "Shared office" "room.berlin.main@spacexyz.com" 0 "demouser" 25 201
sudo -u www-data ./occ calendar-resource:room:create 2 "berlin_main_office2" "Shared office2" "room.berlin.main2@spacexyz.com" "meeting-room" "demouser2" 25 201
sudo -u www-data ./occ calendar-resource:room:create 2 "berlin_main_office3" "Shared office3" "room.berlin.main3@spacexyz.com" "meeting-room" "clemens" 25 201
sudo -u www-data ./occ calendar-resource:room:create 2 "berlin_main_office4" "Shared office4" "room.berlin.main4@spacexyz.com" 1 "clemens" 25 201

In parallel I watched the Sql database. After some time, all entries appeared in the oc_calendar_rooms table AND I was able to find them (So it does not seem to be an issue of a wrong app but more of the browser search/view).

In the logging nothing apears with log level >=1

Few seconds later the search again returned nothing... From time to time I can find the rooms, but not reliable.

nc_resources.mp4

@ChristophWurst
Copy link
Member

Thanks a lot for this debugging session @q-wertz. Very well done. I have to admit I can't see where this randomness comes from. Could you possibly inspect the XHR requests sent to the server? Do they contain the string you put into the search field? There seems to be some debounce logic in place, maybe it swallows some of the characters before the request is sent?

@q-wertz
Copy link
Author

q-wertz commented Feb 22, 2022

Thanks for your response. I think I found now the issue. It works as long as only a single character is entered. (I can now find all of my rooms 🎉 😊)

The reason why I saw it sometimes in the video was as you supposed some kind of debounce issue.
In the request where a full Shared, Sh, Sha, … is sent the server response contains no rooms.
Using S, h, a, r … works quite reliable.

nc_resources2.mp4

If you need the browser log I can provide it to you too, just a lot of stuff that has to be cleared from the log 😅

@ChristophWurst
Copy link
Member

nextcloud/cdav-library#637 could be related. Apparently we match display name and the resource's email address for the search. So if you have a display name string that isn't part of the email then you can't search for that resource.

@q-wertz
Copy link
Author

q-wertz commented Feb 22, 2022

That makes of course more sense :D
So this should be fixed with the next calendar version as far as I understand it?

Thanks for the fix :)

@q-wertz
Copy link
Author

q-wertz commented Mar 1, 2022

Not sure if I am missing something but with Calendar 3.1.0 on NC 22.2.5 I still don't get any suggestions. Can check on NC 23 at home.

What seems strange is that the No results shows up immediately (before the spinner finished).

How can I find out which cdav-library version is in use?

@spaetz
Copy link

spaetz commented Mar 1, 2022

That is weird, I updated to 3.1.0 and resources are now showing up just fine. (using both capital and small letters, so that does not make a difference).

@ChristophWurst
Copy link
Member

How can I find out which cdav-library version is in use?

That should be v1.1 https://github.com/nextcloud/calendar/blob/v3.1.0/package.json#L49

@q-wertz
Copy link
Author

q-wertz commented Mar 1, 2022

Ok. I find now one of two. Maybe a space in the Name is a problem. Will test more.

@ChristophWurst
Copy link
Member

Thanks @q-wertz. Please do and let us know if the space or something else still causes trouble.

@q-wertz
Copy link
Author

q-wertz commented Mar 1, 2022

I added now several rooms. The only one that I can find is the one with ID 38 when I type in test in the search field. Things like Bespr, Be, INS, … do not work.
In the Firefox debugger I also get a error 404 when doing these request. Test gives status 207. No idea what's going on…

Failing request (with e.g. Bespr which should fit all rooms):

<x0:principal-property-search xmlns:x0="DAV:" test="allof">
<x0:property-search>
<x0:prop>
<x0:displayname/></x0:prop>
<x0:match>Bespr</x0:match></x0:property-search>
<x0:prop>
<x0:displayname/>
<x1:calendar-user-type xmlns:x1="urn:ietf:params:xml:ns:caldav"/>
<x1:calendar-user-address-set xmlns:x1="urn:ietf:params:xml:ns:caldav"/>
<x0:principal-URL/>
<x0:alternate-URI-set/>
<x2:email-address xmlns:x2="http://sabredav.org/ns"/>
<x3:language xmlns:x3="http://nextcloud.com/ns"/>
<x1:calendar-home-set xmlns:x1="urn:ietf:params:xml:ns:caldav"/>
<x1:schedule-inbox-URL xmlns:x1="urn:ietf:params:xml:ns:caldav"/>
<x1:schedule-outbox-URL xmlns:x1="urn:ietf:params:xml:ns:caldav"/>
<x3:resource-type xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-type xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-make xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-model xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-is-electric xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-range xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-vehicle-seating-capacity xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-contact-person xmlns:x3="http://nextcloud.com/ns"/>
<x3:resource-contact-person-vcard xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-type xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-seating-capacity xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-building-address xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-building-story xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-building-room-number xmlns:x3="http://nextcloud.com/ns"/>
<x3:room-features xmlns:x3="http://nextcloud.com/ns"/></x0:prop>
<x0:apply-to-principal-collection-set/></x0:principal-property-search>

Response:

<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
  <s:exception>Sabre\DAV\Exception\NotFound</s:exception>
  <s:message>Principal with name 38 not found</s:message>
</d:error>

Output of the resource backend:

root@asterix:/var/www/nextcloud# sudo -u www-data ./occ calendar-resource:resources:list
Buildings:
+----+------+---------------------------------------------+-------------+-----------------------+
| ID | Name | Address                                     | Description | Wheelchair Accessible |
+----+------+---------------------------------------------+-------------+-----------------------+
| 6  | Br2  | secret                                      |             | yes                   |
+----+------+---------------------------------------------+-------------+-----------------------+
Rooms:
+----+------------------------------+----------------------+------------+-------------------------------------------+--------------+-------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
| ID | UID                          | Name                 | Located in | Email                                     | Room Type    | Contact Person    | Capacity | Room Number | Phone | Video Conferencing | TV | Projector | Whiteboard | Wheelchair Accessible |
+----+------------------------------+----------------------+------------+-------------------------------------------+--------------+-------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
| 37 | Besprechungsraum-INS_3/38    | Besprechungsraum INS | Br2, 3     | besprechungsraum3-38@secret.de            | meeting-room | +49 711 685-83401 | 20       | 3/38        | yes   | yes                | no | yes       | no         | yes                   |
| 39 | Besprechungsraum-INS338      | Besprechungsraum INS | Br2, 3     | besprechungsraum338@secret.de             | meeting-room | +49 711 685-83401 | 20       | 3/38        | yes   | yes                | no | yes       | no         | yes                   |
| 40 | Besprechungsraum-INS338-test | BesprechungsraumINS  | Br2, 3     | besprechungsraum338t@secret.de            | meeting-room | +49 711 685-83401 | 20       | 3/38        | yes   | yes                | no | yes       | no         | yes                   |
| 38 | Besprechungsraumtest         | Besprechungsraumtest | Br2, 3     | besprechungsraumtest@secret.de            | meeting-room | +49 711 685-83401 | 20       | 3/38        | yes   | yes                | no | yes       | no         | yes                   |
+----+------------------------------+----------------------+------------+-------------------------------------------+--------------+-------------------+----------+-------------+-------+--------------------+----+-----------+------------+-----------------------+
Resources:
+----+-----+------+------------+----------------+------+
| ID | UID | Name | Located in | Contact Person | Type |
+----+-----+------+------------+----------------+------+
Vehicles:
+----+-----+------+------------+-------+----------------+------+------+-------+----------+-------+----------+
| ID | UID | Name | Located in | Email | Contact Person | Type | Make | Model | Electric | Range | Capacity |
+----+-----+------+------------+-------+----------------+------+------+-------+----------+-------+----------+
Restrictions:
+----+--------+-----------+---------------+
| ID | Entity | Entity ID | Restricted To |
+----+--------+-----------+---------------+

Content of the calendar_rooms sql table

MariaDB [nextcloud]> SELECT * FROM oc_calendar_rooms;
+----+------------------------------+------------------------------+-------------------------------------------+----------------------+--------------------+
| id | backend_id                   | resource_id                  | email                                     | displayname          | group_restrictions |
+----+------------------------------+------------------------------+-------------------------------------------+----------------------+--------------------+
|  9 | calendar_resource_management | Besprechungsraum-INS_3/38    | besprechungsraum3-38@secret.de            | Besprechungsraum INS | []                 |
| 10 | calendar_resource_management | Besprechungsraumtest         | besprechungsraumtest@secret.de            | Besprechungsraumtest | []                 |
| 11 | calendar_resource_management | Besprechungsraum-INS338      | besprechungsraum338@secret.de             | Besprechungsraum INS | []                 |
| 12 | calendar_resource_management | Besprechungsraum-INS338-test | besprechungsraum338t@secret.de            | BesprechungsraumINS  | []                 |
+----+------------------------------+------------------------------+-------------------------------------------+----------------------+--------------------+
4 rows in set (0.000 sec)

@ChristophWurst
Copy link
Member

Please put this into a new ticket.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
0. to triage Pending approval or rejection bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants