feat(user-picker): fix REUSE issues

Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
Julien Veyssier 2026-01-14 13:30:07 +01:00
parent b4017c672e
commit af77f5a4b8
No known key found for this signature in database
GPG key ID: 4141FEE162030638
10 changed files with 36 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,8 @@
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info>
<id>user_picker</id>
<name>Profile picker</name>

View file

@ -2,6 +2,10 @@
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserPicker\AppInfo;
use OCA\UserPicker\Listener\UserPickerReferenceListener;

View file

@ -2,6 +2,10 @@
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserPicker\Listener;
use OCA\UserPicker\AppInfo\Application;

View file

@ -2,6 +2,10 @@
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserPicker\Reference;
use OCA\UserPicker\AppInfo\Application;

View file

@ -1,3 +1,8 @@
<!--
- SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="profile-picker">
<div class="profile-picker__heading">

View file

@ -1,3 +1,8 @@
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { NcCustomPickerRenderResult, registerCustomPickerElement, registerWidget } from '@nextcloud/vue/components/NcRichText'
registerWidget('user_picker_profile', async (el, { richObjectType, richObject, accessible }) => {

View file

@ -1,3 +1,8 @@
<!--
- SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div class="profile-reference">
<div class="profile-reference__wrapper">

View file

@ -4,7 +4,6 @@
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserPicker\Reference;
use OCP\Accounts\IAccount;

View file

@ -1,5 +1,9 @@
<?php
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\UserPicker\Tests;
use OCA\UserPicker\AppInfo\Application;