Add existing collection to group

Hey there,

I wonder how to setup the config to tell cockpit that group “author” is allowed to see collection “News” (created by user from group “admin”) and add entries.

The following doesn’t work:

<?php

return [
    # define additional groups
    'groups' => [
        'author' => [
            '$admin' => false,
            '$vars' => [
                'finder.path' => '/storage/upload'
            ],
            'cockpit' => [
                'backend' => true,
                'finder' => false
            ],
            'collections' => [
                'manage' => true,
                'create' => false
            ],
            'News' => [
                'entries_view' => true,
                'entries_create' => true
            ]
        ]
    ],
];

Thanks alot!