Skip to content

Commit 69b73de

Browse files
committed
chore: fix licenses
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 23fc538 commit 69b73de

8 files changed

+27
-53
lines changed

REUSE.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ SPDX-FileCopyrightText = "2024 Nextcloud GmbH and Nextcloud contributors"
4848
SPDX-License-Identifier = "AGPL-3.0-or-later"
4949

5050
[[annotations]]
51-
path = ["img/address-book.svg", "img/circles.svg", "img/clone.svg", "img/eye.svg", "img/language.svg", "img/phone.svg", "img/qrcode.svg", "img/recent-actors.svg", "img/social.svg", "img/sync.svg", "img/up.svg", "img/contacts.svg", "img/app.svg", "img/group.svg"]
51+
path = ["img/address-book.svg", "img/circles.svg", "img/clone.svg", "img/eye.svg", "img/language.svg", "img/phone.svg", "img/qrcode.svg", "img/recent-actors.svg", "img/social.svg", "img/sync.svg", "img/up.svg", "img/contacts.svg", "img/app.svg", "img/group.svg", "img/profile.svg", "img/profile-dark.svg"]
5252
precedence = "aggregate"
5353
SPDX-FileCopyrightText = "2018-2024 Google LLC"
5454
SPDX-License-Identifier = "Apache-2.0"

img/LICENSES.md

-8
This file was deleted.

lib/Listener/ProfilePickerReferenceListener.php

+4-22
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
11
<?php
2-
3-
declare(strict_types=1);
4-
52
/**
6-
* @copyright Copyright (c) 2023 Andrey Borysenko <[email protected]>
7-
*
8-
* @author 2023 Andrey Borysenko <[email protected]>
9-
*
10-
* @license AGPL-3.0-or-later
11-
*
12-
* This program is free software: you can redistribute it and/or modify
13-
* it under the terms of the GNU Affero General Public License as
14-
* published by the Free Software Foundation, either version 3 of the
15-
* License, or (at your option) any later version.
16-
*
17-
* This program is distributed in the hope that it will be useful,
18-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
* GNU Affero General Public License for more details.
21-
*
22-
* You should have received a copy of the GNU Affero General Public License
23-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
24-
*
3+
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
4+
* SPDX-License-Identifier: AGPL-3.0-or-later
255
*/
266

7+
declare(strict_types=1);
8+
279
namespace OCA\Contacts\Listener;
2810

2911
use OCA\Contacts\AppInfo\Application;

lib/Reference/ProfilePickerReferenceProvider.php

+4-22
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
11
<?php
2-
3-
declare(strict_types=1);
4-
52
/**
6-
* @copyright Copyright (c) 2023 Andrey Borysenko <[email protected]>
7-
*
8-
* @author 2023 Andrey Borysenko <[email protected]>
9-
*
10-
* @license AGPL-3.0-or-later
11-
*
12-
* This program is free software: you can redistribute it and/or modify
13-
* it under the terms of the GNU Affero General Public License as
14-
* published by the Free Software Foundation, either version 3 of the
15-
* License, or (at your option) any later version.
16-
*
17-
* This program is distributed in the hope that it will be useful,
18-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20-
* GNU Affero General Public License for more details.
21-
*
22-
* You should have received a copy of the GNU Affero General Public License
23-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
24-
*
3+
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
4+
* SPDX-License-Identifier: AGPL-3.0-or-later
255
*/
266

7+
declare(strict_types=1);
8+
279
namespace OCA\Contacts\Reference;
2810

2911
use OCA\Contacts\AppInfo\Application;

src/components/ProfilePicker/ProfilePickerReferenceWidget.vue

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
5+
16
<template>
27
<div class="profile-reference">
38
<div class="profile-reference__wrapper">

src/components/ProfilePicker/ProfilesCustomPicker.vue

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<!--
2+
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
3+
- SPDX-License-Identifier: AGPL-3.0-or-later
4+
-->
5+
16
<template>
27
<div class="profile-picker">
38
<div class="profile-picker__heading">

src/reference.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/**
2+
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
3+
* SPDX-License-Identifier: AGPL-3.0-or-later
4+
*/
15
import { registerWidget, registerCustomPickerElement, NcCustomPickerRenderResult } from '@nextcloud/vue/dist/Components/NcRichText.js'
26

37
registerWidget('users_picker_profile', async (el, { richObjectType, richObject, accessible }) => {

tests/unit/Reference/ProfilePickerReferenceProviderTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?php
2+
/**
3+
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
4+
* SPDX-License-Identifier: AGPL-3.0-or-later
5+
*/
26

37
namespace OCA\Contacts\Reference;
48

0 commit comments

Comments
 (0)