From 7836eedf0c0764f6eb1eabdb1f763b732dd874e0 Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Mon, 21 Feb 2022 13:57:53 +0100 Subject: [PATCH 01/20] [#40228] amended apispec for changes to file links - https://community.openproject.org/work_packages/40228 - added schema for work packages collection - moved Read and Delete of file links by id out of work package context - fixed file link schema to fit reading and creating - fixed validation warning about exclusiveMinimum --- .redocly.lint-ignore.yaml | 3 +- .../components/schemas/file_link_model.yml | 36 +- .../components/schemas/project_model.yml | 3 +- .../components/schemas/work_package_model.yml | 526 +++++++++--------- .../schemas/work_packages_model.yml | 54 +- docs/api/apiv3/openapi-spec.yml | 18 +- ...rk_package_file_link.yml => file_link.yml} | 16 +- ..._file_link_open.yml => file_link_open.yml} | 9 +- .../paths/work_package_file_link_download.yml | 49 -- .../apiv3/paths/work_package_file_links.yml | 16 +- docs/api/apiv3/paths/work_packages.yml | 2 + 11 files changed, 330 insertions(+), 402 deletions(-) rename docs/api/apiv3/paths/{work_package_file_link.yml => file_link.yml} (88%) rename docs/api/apiv3/paths/{work_package_file_link_open.yml => file_link_open.yml} (85%) delete mode 100644 docs/api/apiv3/paths/work_package_file_link_download.yml diff --git a/.redocly.lint-ignore.yaml b/.redocly.lint-ignore.yaml index 94a8ecedfc..a5584d47a1 100644 --- a/.redocly.lint-ignore.yaml +++ b/.redocly.lint-ignore.yaml @@ -3,7 +3,6 @@ tmp/oas-generated.yml: - '#/info' operation-2xx-response: - '#/paths/~1api~1v3~1work_packages~1{id}~1relations/get/responses' - - '#/paths/~1api~1v3~1work_packages~1{id}~1file_links~1{file_link_id}~1download/get/responses' - - '#/paths/~1api~1v3~1work_packages~1{id}~1file_links~1{file_link_id}~1open/get/responses' + - '#/paths/~1api~1v3~1file_links~1{file_link_id}~1open/get/responses' operation-4xx-response: - '#/paths/~1api~1v3~1work_packages~1{id}~1relations/get/responses' \ No newline at end of file diff --git a/docs/api/apiv3/components/schemas/file_link_model.yml b/docs/api/apiv3/components/schemas/file_link_model.yml index a74d99a756..bfe4addb39 100644 --- a/docs/api/apiv3/components/schemas/file_link_model.yml +++ b/docs/api/apiv3/components/schemas/file_link_model.yml @@ -2,9 +2,8 @@ --- type: object required: - - id - - _type - originData + - _links properties: id: type: integer @@ -41,16 +40,6 @@ properties: - $ref: './work_package_model.yml' _links: type: object - required: - - self - - storage - - container - - creator - - delete - - downloadLocation - - staticDownloadLocation - - originOpen - - staticOriginOpen properties: self: allOf: @@ -67,7 +56,6 @@ properties: The storage resource of the linked file. **Resource**: Storage - readOnly: true storageUrl: allOf: - $ref: './link.yml' @@ -100,22 +88,6 @@ properties: - description: |- The uri to delete the file link. - **Resource**: N/A - readOnly: true - downloadLocation: - allOf: - - $ref: './link.yml' - - description: |- - The uri to download the origin file from. - - **Resource**: N/A - readOnly: true - staticDownloadLocation: - allOf: - - $ref: './link.yml' - - description: |- - A static uri to download the origin filefrom the storage. Responds with a redirect. - **Resource**: N/A readOnly: true originOpen: @@ -200,12 +172,6 @@ example: delete: href: /api/v3/work_package/17/file_links/1337 title: file link delete API - downloadLocation: - href: https://nextcloud.deathstar.rocks/index.php/dl?fileid=5503 - title: file download - staticDownloadLocation: - href: /api/v3/work_package/17/file_links/1337/download - title: file link static download API originOpen: href: https://nextcloud.deathstar.rocks/index.php/f?fileid=5503 title: file open diff --git a/docs/api/apiv3/components/schemas/project_model.yml b/docs/api/apiv3/components/schemas/project_model.yml index 020ee5792f..2a3115025b 100644 --- a/docs/api/apiv3/components/schemas/project_model.yml +++ b/docs/api/apiv3/components/schemas/project_model.yml @@ -5,8 +5,7 @@ properties: id: type: integer description: Projects' id - minimum: 0 - exclusiveMinimum: true + minimum: 1 identifier: type: string name: diff --git a/docs/api/apiv3/components/schemas/work_package_model.yml b/docs/api/apiv3/components/schemas/work_package_model.yml index 1ac667e5ee..e2be36c4e6 100644 --- a/docs/api/apiv3/components/schemas/work_package_model.yml +++ b/docs/api/apiv3/components/schemas/work_package_model.yml @@ -2,15 +2,14 @@ --- type: object required: -- subject -- type + - subject + - _links properties: id: type: integer description: Work package id readOnly: true - minimum: 0 - exclusiveMinimum: true + minimum: 1 lockVersion: type: integer description: The version of the item as used for optimistic locking @@ -18,14 +17,15 @@ properties: subject: type: string description: Work package subject - type: + _type: type: string - description: Name of the work package's type + enum: + - WorkPackage readOnly: true description: allOf: - - "$ref": "./formattable.yml" - - description: The work package description + - "$ref": "./formattable.yml" + - description: The work package description scheduleManually: type: boolean description: If false (default) schedule automatically. @@ -91,308 +91,308 @@ properties: _links: type: object required: - - self - - schema - - ancestors - - attachments - - author - - children - - priority - - project - - status - - type + - self + - schema + - ancestors + - attachments + - author + - children + - priority + - project + - status + - type properties: addAttachment: allOf: - - "$ref": "./link.yml" - - description: |- - Attach a file to the WP - - # Conditions - - **Permission**: edit work package - readOnly: true + - "$ref": "./link.yml" + - description: |- + Attach a file to the WP + + # Conditions + + **Permission**: edit work package + readOnly: true addComment: allOf: - - "$ref": "./link.yml" - - description: |- - Post comment to WP - - # Conditions - - **Permission**: add work package notes - readOnly: true + - "$ref": "./link.yml" + - description: |- + Post comment to WP + + # Conditions + + **Permission**: add work package notes + readOnly: true addRelation: allOf: - - "$ref": "./link.yml" - - description: |- - Adds a relation to this work package. - - # Conditions - - **Permission**: manage wp relations - readOnly: true + - "$ref": "./link.yml" + - description: |- + Adds a relation to this work package. + + # Conditions + + **Permission**: manage wp relations + readOnly: true addWatcher: allOf: - - "$ref": "./link.yml" - - description: |- - Add any user to WP watchers - - # Conditions - - **Permission**: add watcher - readOnly: true + - "$ref": "./link.yml" + - description: |- + Add any user to WP watchers + + # Conditions + + **Permission**: add watcher + readOnly: true customActions: allOf: - - "$ref": "./link.yml" - - description: Collection of predefined changes that can be applied to the - work package - readOnly: true + - "$ref": "./link.yml" + - description: Collection of predefined changes that can be applied to the + work package + readOnly: true previewMarkup: allOf: - - "$ref": "./link.yml" - - description: Post markup (in markdown) here to receive an HTML-rendered - response - readOnly: true + - "$ref": "./link.yml" + - description: Post markup (in markdown) here to receive an HTML-rendered + response + readOnly: true removeWatcher: allOf: - - "$ref": "./link.yml" - - description: |- - Remove any user from WP watchers - - # Conditions - - **Permission**: delete watcher - readOnly: true + - "$ref": "./link.yml" + - description: |- + Remove any user from WP watchers + + # Conditions + + **Permission**: delete watcher + readOnly: true unwatch: allOf: - - "$ref": "./link.yml" - - description: |- - Remove current user from WP watchers - - # Conditions - - logged in; watching - readOnly: true + - "$ref": "./link.yml" + - description: |- + Remove current user from WP watchers + + # Conditions + + logged in; watching + readOnly: true update: allOf: - - "$ref": "./link.yml" - - description: |- - Form endpoint that aids in preparing and performing edits on a WP - - # Conditions - - **Permission**: edit work package - readOnly: true + - "$ref": "./link.yml" + - description: |- + Form endpoint that aids in preparing and performing edits on a WP + + # Conditions + + **Permission**: edit work package + readOnly: true updateImmediately: allOf: - - "$ref": "./link.yml" - - description: |- - Directly perform edits on a work package - - # Conditions - - **Permission**: edit work package - readOnly: true + - "$ref": "./link.yml" + - description: |- + Directly perform edits on a work package + + # Conditions + + **Permission**: edit work package + readOnly: true watch: allOf: - - "$ref": "./link.yml" - - description: |- - Add current user to WP watchers - - # Conditions - - logged in; not watching - readOnly: true + - "$ref": "./link.yml" + - description: |- + Add current user to WP watchers + + # Conditions + + logged in; not watching + readOnly: true self: allOf: - - "$ref": "./link.yml" - - description: |- - This work package - - **Resource**: WorkPackage - readOnly: true + - "$ref": "./link.yml" + - description: |- + This work package + + **Resource**: WorkPackage + readOnly: true schema: allOf: - - "$ref": "./link.yml" - - description: |- - The schema of this work package - - **Resource**: Schema - readOnly: true + - "$ref": "./link.yml" + - description: |- + The schema of this work package + + **Resource**: Schema + readOnly: true ancestors: allOf: - - "$ref": "./link.yml" - - description: |- - Array of all visible ancestors of the work package, with the root node being the first element - - **Resource**: Collection - - # Conditions - - **Permission** view work packages - readOnly: true + - "$ref": "./link.yml" + - description: |- + Array of all visible ancestors of the work package, with the root node being the first element + + **Resource**: Collection + + # Conditions + + **Permission** view work packages + readOnly: true attachments: allOf: - - "$ref": "./link.yml" - - description: |- - The files attached to this work package - - **Resource**: Collection + - "$ref": "./link.yml" + - description: |- + The files attached to this work package + + **Resource**: Collection author: allOf: - - "$ref": "./link.yml" - - description: |- - The person that created the work package - - **Resource**: User - readOnly: true + - "$ref": "./link.yml" + - description: |- + The person that created the work package + + **Resource**: User + readOnly: true assignee: allOf: - - "$ref": "./link.yml" - - description: |- - The person that is intended to work on the work package - - **Resource**: User + - "$ref": "./link.yml" + - description: |- + The person that is intended to work on the work package + + **Resource**: User availableWatchers: allOf: - - "$ref": "./link.yml" - - description: |- - All users that can be added to the work package as watchers. - - **Resource**: User - - # Conditions - - **Permission** add work package watchers - readOnly: true + - "$ref": "./link.yml" + - description: |- + All users that can be added to the work package as watchers. + + **Resource**: User + + # Conditions + + **Permission** add work package watchers + readOnly: true budget: allOf: - - "$ref": "./link.yml" - - description: |- - The budget this work package is associated to - - **Resource**: Budget - - # Conditions - - **Permission** view cost objects + - "$ref": "./link.yml" + - description: |- + The budget this work package is associated to + + **Resource**: Budget + + # Conditions + + **Permission** view cost objects category: allOf: - - "$ref": "./link.yml" - - description: |- - The category of the work package - - **Resource**: Category + - "$ref": "./link.yml" + - description: |- + The category of the work package + + **Resource**: Category children: allOf: - - "$ref": "./link.yml" - - description: |- - Array of all visible children of the work package - - **Resource**: Collection - - # Conditions - - **Permission** view work packages - readOnly: true + - "$ref": "./link.yml" + - description: |- + Array of all visible children of the work package + + **Resource**: Collection + + # Conditions + + **Permission** view work packages + readOnly: true parent: allOf: - - "$ref": "./link.yml" - - description: |- - Parent work package - - **Resource**: WorkPackage + - "$ref": "./link.yml" + - description: |- + Parent work package + + **Resource**: WorkPackage priority: allOf: - - "$ref": "./link.yml" - - description: |- - The priority of the work package - - **Resource**: Priority + - "$ref": "./link.yml" + - description: |- + The priority of the work package + + **Resource**: Priority project: allOf: - - "$ref": "./link.yml" - - description: |- - The project to which the work package belongs - - **Resource**: Project + - "$ref": "./link.yml" + - description: |- + The project to which the work package belongs + + **Resource**: Project responsible: allOf: - - "$ref": "./link.yml" - - description: |- - The person that is responsible for the overall outcome - - **Resource**: User + - "$ref": "./link.yml" + - description: |- + The person that is responsible for the overall outcome + + **Resource**: User relations: allOf: - - "$ref": "./link.yml" - - description: |- - Relations this work package is involved in - - **Resource**: Relation - - # Conditions - - **Permission** view work packages - readOnly: true + - "$ref": "./link.yml" + - description: |- + Relations this work package is involved in + + **Resource**: Relation + + # Conditions + + **Permission** view work packages + readOnly: true revisions: allOf: - - "$ref": "./link.yml" - - description: |- - Revisions that are referencing the work package - - **Resource**: Revision - - # Conditions - - **Permission** view changesets - readOnly: true + - "$ref": "./link.yml" + - description: |- + Revisions that are referencing the work package + + **Resource**: Revision + + # Conditions + + **Permission** view changesets + readOnly: true status: allOf: - - "$ref": "./link.yml" - - description: |- - The current status of the work package - - **Resource**: Status + - "$ref": "./link.yml" + - description: |- + The current status of the work package + + **Resource**: Status timeEntries: allOf: - - "$ref": "./link.yml" - - description: |- - All time entries logged on the work package. Please note that this is a link to an HTML resource for now and as such, the link is subject to change. - - **Resource**: N/A - - # Conditions - - **Permission** view time entries - readOnly: true + - "$ref": "./link.yml" + - description: |- + All time entries logged on the work package. Please note that this is a link to an HTML resource for now and as such, the link is subject to change. + + **Resource**: N/A + + # Conditions + + **Permission** view time entries + readOnly: true type: allOf: - - "$ref": "./link.yml" - - description: |- - The type of the work package - - **Resource**: Type + - "$ref": "./link.yml" + - description: |- + The type of the work package + + **Resource**: Type version: allOf: - - "$ref": "./link.yml" - - description: |- - The version associated to the work package - - **Resource**: Version + - "$ref": "./link.yml" + - description: |- + The version associated to the work package + + **Resource**: Version watchers: allOf: - - "$ref": "./link.yml" - - description: |- - All users that are currently watching this work package - - **Resource**: Collection - - # Conditions - - **Permission** view work package watchers - readOnly: true + - "$ref": "./link.yml" + - description: |- + All users that are currently watching this work package + + **Resource**: Collection + + # Conditions + + **Permission** view work package watchers + readOnly: true example: _type: WorkPackage _links: @@ -426,12 +426,12 @@ example: href: "/api/v3/users/1" title: OpenProject Admin - admin customActions: - - href: "/api/v3/work_packages/1528/custom_actions/153/execute" - method: post - title: Reset - - href: "/api/v3/work_packages/1528/custom_actions/94/execute" - method: post - title: Forward to accounting + - href: "/api/v3/work_packages/1528/custom_actions/153/execute" + method: post + title: Reset + - href: "/api/v3/work_packages/1528/custom_actions/94/execute" + method: post + title: Forward to accounting responsible: href: "/api/v3/users/23" title: Laron Leuschke - Alaina5788 @@ -496,15 +496,15 @@ example: href: "/api/v3/categories/1298" title: eligend isi children: - - href: "/api/v3/work_packages/1529" - title: Write API documentation + - href: "/api/v3/work_packages/1529" + title: Write API documentation ancestors: - - href: "/api/v3/work_packages/1290" - title: Root node of hierarchy - - href: "/api/v3/work_packages/1291" - title: Intermediate node of hierarchy - - href: "/api/v3/work_packages/1298" - title: nisi eligendi officiis eos delectus quis voluptas dolores + - href: "/api/v3/work_packages/1290" + title: Root node of hierarchy + - href: "/api/v3/work_packages/1291" + title: Intermediate node of hierarchy + - href: "/api/v3/work_packages/1298" + title: nisi eligendi officiis eos delectus quis voluptas dolores timeEntries: href: "/work_packages/1528/time_entries" type: text/html @@ -520,10 +520,10 @@ example: raw: Develop super cool OpenProject API. html: "

Develop super cool OpenProject API.

" scheduleManually: false - startDate: - dueDate: - derivedStartDate: - derivedDueDate: + startDate: + dueDate: + derivedStartDate: + derivedDueDate: estimatedTime: PT2H derivedEstimatedTime: PT10H percentageDone: 0 diff --git a/docs/api/apiv3/components/schemas/work_packages_model.yml b/docs/api/apiv3/components/schemas/work_packages_model.yml index 77edb63a12..10a740f585 100644 --- a/docs/api/apiv3/components/schemas/work_packages_model.yml +++ b/docs/api/apiv3/components/schemas/work_packages_model.yml @@ -1,5 +1,35 @@ # Schema: Work_PackagesModel --- +allOf: + - "$ref": "./collection_model.yml" + - type: object + required: + - _links + - _embedded + properties: + _links: + type: object + required: + - self + properties: + self: + allOf: + - "$ref": "./link.yml" + - description: |- + The watcher list + + **Resource**: WatchersModel + readOnly: true + _embedded: + type: object + required: + - elements + properties: + elements: + type: array + items: + $ref: './work_package_model.yml' + type: object example: _links: @@ -10,15 +40,15 @@ example: _type: Collection _embedded: elements: - - _type: WorkPackage - _links: - self: - href: "/api/v3/work_packages/1" - id: 1 - subject: Skipped other properties for brevity - - _type: WorkPackage - _links: - self: - href: "/api/v3/work_packages/2" - id: 2 - subject: Skipped other properties for brevity + - _hint: Work package resource shortened for brevity + _type: WorkPackage + _links: + self: + href: "/api/v3/work_packages/1" + id: 1 + - _hint: Work package resource shortened for brevity + _type: WorkPackage + _links: + self: + href: "/api/v3/work_packages/2" + id: 2 diff --git a/docs/api/apiv3/openapi-spec.yml b/docs/api/apiv3/openapi-spec.yml index 945eb29e72..6eed2a1cdf 100644 --- a/docs/api/apiv3/openapi-spec.yml +++ b/docs/api/apiv3/openapi-spec.yml @@ -182,6 +182,10 @@ paths: "$ref": "./paths/example_schema.yml" "/api/v3/examples": "$ref": "./paths/examples.yml" + "/api/v3/file_links/{id}": + "$ref": "./paths/file_link.yml" + "/api/v3/file_links/{id}/open": + "$ref": "./paths/file_link_open.yml" "/api/v3/grids": "$ref": "./paths/grids.yml" "/api/v3/grids/form": @@ -396,12 +400,6 @@ paths: "$ref": "./paths/work_package_available_watchers.yml" "/api/v3/work_packages/{id}/file_links": "$ref": "./paths/work_package_file_links.yml" - "/api/v3/work_packages/{id}/file_links/{file_link_id}": - "$ref": "./paths/work_package_file_link.yml" - "/api/v3/work_packages/{id}/file_links/{file_link_id}/download": - "$ref": "./paths/work_package_file_link_download.yml" - "/api/v3/work_packages/{id}/file_links/{file_link_id}/open": - "$ref": "./paths/work_package_file_link_open.yml" "/api/v3/work_packages/{id}/form": "$ref": "./paths/work_package_form.yml" "/api/v3/work_packages/{id}/revisions": @@ -751,16 +749,8 @@ components: "$ref": "./components/schemas/wiki_page_model.yml" Work_PackageModel: "$ref": "./components/schemas/work_package_model.yml" - Work_Package_Create_Form: - "$ref": "./components/schemas/work_package_create_form.yml" - Work_Package_Create_Form_For_Project: - "$ref": "./components/schemas/work_package_create_form_for_project.yml" - Work_Package_Edit_Form: - "$ref": "./components/schemas/work_package_edit_form.yml" Work_Package_Relation_FormModel: "$ref": "./components/schemas/work_package_relation_form_model.yml" - Work_Package_Schema: - "$ref": "./components/schemas/work_package_schema.yml" Work_Package_SchemasModel: "$ref": "./components/schemas/work_package_schemas_model.yml" Work_Package_activitiesModel: diff --git a/docs/api/apiv3/paths/work_package_file_link.yml b/docs/api/apiv3/paths/file_link.yml similarity index 88% rename from docs/api/apiv3/paths/work_package_file_link.yml rename to docs/api/apiv3/paths/file_link.yml index 4ad6a7f432..28f920b6b2 100644 --- a/docs/api/apiv3/paths/work_package_file_link.yml +++ b/docs/api/apiv3/paths/file_link.yml @@ -1,4 +1,4 @@ -# /api/v3/work_packages/{id}/file_links/{file_link_id} +# /api/v3/file_links/{id} --- get: summary: Gets a file link. @@ -10,13 +10,6 @@ get: Gets a single file link resource of a work package. parameters: - name: id - description: Work package id - in: path - required: true - schema: - type: integer - example: 1337 - - name: file_link_id description: File link id in: path required: true @@ -56,13 +49,6 @@ delete: The request contains only the file link identifier as a path parameter. No request body is needed. parameters: - name: id - description: Work package id - in: path - required: true - schema: - type: integer - example: 1337 - - name: file_link_id description: File link id in: path required: true diff --git a/docs/api/apiv3/paths/work_package_file_link_open.yml b/docs/api/apiv3/paths/file_link_open.yml similarity index 85% rename from docs/api/apiv3/paths/work_package_file_link_open.yml rename to docs/api/apiv3/paths/file_link_open.yml index bb95114d01..37aea62438 100644 --- a/docs/api/apiv3/paths/work_package_file_link_open.yml +++ b/docs/api/apiv3/paths/file_link_open.yml @@ -1,4 +1,4 @@ -# /api/v3/work_packages/{id}/file_links/{file_link_id}/open +# /api/v3/file_links/{id}/open --- get: summary: Creates an opening uri of the linked file. @@ -11,13 +11,6 @@ get: always is located on the origin storage itself. parameters: - name: id - description: Work package id - in: path - required: true - schema: - type: integer - example: 1337 - - name: file_link_id description: File link id in: path required: true diff --git a/docs/api/apiv3/paths/work_package_file_link_download.yml b/docs/api/apiv3/paths/work_package_file_link_download.yml deleted file mode 100644 index feb0fa2ec7..0000000000 --- a/docs/api/apiv3/paths/work_package_file_link_download.yml +++ /dev/null @@ -1,49 +0,0 @@ -# /api/v3/work_packages/{id}/file_links/{file_link_id}/download ---- -get: - summary: Creates a download uri of the linked file. - operationId: Work_Package_File_Link_Download - tags: - - Work Packages - - File links - description: |- - Creates a download uri of the origin file linked by the given file link. This uri depends on the storage type and - always is located on the origin storage itself. - parameters: - - name: id - description: Work package id - in: path - required: true - schema: - type: integer - example: 1337 - - name: file_link_id - description: File link id - in: path - required: true - schema: - type: integer - example: 42 - responses: - '303': - headers: - Location: - schema: - type: string - format: uri - description: |- - Returned if the request was successful. In the `Location` header is the uri where the client can download the - origin file from the storage. - '404': - content: - application/hal+json: - schema: - $ref: "../components/schemas/error_response.yml" - example: - _type: Error - errorIdentifier: urn:openproject-org:api:v3:errors:NotFound - message: The requested resource could not be found. - description: |- - Returned if the work package does not exist or the client does not have sufficient permissions to see it. - - **Required permission:** view work package, view file links diff --git a/docs/api/apiv3/paths/work_package_file_links.yml b/docs/api/apiv3/paths/work_package_file_links.yml index 7e42121fd2..644645afab 100644 --- a/docs/api/apiv3/paths/work_package_file_links.yml +++ b/docs/api/apiv3/paths/work_package_file_links.yml @@ -1,4 +1,4 @@ -# /api/v3/work_packages/{id}/file_links/ +# /api/v3/work_packages/{id}/file_links --- post: summary: Creates file links. @@ -69,7 +69,7 @@ post: _links: storageUrl: href: https://nextcloud.deathstar.rocks/ - + responses: '201': description: Created @@ -140,6 +140,18 @@ post: Returned if the work package does not exist or the client does not have sufficient permissions to see it. **Required permission:** view work package, view file links + '422': + content: + application/hal+json: + schema: + $ref: "../components/schemas/error_response.yml" + example: + _type: Error + errorIdentifier: urn:openproject-org:api:v3:errors:PropertyConstraintViolation + message: The request was invalid. File Link logo.png - Storage was invalid. + description: |- + Occurs if the request body was correctly formatted, but some properties lead to errors in the validation + process. This happens e.g. if the provided storage url is not available on the server. get: summary: Gets all file links of a work package operationId: Work_Package_Get_File_Links diff --git a/docs/api/apiv3/paths/work_packages.yml b/docs/api/apiv3/paths/work_packages.yml index 390f466ed8..cbfc974f1f 100644 --- a/docs/api/apiv3/paths/work_packages.yml +++ b/docs/api/apiv3/paths/work_packages.yml @@ -47,6 +47,8 @@ get: - group - id - includes + - linkable_to_storage_id + - linkable_to_storage_url - manual_sort - milestone - only_subproject From 2b5f525c56f2de41848011bbf21461649eea494a Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Mon, 21 Feb 2022 14:04:40 +0100 Subject: [PATCH 02/20] [#40228] added empty newline --- .redocly.lint-ignore.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.redocly.lint-ignore.yaml b/.redocly.lint-ignore.yaml index a5584d47a1..03cef18077 100644 --- a/.redocly.lint-ignore.yaml +++ b/.redocly.lint-ignore.yaml @@ -5,4 +5,4 @@ tmp/oas-generated.yml: - '#/paths/~1api~1v3~1work_packages~1{id}~1relations/get/responses' - '#/paths/~1api~1v3~1file_links~1{file_link_id}~1open/get/responses' operation-4xx-response: - - '#/paths/~1api~1v3~1work_packages~1{id}~1relations/get/responses' \ No newline at end of file + - '#/paths/~1api~1v3~1work_packages~1{id}~1relations/get/responses' From 396c190be94e53f1f19989c5f8257e46f7aef19a Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Mon, 21 Feb 2022 14:36:18 +0100 Subject: [PATCH 03/20] [#40228] introduced collection model for file links --- .../components/schemas/file_links_model.yml | 113 ++++++++++++++++++ .../schemas/work_package_create_form.yml | 2 - .../work_package_create_form_for_project.yml | 2 - .../schemas/work_package_edit_form.yml | 2 - .../schemas/work_package_schema.yml | 2 - .../schemas/work_packages_model.yml | 1 - docs/api/apiv3/openapi-spec.yml | 2 + .../apiv3/paths/work_package_file_links.yml | 84 +------------ 8 files changed, 119 insertions(+), 89 deletions(-) create mode 100644 docs/api/apiv3/components/schemas/file_links_model.yml delete mode 100644 docs/api/apiv3/components/schemas/work_package_create_form.yml delete mode 100644 docs/api/apiv3/components/schemas/work_package_create_form_for_project.yml delete mode 100644 docs/api/apiv3/components/schemas/work_package_edit_form.yml delete mode 100644 docs/api/apiv3/components/schemas/work_package_schema.yml diff --git a/docs/api/apiv3/components/schemas/file_links_model.yml b/docs/api/apiv3/components/schemas/file_links_model.yml new file mode 100644 index 0000000000..0fd1f44f8f --- /dev/null +++ b/docs/api/apiv3/components/schemas/file_links_model.yml @@ -0,0 +1,113 @@ +# Schema: File_LinksModel +--- +allOf: + - "$ref": './collection_model.yml' + - type: object + required: + - _links + - _embedded + properties: + _links: + type: object + required: + - self + properties: + self: + allOf: + - "$ref": "./link.yml" + - description: |- + This file links list + + **Resource**: File_LinksModel + readOnly: true + _embedded: + type: object + required: + - elements + properties: + elements: + type: array + items: + $ref: './file_link_model.yml' + +example: + _type: Collection + total: 2 + count: 2 + _links: + self: + href: '/api/v3/work_packages/42/file_links' + _embedded: + elements: + - id: 1337 + _type: FileLink + createdAt: '2021-12-20T13:37:00.211Z' + updatedAt: '2021-12-20T13:37:00.211Z' + originData: + id: 5503 + name: logo.png + mimeType: image/png + createdAt: '2021-12-19T09:42:10.170Z' + lastModifiedAt: '2021-12-20T14:00:13.987Z' + createdByName: Luke Skywalker + lastModifiedByName: Anakin Skywalker + _embedded: + storage: + id: 1337 + _type: Storage + name: It's no moon + createdAt: '2021-12-20T13:37:00.211Z' + updatedAt: '2021-12-20T13:37:00.211Z' + _links: + self: + href: /api/v3/storages/1337 + title: It's no moon + type: + href: urn:openproject-org:api:v3:storages:nextcloud + title: Nextcloud + origin: + href: https://nextcloud.deathstar.rocks/ + container: + _hint: Work package resource shortened for brevity + _type: WorkPackage + _links: + self: + href: "/api/v3/work_packages/1528" + title: Develop API + schema: + href: "/api/v3/work_packages/schemas/11-2" + id: 1528 + subject: Develop API + description: + format: markdown + raw: Develop super cool OpenProject API. + html: "

Develop super cool OpenProject API.

" + scheduleManually: false + startDate: + dueDate: + createdAt: '2014-08-29T12:40:53Z' + updatedAt: '2014-08-29T12:44:41Z' + _links: + self: + href: /api/v3/work_package/17/file_links/1337 + title: file link + storage: + href: /api/v3/storage/42 + title: storage + container: + href: /api/v3/work_package/17 + title: work package + creator: + href: /api/v3/users/33 + title: Obi-Wan Kenobi + delete: + href: /api/v3/work_package/17/file_links/1337 + title: file link delete API + originOpen: + href: https://nextcloud.deathstar.rocks/index.php/f?fileid=5503 + title: file open + staticOriginOpen: + href: /api/v3/work_package/17/file_links/1337/open + title: file open + - _hint: File Link resource shortened for brevity + id: 1338 diff --git a/docs/api/apiv3/components/schemas/work_package_create_form.yml b/docs/api/apiv3/components/schemas/work_package_create_form.yml deleted file mode 100644 index 07ecaaa3ff..0000000000 --- a/docs/api/apiv3/components/schemas/work_package_create_form.yml +++ /dev/null @@ -1,2 +0,0 @@ -# Schema: Work_Package_Create_Form ---- {} diff --git a/docs/api/apiv3/components/schemas/work_package_create_form_for_project.yml b/docs/api/apiv3/components/schemas/work_package_create_form_for_project.yml deleted file mode 100644 index 0d0b082ff9..0000000000 --- a/docs/api/apiv3/components/schemas/work_package_create_form_for_project.yml +++ /dev/null @@ -1,2 +0,0 @@ -# Schema: Work_Package_Create_Form_For_Project ---- {} diff --git a/docs/api/apiv3/components/schemas/work_package_edit_form.yml b/docs/api/apiv3/components/schemas/work_package_edit_form.yml deleted file mode 100644 index 2cf117d0d5..0000000000 --- a/docs/api/apiv3/components/schemas/work_package_edit_form.yml +++ /dev/null @@ -1,2 +0,0 @@ -# Schema: Work_Package_Edit_Form ---- {} diff --git a/docs/api/apiv3/components/schemas/work_package_schema.yml b/docs/api/apiv3/components/schemas/work_package_schema.yml deleted file mode 100644 index 8aba1c876b..0000000000 --- a/docs/api/apiv3/components/schemas/work_package_schema.yml +++ /dev/null @@ -1,2 +0,0 @@ -# Schema: Work_Package_Schema ---- {} diff --git a/docs/api/apiv3/components/schemas/work_packages_model.yml b/docs/api/apiv3/components/schemas/work_packages_model.yml index 10a740f585..99c0500980 100644 --- a/docs/api/apiv3/components/schemas/work_packages_model.yml +++ b/docs/api/apiv3/components/schemas/work_packages_model.yml @@ -30,7 +30,6 @@ allOf: items: $ref: './work_package_model.yml' -type: object example: _links: self: diff --git a/docs/api/apiv3/openapi-spec.yml b/docs/api/apiv3/openapi-spec.yml index 6eed2a1cdf..4c79b93372 100644 --- a/docs/api/apiv3/openapi-spec.yml +++ b/docs/api/apiv3/openapi-spec.yml @@ -525,6 +525,8 @@ components: "$ref": "./components/schemas/file_link_model.yml" File_Link_Origin_DataModel: "$ref": "./components/schemas/file_link_origin_data_model.yml" + File_LinksModel: + "$ref": "./components/schemas/file_links_model.yml" FormModel: "$ref": "./components/schemas/form_model.yml" Formattable: diff --git a/docs/api/apiv3/paths/work_package_file_links.yml b/docs/api/apiv3/paths/work_package_file_links.yml index 644645afab..3665252d10 100644 --- a/docs/api/apiv3/paths/work_package_file_links.yml +++ b/docs/api/apiv3/paths/work_package_file_links.yml @@ -28,32 +28,7 @@ post: content: application/json: schema: - type: object - required: - - _type - - _embedded - properties: - _type: - type: string - enum: - - Collection - _embedded: - type: object - required: - - elements - properties: - elements: - type: array - items: - allOf: - - $ref: '../components/schemas/file_link_model.yml' - - type: object - required: - - storageUrl - properties: - storageUrl: - type: string - format: uri + $ref: '../components/schemas/file_links_model.yml' example: _type: Collection _embedded: @@ -76,32 +51,7 @@ post: content: application/hal+json: schema: - type: object - required: - - _type - - count - - total - - _embedded - properties: - _type: - type: string - enum: - - Collection - count: - type: integer - minimum: 0 - total: - type: integer - minimum: 0 - _embedded: - type: object - required: - - elements - properties: - elements: - type: array - items: - $ref: '../components/schemas/file_link_model.yml' + $ref: '../components/schemas/file_links_model.yml' '400': content: application/hal+json: @@ -152,6 +102,7 @@ post: description: |- Occurs if the request body was correctly formatted, but some properties lead to errors in the validation process. This happens e.g. if the provided storage url is not available on the server. + get: summary: Gets all file links of a work package operationId: Work_Package_Get_File_Links @@ -160,8 +111,6 @@ get: - File links description: |- Gets all file links of a work package. - - The request can be filtered for the storage types and ids. parameters: - name: id description: Work package id @@ -176,32 +125,7 @@ get: content: application/hal+json: schema: - type: object - required: - - _type - - count - - total - - _embedded - properties: - _type: - type: string - enum: - - Collection - count: - type: integer - minimum: 0 - total: - type: integer - minimum: 0 - _embedded: - type: object - required: - - elements - properties: - elements: - type: array - items: - $ref: '../components/schemas/file_link_model.yml' + $ref: '../components/schemas/file_links_model.yml' '403': content: application/hal+json: From b3bc6cc84ffc023a7e5e23a2e40da371f3b718d5 Mon Sep 17 00:00:00 2001 From: bsatarnejad Date: Thu, 24 Feb 2022 16:16:23 +0100 Subject: [PATCH 04/20] add content loader to the modal while data is not loaded --- .../project-include.component.html | 33 +++++++++++++++---- .../project-include.component.sass | 3 ++ .../project-include.component.ts | 8 +++++ frontend/src/app/shared/shared.module.ts | 2 ++ 4 files changed, 39 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/shared/components/project-include/project-include.component.html b/frontend/src/app/shared/components/project-include/project-include.component.html index 6ea532409d..6fc867fcaa 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.html +++ b/frontend/src/app/shared/components/project-include/project-include.component.html @@ -32,6 +32,7 @@ class="spot-body" > -
    + +
      +
      @@ -67,6 +70,22 @@
      + + + + + + + + + + + + + diff --git a/frontend/src/app/shared/components/project-include/project-include.component.sass b/frontend/src/app/shared/components/project-include/project-include.component.sass index ec6218123b..76ef2cdaa4 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.sass +++ b/frontend/src/app/shared/components/project-include/project-include.component.sass @@ -16,3 +16,6 @@ margin: 0 padding: 0 @include spot-subheader-big + + &--loading + padding: 0 15px 0 15px diff --git a/frontend/src/app/shared/components/project-include/project-include.component.ts b/frontend/src/app/shared/components/project-include/project-include.component.ts index 0d326bfab5..0fde74565b 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.ts +++ b/frontend/src/app/shared/components/project-include/project-include.component.ts @@ -158,6 +158,14 @@ export class OpProjectIncludeComponent extends UntilDestroyedMixin { map((projects) => recursiveSort(projects)), ); + hasProjects$ = this + .projects$ + .pipe( + distinctUntilChanged(), + map((items) => items.length > 0), + distinctUntilChanged(), + ); + public get params():ApiV3ListParameters { const filters:ApiV3ListFilter[] = [ ['active', '=', ['t']], diff --git a/frontend/src/app/shared/shared.module.ts b/frontend/src/app/shared/shared.module.ts index 6b52d52174..13a8dc43f6 100644 --- a/frontend/src/app/shared/shared.module.ts +++ b/frontend/src/app/shared/shared.module.ts @@ -89,6 +89,7 @@ import { OpSidemenuComponent } from './components/sidemenu/sidemenu.component'; import { OpProjectIncludeComponent } from './components/project-include/project-include.component'; import { OpProjectListComponent } from './components/project-include/project-list.component'; import { ViewsResourceService } from 'core-app/core/state/views/views.service'; +import { OpenprojectContentLoaderModule } from 'core-app/shared/components/op-content-loader/openproject-content-loader.module'; export function bootstrapModule(injector:Injector) { // Ensure error reporter is run @@ -131,6 +132,7 @@ export function bootstrapModule(injector:Injector) { DynamicBootstrapModule, OpenprojectPrincipalRenderingModule, + OpenprojectContentLoaderModule, DatePickerModule, FocusModule, From 1468bdcd0e3d1367d31945dab30dc2a0bb7bf380 Mon Sep 17 00:00:00 2001 From: bsatarnejad Date: Thu, 24 Feb 2022 16:24:02 +0100 Subject: [PATCH 05/20] disble action buttons while data is not loaaded --- .../project-include/project-include.component.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/shared/components/project-include/project-include.component.html b/frontend/src/app/shared/components/project-include/project-include.component.html index 6fc867fcaa..b7eb2bdc15 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.html +++ b/frontend/src/app/shared/components/project-include/project-include.component.html @@ -59,13 +59,17 @@
      -
      From 22a98acf6e018d50997c4ecdf6bef8ced524f2b3 Mon Sep 17 00:00:00 2001 From: Behrokh Satarnejad <62008897+bsatarnejad@users.noreply.github.com> Date: Thu, 24 Feb 2022 16:29:13 +0100 Subject: [PATCH 06/20] Update project-include.component.ts --- .../project-include/project-include.component.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/app/shared/components/project-include/project-include.component.ts b/frontend/src/app/shared/components/project-include/project-include.component.ts index 0fde74565b..767cdef7e9 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.ts +++ b/frontend/src/app/shared/components/project-include/project-include.component.ts @@ -158,13 +158,13 @@ export class OpProjectIncludeComponent extends UntilDestroyedMixin { map((projects) => recursiveSort(projects)), ); - hasProjects$ = this - .projects$ - .pipe( - distinctUntilChanged(), - map((items) => items.length > 0), - distinctUntilChanged(), - ); + hasProjects$ = this + .projects$ + .pipe( + distinctUntilChanged(), + map((items) => items.length > 0), + distinctUntilChanged(), + ); public get params():ApiV3ListParameters { const filters:ApiV3ListFilter[] = [ From bac50005f0cbadc6439d01d81111cfee2ef10281 Mon Sep 17 00:00:00 2001 From: bsatarnejad Date: Thu, 24 Feb 2022 16:46:52 +0100 Subject: [PATCH 07/20] eslint error fix --- .../project-include/project-include.component.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/shared/components/project-include/project-include.component.ts b/frontend/src/app/shared/components/project-include/project-include.component.ts index 767cdef7e9..36dbd20f76 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.ts +++ b/frontend/src/app/shared/components/project-include/project-include.component.ts @@ -159,12 +159,12 @@ export class OpProjectIncludeComponent extends UntilDestroyedMixin { ); hasProjects$ = this - .projects$ - .pipe( - distinctUntilChanged(), - map((items) => items.length > 0), - distinctUntilChanged(), - ); + .projects$ + .pipe( + distinctUntilChanged(), + map((items) => items.length > 0), + distinctUntilChanged(), + ); public get params():ApiV3ListParameters { const filters:ApiV3ListFilter[] = [ From 42e3e487001c03bf1021ab2cb7bed80d1324bbf9 Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Mon, 28 Feb 2022 14:13:46 +0100 Subject: [PATCH 08/20] [#40228] added storage_id filter to wp collection --- docs/api/apiv3/paths/work_packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/api/apiv3/paths/work_packages.yml b/docs/api/apiv3/paths/work_packages.yml index cbfc974f1f..2317662641 100644 --- a/docs/api/apiv3/paths/work_packages.yml +++ b/docs/api/apiv3/paths/work_packages.yml @@ -67,6 +67,7 @@ get: - search - start_date - status + - storage_id - storage_url - subject - subject_or_id From 5702d5f5054b96c04921d3de50e1c3b1a7b61716 Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Mon, 28 Feb 2022 16:55:11 +0100 Subject: [PATCH 09/20] [#40228] readded required properties --- docs/api/apiv3/components/schemas/file_link_model.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/api/apiv3/components/schemas/file_link_model.yml b/docs/api/apiv3/components/schemas/file_link_model.yml index bfe4addb39..50003f2afb 100644 --- a/docs/api/apiv3/components/schemas/file_link_model.yml +++ b/docs/api/apiv3/components/schemas/file_link_model.yml @@ -2,6 +2,8 @@ --- type: object required: + - id + - _type - originData - _links properties: @@ -40,6 +42,12 @@ properties: - $ref: './work_package_model.yml' _links: type: object + required: + - self + - container + - creator + - originOpen + - staticOriginOpen properties: self: allOf: From e74134c857c2525ed8e032671987287653fee6af Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Tue, 1 Mar 2022 10:20:26 +0100 Subject: [PATCH 10/20] [#40228] improved spec examples --- .../components/schemas/file_links_model.yml | 40 +------------------ .../schemas/work_packages_model.yml | 4 +- 2 files changed, 3 insertions(+), 41 deletions(-) diff --git a/docs/api/apiv3/components/schemas/file_links_model.yml b/docs/api/apiv3/components/schemas/file_links_model.yml index 0fd1f44f8f..401e79aefd 100644 --- a/docs/api/apiv3/components/schemas/file_links_model.yml +++ b/docs/api/apiv3/components/schemas/file_links_model.yml @@ -51,42 +51,6 @@ example: lastModifiedAt: '2021-12-20T14:00:13.987Z' createdByName: Luke Skywalker lastModifiedByName: Anakin Skywalker - _embedded: - storage: - id: 1337 - _type: Storage - name: It's no moon - createdAt: '2021-12-20T13:37:00.211Z' - updatedAt: '2021-12-20T13:37:00.211Z' - _links: - self: - href: /api/v3/storages/1337 - title: It's no moon - type: - href: urn:openproject-org:api:v3:storages:nextcloud - title: Nextcloud - origin: - href: https://nextcloud.deathstar.rocks/ - container: - _hint: Work package resource shortened for brevity - _type: WorkPackage - _links: - self: - href: "/api/v3/work_packages/1528" - title: Develop API - schema: - href: "/api/v3/work_packages/schemas/11-2" - id: 1528 - subject: Develop API - description: - format: markdown - raw: Develop super cool OpenProject API. - html: "

      Develop super cool OpenProject API.

      " - scheduleManually: false - startDate: - dueDate: - createdAt: '2014-08-29T12:40:53Z' - updatedAt: '2014-08-29T12:44:41Z' _links: self: href: /api/v3/work_package/17/file_links/1337 @@ -102,12 +66,10 @@ example: title: Obi-Wan Kenobi delete: href: /api/v3/work_package/17/file_links/1337 - title: file link delete API + method: delete originOpen: href: https://nextcloud.deathstar.rocks/index.php/f?fileid=5503 - title: file open staticOriginOpen: href: /api/v3/work_package/17/file_links/1337/open - title: file open - _hint: File Link resource shortened for brevity id: 1338 diff --git a/docs/api/apiv3/components/schemas/work_packages_model.yml b/docs/api/apiv3/components/schemas/work_packages_model.yml index 99c0500980..6d9b100d8d 100644 --- a/docs/api/apiv3/components/schemas/work_packages_model.yml +++ b/docs/api/apiv3/components/schemas/work_packages_model.yml @@ -16,9 +16,9 @@ allOf: allOf: - "$ref": "./link.yml" - description: |- - The watcher list + The work package collection - **Resource**: WatchersModel + **Resource**: WorkPackageCollection readOnly: true _embedded: type: object From 354e0e317edfdbd9e25976d0a45c3b1e928fa97d Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Tue, 1 Mar 2022 10:58:03 +0100 Subject: [PATCH 11/20] [chore] excluded filters section - added section to exclude filters from schema dependeny collection --- .../v3/queries/schemas/query_schema_representer.rb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/api/v3/queries/schemas/query_schema_representer.rb b/lib/api/v3/queries/schemas/query_schema_representer.rb index 4684b4f7a7..f747190d32 100644 --- a/lib/api/v3/queries/schemas/query_schema_representer.rb +++ b/lib/api/v3/queries/schemas/query_schema_representer.rb @@ -265,10 +265,9 @@ module API end def filters_schemas - # TODO: The RelatableFilter is not supported by the schema dependencies yet filters = represented - .available_filters - .reject { |f| f.is_a?(::Queries::WorkPackages::Filter::RelatableFilter) } + .available_filters + .select { |f| excluded_filters.none? { |excluded| f.is_a?(excluded) } } QueryFilterInstanceSchemaCollectionRepresenter.new(filters, self_link: filter_instance_schemas_href, @@ -283,6 +282,15 @@ module API api_v3_paths.query_filter_instance_schemas end end + + private + + def excluded_filters + # TODO: The RelatableFilter is not supported by the schema dependencies yet + [ + ::Queries::WorkPackages::Filter::RelatableFilter + ] + end end end end From 1239004113bf66c308ed74392b5e0d1034f2b933 Mon Sep 17 00:00:00 2001 From: Eric Schubert Date: Tue, 1 Mar 2022 14:22:06 +0100 Subject: [PATCH 12/20] [chore] migrated excluded filters into factory --- .../filter_dependency_representer_factory.rb | 39 ++++++++++--------- ...uery_filter_instance_schema_representer.rb | 6 +-- .../schemas/query_schema_representer.rb | 34 +++++----------- 3 files changed, 33 insertions(+), 46 deletions(-) diff --git a/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb b/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb index da92e5aa00..2c435624bd 100644 --- a/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb +++ b/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb @@ -1,8 +1,6 @@ -#-- encoding: UTF-8 - #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. @@ -38,6 +36,8 @@ module API def create(filter, operator, form_embedded: false) klass = representer_class(filter) + return nil if klass.nil? + instance = klass.new(filter, operator, form_embedded: form_embedded) @@ -52,21 +52,25 @@ module API private @specific_conversion = { - 'CreatedAtFilter': 'DateTimeFilter', - 'UpdatedAtFilter': 'DateTimeFilter', - 'AuthorFilter': 'UserFilter', - 'ResponsibleFilter': 'AllPrincipalsFilter', - 'AssignedToFilter': 'AllPrincipalsFilter', - 'WatcherFilter': 'UserFilter' + CreatedAtFilter: 'DateTimeFilter', + UpdatedAtFilter: 'DateTimeFilter', + AuthorFilter: 'UserFilter', + ResponsibleFilter: 'AllPrincipalsFilter', + AssignedToFilter: 'AllPrincipalsFilter', + WatcherFilter: 'UserFilter' } + @excluded_filters = [ + ::Queries::WorkPackages::Filter::RelatableFilter + ] + def representer_class(filter) name = filter_specific_representer_class(filter) || - cf_representer_class(filter) || - type_specific_representer_class(filter) || - custom_representer_class(filter) + cf_representer_class(filter) || + type_specific_representer_class(filter) || + custom_representer_class(filter) - name.constantize + name.nil? ? nil : name.constantize end def filter_specific_representer_class(filter) @@ -108,12 +112,11 @@ module API end name = @specific_conversion[filter.class.to_s.demodulize.to_sym] - if name.nil? - raise ArgumentError, - "Filter #{filter.class} does not map to a dependency representer." - end + return "API::V3::Queries::Schemas::#{name}DependencyRepresenter" if name.present? + + return nil if @excluded_filters.any? { |ef| filter.is_a?(ef) } - "API::V3::Queries::Schemas::#{name}DependencyRepresenter" + raise ArgumentError, "Filter #{filter.class} does not map to a dependency representer." end module_function :create, diff --git a/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb b/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb index 558aaa1cea..bfe9e11879 100644 --- a/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb +++ b/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb @@ -1,8 +1,6 @@ -#-- encoding: UTF-8 - #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. @@ -126,7 +124,7 @@ module API operator, form_embedded: form_embedded) - hash[path] = value + hash[path] = value unless value.nil? end end diff --git a/lib/api/v3/queries/schemas/query_schema_representer.rb b/lib/api/v3/queries/schemas/query_schema_representer.rb index f747190d32..1849f0fbb5 100644 --- a/lib/api/v3/queries/schemas/query_schema_representer.rb +++ b/lib/api/v3/queries/schemas/query_schema_representer.rb @@ -1,8 +1,6 @@ -#-- encoding: UTF-8 - #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. @@ -46,14 +44,14 @@ module API def self.filters_schema ->(*) do { - 'type': '[]QueryFilterInstance', - 'name': Query.human_attribute_name('filters'), - 'required': false, - 'writable': true, - 'hasDefault': true, - '_links': { - 'allowedValuesSchemas': { - 'href': filter_instance_schemas_href + type: '[]QueryFilterInstance', + name: Query.human_attribute_name('filters'), + required: false, + writable: true, + hasDefault: true, + _links: { + allowedValuesSchemas: { + href: filter_instance_schemas_href } } } @@ -265,10 +263,7 @@ module API end def filters_schemas - filters = represented - .available_filters - .select { |f| excluded_filters.none? { |excluded| f.is_a?(excluded) } } - + filters = represented.available_filters QueryFilterInstanceSchemaCollectionRepresenter.new(filters, self_link: filter_instance_schemas_href, form_embedded: form_embedded, @@ -282,15 +277,6 @@ module API api_v3_paths.query_filter_instance_schemas end end - - private - - def excluded_filters - # TODO: The RelatableFilter is not supported by the schema dependencies yet - [ - ::Queries::WorkPackages::Filter::RelatableFilter - ] - end end end end From bc8d423ec2b081041910d4da7d3df2ea5e4eb525 Mon Sep 17 00:00:00 2001 From: Christophe Bliard Date: Tue, 1 Mar 2022 17:05:59 +0100 Subject: [PATCH 13/20] update copyright information for 2022 --- .gitignore | 2 +- COPYRIGHT | 2 +- COPYRIGHT_short | 2 +- Gemfile | 2 +- Rakefile | 2 +- app/cells/versions/row_cell.rb | 2 +- app/contracts/admin_only_contract.rb | 2 +- app/contracts/attachments/create_contract.rb | 2 +- app/contracts/attachments/delete_contract.rb | 2 +- app/contracts/attachments/prepare_upload_contract.rb | 2 +- app/contracts/attachments/validate_replacements.rb | 2 +- app/contracts/attribute_help_texts/base_contract.rb | 2 +- app/contracts/attribute_help_texts/create_contract.rb | 2 +- app/contracts/attribute_help_texts/update_contract.rb | 2 +- app/contracts/authentication/omniauth_auth_hash_contract.rb | 2 +- app/contracts/backups/create_contract.rb | 2 +- app/contracts/base_contract.rb | 2 +- app/contracts/concerns/assignable_custom_field_values.rb | 2 +- app/contracts/concerns/requires_admin_guard.rb | 2 +- app/contracts/concerns/requires_enterprise_guard.rb | 2 +- .../concerns/single_table_inheritance_model_contract.rb | 2 +- app/contracts/concerns/unchanged_project.rb | 2 +- app/contracts/custom_actions/cu_contract.rb | 2 +- app/contracts/custom_actions/execute_contract.rb | 2 +- app/contracts/custom_fields/base_contract.rb | 2 +- app/contracts/custom_fields/create_contract.rb | 2 +- app/contracts/custom_fields/update_contract.rb | 2 +- app/contracts/delete_contract.rb | 2 +- app/contracts/empty_contract.rb | 2 +- app/contracts/groups/base_contract.rb | 2 +- app/contracts/groups/create_contract.rb | 2 +- app/contracts/groups/delete_contract.rb | 2 +- app/contracts/groups/update_contract.rb | 2 +- app/contracts/journals/update_contract.rb | 2 +- app/contracts/members/base_contract.rb | 2 +- app/contracts/members/create_contract.rb | 2 +- app/contracts/members/delete_contract.rb | 2 +- app/contracts/members/update_contract.rb | 2 +- app/contracts/messages/base_contract.rb | 2 +- app/contracts/messages/create_contract.rb | 2 +- app/contracts/messages/update_contract.rb | 2 +- app/contracts/model_contract.rb | 2 +- app/contracts/notifications/create_contract.rb | 2 +- app/contracts/oauth/application_contract.rb | 2 +- app/contracts/params_contract.rb | 2 +- app/contracts/placeholder_users/base_contract.rb | 2 +- app/contracts/placeholder_users/create_contract.rb | 2 +- app/contracts/placeholder_users/delete_contract.rb | 2 +- app/contracts/placeholder_users/update_contract.rb | 2 +- app/contracts/projects/archive_contract.rb | 2 +- app/contracts/projects/archiver.rb | 2 +- app/contracts/projects/base_contract.rb | 2 +- app/contracts/projects/copy_contract.rb | 2 +- app/contracts/projects/create_contract.rb | 2 +- app/contracts/projects/delete_contract.rb | 2 +- app/contracts/projects/enabled_modules_contract.rb | 2 +- app/contracts/projects/unarchive_contract.rb | 2 +- app/contracts/projects/update_contract.rb | 2 +- app/contracts/queries/base_contract.rb | 2 +- app/contracts/queries/copy_contract.rb | 2 +- app/contracts/queries/create_contract.rb | 2 +- app/contracts/queries/update_contract.rb | 2 +- app/contracts/queries/update_form_contract.rb | 2 +- app/contracts/relations/base_contract.rb | 2 +- app/contracts/relations/create_contract.rb | 2 +- app/contracts/relations/delete_contract.rb | 2 +- app/contracts/relations/update_contract.rb | 2 +- app/contracts/roles/base_contract.rb | 2 +- app/contracts/roles/create_contract.rb | 2 +- app/contracts/roles/update_contract.rb | 2 +- app/contracts/settings/update_contract.rb | 2 +- app/contracts/types/base_contract.rb | 2 +- app/contracts/user_preferences/base_contract.rb | 2 +- app/contracts/user_preferences/params_contract.rb | 2 +- app/contracts/user_preferences/update_contract.rb | 2 +- app/contracts/users/base_contract.rb | 2 +- app/contracts/users/create_contract.rb | 2 +- app/contracts/users/delete_contract.rb | 2 +- app/contracts/users/update_contract.rb | 2 +- app/contracts/versions/base_contract.rb | 2 +- app/contracts/versions/create_contract.rb | 2 +- app/contracts/versions/delete_contract.rb | 2 +- app/contracts/versions/update_contract.rb | 2 +- app/contracts/views/base_contract.rb | 2 +- app/contracts/views/create_contract.rb | 2 +- app/contracts/views/update_contract.rb | 2 +- app/contracts/wiki_pages/base_contract.rb | 2 +- app/contracts/wiki_pages/copy_contract.rb | 2 +- app/contracts/wiki_pages/create_contract.rb | 2 +- app/contracts/wiki_pages/update_contract.rb | 2 +- app/contracts/work_packages/base_contract.rb | 2 +- app/contracts/work_packages/copy_project_contract.rb | 2 +- app/contracts/work_packages/create_contract.rb | 2 +- app/contracts/work_packages/create_note_contract.rb | 2 +- app/contracts/work_packages/delete_contract.rb | 2 +- app/contracts/work_packages/skip_authorization_checks.rb | 2 +- app/contracts/work_packages/update_contract.rb | 2 +- app/controllers/account_controller.rb | 2 +- app/controllers/activities_controller.rb | 2 +- app/controllers/admin/backups_controller.rb | 2 +- app/controllers/admin/settings/api_settings_controller.rb | 2 +- .../admin/settings/attachments_settings_controller.rb | 2 +- .../admin/settings/authentication_settings_controller.rb | 2 +- app/controllers/admin/settings/display_settings_controller.rb | 2 +- app/controllers/admin/settings/general_settings_controller.rb | 2 +- .../admin/settings/incoming_mails_settings_controller.rb | 2 +- .../admin/settings/mail_notifications_settings_controller.rb | 2 +- .../admin/settings/notifications_settings_controller.rb | 2 +- app/controllers/admin/settings/projects_settings_controller.rb | 2 +- .../admin/settings/repositories_settings_controller.rb | 2 +- app/controllers/admin/settings/users_settings_controller.rb | 2 +- .../admin/settings/work_packages_settings_controller.rb | 2 +- app/controllers/admin/settings_controller.rb | 2 +- app/controllers/admin_controller.rb | 2 +- app/controllers/angular_controller.rb | 2 +- app/controllers/api_docs_controller.rb | 2 +- app/controllers/application_controller.rb | 2 +- app/controllers/attribute_help_texts_controller.rb | 2 +- app/controllers/auth_sources_controller.rb | 2 +- app/controllers/categories_controller.rb | 2 +- app/controllers/colors_controller.rb | 2 +- app/controllers/concerns/accounts/current_user.rb | 2 +- app/controllers/concerns/accounts/omniauth_login.rb | 2 +- app/controllers/concerns/accounts/redirect_after_login.rb | 2 +- app/controllers/concerns/accounts/user_consent.rb | 2 +- app/controllers/concerns/accounts/user_limits.rb | 2 +- app/controllers/concerns/accounts/user_password_change.rb | 2 +- app/controllers/concerns/attachable_service_call.rb | 2 +- app/controllers/concerns/layout.rb | 2 +- app/controllers/concerns/password_confirmation.rb | 2 +- app/controllers/concerns/user_invitation.rb | 2 +- app/controllers/custom_actions_controller.rb | 2 +- app/controllers/custom_fields_controller.rb | 2 +- app/controllers/custom_styles_controller.rb | 2 +- app/controllers/enterprises_controller.rb | 2 +- app/controllers/enumerations_controller.rb | 2 +- app/controllers/forums_controller.rb | 2 +- app/controllers/groups_controller.rb | 2 +- app/controllers/help_controller.rb | 2 +- app/controllers/highlighting_controller.rb | 2 +- app/controllers/homescreen_controller.rb | 2 +- app/controllers/journals_controller.rb | 2 +- app/controllers/ldap_auth_sources_controller.rb | 2 +- app/controllers/members_controller.rb | 2 +- app/controllers/messages_controller.rb | 2 +- app/controllers/my_controller.rb | 2 +- app/controllers/news/comments_controller.rb | 2 +- app/controllers/news_controller.rb | 2 +- app/controllers/oauth/applications_controller.rb | 2 +- app/controllers/oauth/auth_base_controller.rb | 2 +- app/controllers/oauth/grants_controller.rb | 2 +- app/controllers/onboarding_controller.rb | 2 +- app/controllers/projects/archive_controller.rb | 2 +- app/controllers/projects/identifier_controller.rb | 2 +- app/controllers/projects/settings/categories_controller.rb | 2 +- app/controllers/projects/settings/custom_fields_controller.rb | 2 +- app/controllers/projects/settings/general_controller.rb | 2 +- app/controllers/projects/settings/modules_controller.rb | 2 +- app/controllers/projects/settings/repository_controller.rb | 2 +- app/controllers/projects/settings/storage_controller.rb | 2 +- app/controllers/projects/settings/types_controller.rb | 2 +- app/controllers/projects/settings/versions_controller.rb | 2 +- app/controllers/projects/settings_controller.rb | 2 +- app/controllers/projects/templated_controller.rb | 2 +- app/controllers/projects_controller.rb | 2 +- app/controllers/repositories_controller.rb | 2 +- app/controllers/roles_controller.rb | 2 +- app/controllers/search_controller.rb | 2 +- app/controllers/statuses_controller.rb | 2 +- app/controllers/sys_controller.rb | 2 +- app/controllers/types_controller.rb | 2 +- app/controllers/users/memberships_controller.rb | 2 +- app/controllers/users_controller.rb | 2 +- app/controllers/versions_controller.rb | 2 +- app/controllers/watchers_controller.rb | 2 +- app/controllers/wiki_controller.rb | 2 +- app/controllers/wiki_menu_items_controller.rb | 2 +- app/controllers/work_packages/auto_completes_controller.rb | 2 +- app/controllers/work_packages/bulk_controller.rb | 2 +- app/controllers/work_packages/flash_bulk_error.rb | 2 +- app/controllers/work_packages/moves_controller.rb | 2 +- app/controllers/work_packages/reports_controller.rb | 2 +- app/controllers/work_packages_controller.rb | 2 +- app/controllers/workflows_controller.rb | 2 +- app/helpers/accessibility_helper.rb | 2 +- app/helpers/admin_helper.rb | 2 +- app/helpers/angular_helper.rb | 2 +- app/helpers/application_helper.rb | 2 +- app/helpers/attachments_helper.rb | 2 +- app/helpers/attribute_help_texts_helper.rb | 2 +- app/helpers/augmenting_helper.rb | 2 +- app/helpers/authentication_stage_path_helper.rb | 2 +- app/helpers/avatar_helper.rb | 2 +- app/helpers/backup_helper.rb | 2 +- app/helpers/breadcrumb_helper.rb | 2 +- app/helpers/calendars_helper.rb | 2 +- app/helpers/colors_helper.rb | 2 +- app/helpers/content_for_helper.rb | 2 +- app/helpers/custom_fields_helper.rb | 2 +- app/helpers/custom_styles_helper.rb | 2 +- app/helpers/error_message_helper.rb | 2 +- app/helpers/errors_helper.rb | 2 +- app/helpers/frontend_asset_helper.rb | 2 +- app/helpers/groups_helper.rb | 2 +- app/helpers/hide_sections_helper.rb | 2 +- app/helpers/homescreen_helper.rb | 2 +- app/helpers/icons_helper.rb | 2 +- app/helpers/individual_principal_hooks_helper.rb | 2 +- app/helpers/mail_digest_helper.rb | 2 +- app/helpers/mail_notification_helper.rb | 2 +- app/helpers/members_helper.rb | 2 +- app/helpers/messages_helper.rb | 2 +- app/helpers/meta_tags_helper.rb | 2 +- app/helpers/no_results_helper.rb | 2 +- app/helpers/oauth_helper.rb | 2 +- app/helpers/omniauth_helper.rb | 2 +- app/helpers/pagination_helper.rb | 2 +- app/helpers/password_helper.rb | 2 +- app/helpers/placeholder_users_helper.rb | 2 +- app/helpers/project_status_helper.rb | 2 +- app/helpers/projects_helper.rb | 2 +- app/helpers/queries_helper.rb | 2 +- app/helpers/relations_helper.rb | 2 +- app/helpers/removed_js_helpers_helper.rb | 2 +- app/helpers/reorder_links_helper.rb | 2 +- app/helpers/reports_helper.rb | 2 +- app/helpers/repositories_helper.rb | 2 +- app/helpers/roles_helper.rb | 2 +- app/helpers/search_helper.rb | 2 +- app/helpers/security_badge_helper.rb | 2 +- app/helpers/settings_helper.rb | 2 +- app/helpers/sort_helper.rb | 2 +- app/helpers/static_links_helper.rb | 2 +- app/helpers/tabs_helper.rb | 2 +- app/helpers/text_formatting_helper.rb | 2 +- app/helpers/tooltip_helper.rb | 2 +- app/helpers/types_helper.rb | 2 +- app/helpers/user_consent_helper.rb | 2 +- app/helpers/users_helper.rb | 2 +- app/helpers/versions_helper.rb | 2 +- app/helpers/warning_bar_helper.rb | 2 +- app/helpers/watchers_helper.rb | 2 +- app/helpers/wiki_helper.rb | 2 +- app/helpers/work_packages_filter_helper.rb | 2 +- app/helpers/work_packages_helper.rb | 2 +- app/mailers/announcement_mailer.rb | 2 +- app/mailers/application_mailer.rb | 2 +- app/mailers/digest_mailer.rb | 2 +- app/mailers/member_mailer.rb | 2 +- app/mailers/project_mailer.rb | 2 +- app/mailers/user_mailer.rb | 2 +- app/mailers/work_package_mailer.rb | 2 +- app/models/action.rb | 2 +- app/models/actions/scopes/default.rb | 2 +- app/models/activities/base_activity_provider.rb | 2 +- app/models/activities/changeset_activity_provider.rb | 2 +- app/models/activities/fetcher.rb | 2 +- app/models/activities/message_activity_provider.rb | 2 +- app/models/activities/news_activity_provider.rb | 2 +- app/models/activities/wiki_content_activity_provider.rb | 2 +- app/models/activities/work_package_activity_provider.rb | 2 +- app/models/associations/groupable.rb | 2 +- app/models/attachment.rb | 2 +- app/models/attribute_help_text.rb | 2 +- app/models/attribute_help_text/project.rb | 2 +- app/models/attribute_help_text/work_package.rb | 2 +- app/models/auth_source.rb | 2 +- app/models/capabilities/scopes/default.rb | 2 +- app/models/capability.rb | 2 +- app/models/category.rb | 2 +- app/models/change.rb | 2 +- app/models/changeset.rb | 2 +- app/models/color.rb | 2 +- app/models/comment.rb | 2 +- app/models/concerns/tableless.rb | 2 +- app/models/concerns/virtual_attribute.rb | 2 +- app/models/custom_action.rb | 2 +- app/models/custom_actions/actions/assigned_to.rb | 2 +- app/models/custom_actions/actions/base.rb | 2 +- app/models/custom_actions/actions/custom_field.rb | 2 +- app/models/custom_actions/actions/date.rb | 2 +- app/models/custom_actions/actions/done_ratio.rb | 2 +- app/models/custom_actions/actions/due_date.rb | 2 +- app/models/custom_actions/actions/estimated_hours.rb | 2 +- app/models/custom_actions/actions/inexistent.rb | 2 +- app/models/custom_actions/actions/notify.rb | 2 +- app/models/custom_actions/actions/priority.rb | 2 +- app/models/custom_actions/actions/project.rb | 2 +- app/models/custom_actions/actions/responsible.rb | 2 +- app/models/custom_actions/actions/serializer.rb | 2 +- app/models/custom_actions/actions/start_date.rb | 2 +- app/models/custom_actions/actions/status.rb | 2 +- app/models/custom_actions/actions/strategies/associated.rb | 2 +- .../actions/strategies/associated_custom_field.rb | 2 +- app/models/custom_actions/actions/strategies/custom_field.rb | 2 +- app/models/custom_actions/actions/strategies/date.rb | 2 +- app/models/custom_actions/actions/strategies/date_property.rb | 2 +- app/models/custom_actions/actions/strategies/float.rb | 2 +- app/models/custom_actions/actions/strategies/integer.rb | 2 +- app/models/custom_actions/actions/strategies/me_associated.rb | 2 +- app/models/custom_actions/actions/strategies/string.rb | 2 +- app/models/custom_actions/actions/strategies/text.rb | 2 +- .../custom_actions/actions/strategies/user_custom_field.rb | 2 +- .../custom_actions/actions/strategies/validate_in_range.rb | 2 +- .../custom_actions/actions/strategies/values_to_string.rb | 2 +- app/models/custom_actions/actions/type.rb | 2 +- app/models/custom_actions/conditions/base.rb | 2 +- app/models/custom_actions/conditions/inexistent.rb | 2 +- app/models/custom_actions/conditions/project.rb | 2 +- app/models/custom_actions/conditions/role.rb | 2 +- app/models/custom_actions/conditions/status.rb | 2 +- app/models/custom_actions/conditions/type.rb | 2 +- app/models/custom_actions/register.rb | 2 +- app/models/custom_actions/values_to_integer.rb | 2 +- app/models/custom_field.rb | 2 +- app/models/custom_field/order_statements.rb | 2 +- app/models/custom_option.rb | 2 +- app/models/custom_value.rb | 2 +- app/models/custom_value/ar_object_strategy.rb | 2 +- app/models/custom_value/bool_strategy.rb | 2 +- app/models/custom_value/date_strategy.rb | 2 +- app/models/custom_value/empty_strategy.rb | 2 +- app/models/custom_value/float_strategy.rb | 2 +- app/models/custom_value/format_strategy.rb | 2 +- app/models/custom_value/formattable_strategy.rb | 2 +- app/models/custom_value/int_strategy.rb | 2 +- app/models/custom_value/list_strategy.rb | 2 +- app/models/custom_value/string_strategy.rb | 2 +- app/models/custom_value/user_strategy.rb | 2 +- app/models/custom_value/version_strategy.rb | 2 +- app/models/design_color.rb | 2 +- app/models/enabled_module.rb | 2 +- app/models/enterprise_token.rb | 2 +- app/models/enumeration.rb | 2 +- app/models/exports/concerns/csv.rb | 2 +- app/models/exports/export_error.rb | 2 +- app/models/exports/exporter.rb | 2 +- app/models/exports/register.rb | 2 +- app/models/exports/result.rb | 2 +- app/models/forum.rb | 2 +- app/models/global_role.rb | 2 +- app/models/group.rb | 2 +- app/models/group_custom_field.rb | 2 +- app/models/group_user.rb | 2 +- app/models/groups/scopes/visible.rb | 2 +- app/models/issue_priority.rb | 2 +- app/models/journal.rb | 2 +- app/models/journal/associated_journal.rb | 2 +- app/models/journal/attachable_journal.rb | 2 +- app/models/journal/attachment_journal.rb | 2 +- app/models/journal/base_journal.rb | 2 +- app/models/journal/changeset_journal.rb | 2 +- app/models/journal/customizable_journal.rb | 2 +- app/models/journal/message_journal.rb | 2 +- app/models/journal/news_journal.rb | 2 +- app/models/journal/notification_configuration.rb | 2 +- app/models/journal/wiki_content_journal.rb | 2 +- app/models/journal/work_package_journal.rb | 2 +- app/models/ldap_auth_source.rb | 2 +- app/models/mail_handler.rb | 2 +- app/models/member.rb | 2 +- app/models/member_role.rb | 2 +- app/models/members/roles_diff.rb | 2 +- app/models/members/scopes/assignable.rb | 2 +- app/models/members/scopes/global.rb | 2 +- app/models/members/scopes/not_locked.rb | 2 +- app/models/members/scopes/of.rb | 2 +- app/models/members/scopes/visible.rb | 2 +- app/models/menu_item.rb | 2 +- app/models/menu_items/wiki_menu_item.rb | 2 +- app/models/message.rb | 2 +- app/models/news.rb | 2 +- app/models/notification_settings/scopes/applicable.rb | 2 +- app/models/notifications/scopes/mail_alert_unsent.rb | 2 +- app/models/notifications/scopes/mail_reminder_unsent.rb | 2 +- app/models/notifications/scopes/recipient.rb | 2 +- app/models/notifications/scopes/unsent_reminders_before.rb | 2 +- app/models/notifications/scopes/visible.rb | 2 +- app/models/ordered_work_package.rb | 2 +- app/models/permitted_params.rb | 2 +- app/models/placeholder_users/scopes/visible.rb | 2 +- app/models/principal.rb | 2 +- app/models/principals/scopes/human.rb | 2 +- app/models/principals/scopes/like.rb | 2 +- app/models/principals/scopes/not_builtin.rb | 2 +- app/models/principals/scopes/ordered_by_name.rb | 2 +- app/models/principals/scopes/possible_assignee.rb | 2 +- app/models/principals/scopes/possible_member.rb | 2 +- app/models/principals/scopes/status.rb | 2 +- app/models/principals/scopes/user.rb | 2 +- app/models/principals/scopes/visible.rb | 2 +- app/models/priority/inexistent_priority.rb | 2 +- app/models/project.rb | 2 +- app/models/project_custom_field.rb | 2 +- app/models/projects/activity.rb | 2 +- app/models/projects/ancestors_from_root.rb | 2 +- app/models/projects/exports/csv.rb | 2 +- app/models/projects/exports/formatters/status.rb | 2 +- app/models/projects/exports/query_exporter.rb | 2 +- app/models/projects/hierarchy.rb | 2 +- app/models/projects/status.rb | 2 +- app/models/projects/storage.rb | 2 +- app/models/queries/actions.rb | 2 +- app/models/queries/actions/action_query.rb | 2 +- app/models/queries/actions/filters/action_filter.rb | 2 +- app/models/queries/actions/filters/id_filter.rb | 2 +- app/models/queries/base_query.rb | 2 +- app/models/queries/capabilities.rb | 2 +- app/models/queries/capabilities/capability_query.rb | 2 +- app/models/queries/capabilities/filters/action_filter.rb | 2 +- app/models/queries/capabilities/filters/capability_filter.rb | 2 +- app/models/queries/capabilities/filters/context_filter.rb | 2 +- app/models/queries/capabilities/filters/id_filter.rb | 2 +- app/models/queries/capabilities/filters/principal_id_filter.rb | 2 +- app/models/queries/capabilities/orders/id_order.rb | 2 +- app/models/queries/columns/base.rb | 2 +- app/models/queries/filters.rb | 2 +- app/models/queries/filters/available_filters.rb | 2 +- app/models/queries/filters/base.rb | 2 +- app/models/queries/filters/empty_filter.rb | 2 +- app/models/queries/filters/me_value.rb | 2 +- app/models/queries/filters/not_existing_filter.rb | 2 +- app/models/queries/filters/serializable.rb | 2 +- .../queries/filters/shared/any_user_name_attribute_filter.rb | 2 +- app/models/queries/filters/shared/boolean_filter.rb | 2 +- app/models/queries/filters/shared/custom_field_filter.rb | 2 +- app/models/queries/filters/shared/custom_fields/base.rb | 2 +- app/models/queries/filters/shared/custom_fields/bool.rb | 2 +- .../queries/filters/shared/custom_fields/list_optional.rb | 2 +- app/models/queries/filters/shared/custom_fields/user.rb | 2 +- app/models/queries/filters/shared/group_filter.rb | 2 +- app/models/queries/filters/shared/me_value_filter.rb | 2 +- app/models/queries/filters/shared/parsed_filter.rb | 2 +- app/models/queries/filters/shared/project_filter.rb | 2 +- app/models/queries/filters/shared/user_blocked_filter.rb | 2 +- app/models/queries/filters/shared/user_name_filter.rb | 2 +- app/models/queries/filters/shared/user_status_filter.rb | 2 +- app/models/queries/filters/strategies.rb | 2 +- app/models/queries/filters/strategies/base_strategy.rb | 2 +- app/models/queries/filters/strategies/boolean_list.rb | 2 +- app/models/queries/filters/strategies/boolean_list_strict.rb | 2 +- app/models/queries/filters/strategies/cf_float.rb | 2 +- app/models/queries/filters/strategies/cf_integer.rb | 2 +- app/models/queries/filters/strategies/cf_list_optional.rb | 2 +- app/models/queries/filters/strategies/cf_numeric.rb | 2 +- app/models/queries/filters/strategies/date.rb | 2 +- app/models/queries/filters/strategies/date_interval.rb | 2 +- app/models/queries/filters/strategies/date_time_past.rb | 2 +- app/models/queries/filters/strategies/empty_value.rb | 2 +- app/models/queries/filters/strategies/float.rb | 2 +- app/models/queries/filters/strategies/float_numeric.rb | 2 +- app/models/queries/filters/strategies/huge_list.rb | 2 +- app/models/queries/filters/strategies/inexistent.rb | 2 +- app/models/queries/filters/strategies/integer.rb | 2 +- app/models/queries/filters/strategies/integer_list.rb | 2 +- app/models/queries/filters/strategies/integer_list_optional.rb | 2 +- app/models/queries/filters/strategies/integer_numeric.rb | 2 +- app/models/queries/filters/strategies/list.rb | 2 +- app/models/queries/filters/strategies/list_all.rb | 2 +- app/models/queries/filters/strategies/list_optional.rb | 2 +- app/models/queries/filters/strategies/numeric.rb | 2 +- app/models/queries/filters/strategies/relation.rb | 2 +- app/models/queries/filters/strategies/search.rb | 2 +- app/models/queries/filters/strategies/string.rb | 2 +- app/models/queries/filters/strategies/text.rb | 2 +- app/models/queries/filters/strategies/validations.rb | 2 +- app/models/queries/filters/templated_value.rb | 2 +- app/models/queries/group_bys/available_group_bys.rb | 2 +- app/models/queries/group_bys/base.rb | 2 +- app/models/queries/group_bys/not_existing_group_by.rb | 2 +- app/models/queries/groups.rb | 2 +- app/models/queries/groups/group_query.rb | 2 +- app/models/queries/groups/orders/default_order.rb | 2 +- app/models/queries/individual_principals/orders/group_order.rb | 2 +- app/models/queries/individual_principals/orders/name_order.rb | 2 +- app/models/queries/members.rb | 2 +- app/models/queries/members/filters/any_name_attribute_filter.rb | 2 +- app/models/queries/members/filters/blocked_filter.rb | 2 +- app/models/queries/members/filters/created_at_filter.rb | 2 +- app/models/queries/members/filters/group_filter.rb | 2 +- app/models/queries/members/filters/member_filter.rb | 2 +- app/models/queries/members/filters/name_filter.rb | 2 +- app/models/queries/members/filters/principal_filter.rb | 2 +- app/models/queries/members/filters/project_filter.rb | 2 +- app/models/queries/members/filters/role_filter.rb | 2 +- app/models/queries/members/filters/status_filter.rb | 2 +- app/models/queries/members/filters/updated_at_filter.rb | 2 +- app/models/queries/members/member_query.rb | 2 +- app/models/queries/members/orders/default_order.rb | 2 +- app/models/queries/members/orders/email_order.rb | 2 +- app/models/queries/members/orders/name_order.rb | 2 +- app/models/queries/members/orders/status_order.rb | 2 +- app/models/queries/news.rb | 2 +- app/models/queries/news/filters/news_filter.rb | 2 +- app/models/queries/news/filters/project_filter.rb | 2 +- app/models/queries/news/news_query.rb | 2 +- app/models/queries/news/orders/default_order.rb | 2 +- app/models/queries/notifications/filters/id_filter.rb | 2 +- app/models/queries/notifications/filters/notification_filter.rb | 2 +- app/models/queries/notifications/filters/project_filter.rb | 2 +- app/models/queries/notifications/filters/read_ian_filter.rb | 2 +- app/models/queries/notifications/filters/reason_filter.rb | 2 +- app/models/queries/notifications/filters/resource_id_filter.rb | 2 +- .../queries/notifications/filters/resource_type_filter.rb | 2 +- app/models/queries/notifications/group_bys/group_by_project.rb | 2 +- app/models/queries/notifications/group_bys/group_by_reason.rb | 2 +- app/models/queries/notifications/orders/default_order.rb | 2 +- app/models/queries/notifications/orders/project_order.rb | 2 +- app/models/queries/notifications/orders/read_ian_order.rb | 2 +- app/models/queries/notifications/orders/reason_order.rb | 2 +- app/models/queries/operators.rb | 2 +- app/models/queries/operators/ago.rb | 2 +- app/models/queries/operators/all.rb | 2 +- app/models/queries/operators/all_and_non_blank.rb | 2 +- app/models/queries/operators/base.rb | 2 +- app/models/queries/operators/between_date.rb | 2 +- app/models/queries/operators/between_date_time.rb | 2 +- app/models/queries/operators/blocked.rb | 2 +- app/models/queries/operators/blocks.rb | 2 +- app/models/queries/operators/boolean_equals.rb | 2 +- app/models/queries/operators/boolean_equals_strict.rb | 2 +- app/models/queries/operators/boolean_not_equals.rb | 2 +- app/models/queries/operators/casted_greater_or_equal.rb | 2 +- app/models/queries/operators/casted_less_or_equal.rb | 2 +- app/models/queries/operators/children.rb | 2 +- app/models/queries/operators/closed_work_packages.rb | 2 +- app/models/queries/operators/concerns/contains_all_values.rb | 2 +- app/models/queries/operators/contains.rb | 2 +- app/models/queries/operators/date_range_clauses.rb | 2 +- app/models/queries/operators/datetime_range_clauses.rb | 2 +- app/models/queries/operators/duplicated.rb | 2 +- app/models/queries/operators/duplicates.rb | 2 +- app/models/queries/operators/equals.rb | 2 +- app/models/queries/operators/everywhere.rb | 2 +- app/models/queries/operators/follows.rb | 2 +- app/models/queries/operators/greater_or_equal.rb | 2 +- app/models/queries/operators/in.rb | 2 +- app/models/queries/operators/in_less_than.rb | 2 +- app/models/queries/operators/in_more_than.rb | 2 +- app/models/queries/operators/includes.rb | 2 +- app/models/queries/operators/less_or_equal.rb | 2 +- app/models/queries/operators/less_than_ago.rb | 2 +- app/models/queries/operators/more_than_ago.rb | 2 +- app/models/queries/operators/none.rb | 2 +- app/models/queries/operators/none_or_blank.rb | 2 +- app/models/queries/operators/not_contains.rb | 2 +- app/models/queries/operators/not_equals.rb | 2 +- app/models/queries/operators/on_date.rb | 2 +- app/models/queries/operators/on_date_time.rb | 2 +- app/models/queries/operators/open_work_packages.rb | 2 +- app/models/queries/operators/ordered_work_packages.rb | 2 +- app/models/queries/operators/parent.rb | 2 +- app/models/queries/operators/part_of.rb | 2 +- app/models/queries/operators/precedes.rb | 2 +- app/models/queries/operators/relates.rb | 2 +- app/models/queries/operators/required.rb | 2 +- app/models/queries/operators/requires.rb | 2 +- app/models/queries/operators/this_week.rb | 2 +- app/models/queries/operators/today.rb | 2 +- app/models/queries/orders/available_orders.rb | 2 +- app/models/queries/orders/base.rb | 2 +- app/models/queries/orders/not_existing_order.rb | 2 +- .../placeholder_users/filters/any_name_attribute_filter.rb | 2 +- app/models/queries/placeholder_users/filters/group_filter.rb | 2 +- app/models/queries/placeholder_users/filters/name_filter.rb | 2 +- .../placeholder_users/filters/placeholder_user_filter.rb | 2 +- app/models/queries/placeholder_users/filters/status_filter.rb | 2 +- app/models/queries/placeholder_users/orders/default_order.rb | 2 +- app/models/queries/placeholder_users/orders/group_order.rb | 2 +- app/models/queries/placeholder_users/orders/name_order.rb | 2 +- app/models/queries/principals.rb | 2 +- .../queries/principals/filters/any_name_attribute_filter.rb | 2 +- app/models/queries/principals/filters/id_filter.rb | 2 +- app/models/queries/principals/filters/member_filter.rb | 2 +- app/models/queries/principals/filters/name_filter.rb | 2 +- app/models/queries/principals/filters/principal_filter.rb | 2 +- app/models/queries/principals/filters/status_filter.rb | 2 +- app/models/queries/principals/filters/type_filter.rb | 2 +- app/models/queries/principals/filters/typeahead_filter.rb | 2 +- app/models/queries/principals/orders/name_order.rb | 2 +- app/models/queries/principals/principal_query.rb | 2 +- app/models/queries/projects.rb | 2 +- app/models/queries/projects/filters/active_filter.rb | 2 +- app/models/queries/projects/filters/ancestor_filter.rb | 2 +- app/models/queries/projects/filters/created_at_filter.rb | 2 +- app/models/queries/projects/filters/custom_field_context.rb | 2 +- app/models/queries/projects/filters/custom_field_filter.rb | 2 +- app/models/queries/projects/filters/id_filter.rb | 2 +- .../queries/projects/filters/latest_activity_at_filter.rb | 2 +- .../queries/projects/filters/name_and_identifier_filter.rb | 2 +- app/models/queries/projects/filters/parent_filter.rb | 2 +- app/models/queries/projects/filters/principal_filter.rb | 2 +- app/models/queries/projects/filters/project_filter.rb | 2 +- app/models/queries/projects/filters/project_status_filter.rb | 2 +- app/models/queries/projects/filters/public_filter.rb | 2 +- app/models/queries/projects/filters/templated_filter.rb | 2 +- app/models/queries/projects/filters/type_filter.rb | 2 +- app/models/queries/projects/filters/typeahead_filter.rb | 2 +- app/models/queries/projects/filters/user_action_filter.rb | 2 +- app/models/queries/projects/filters/visible_filter.rb | 2 +- app/models/queries/projects/orders/custom_field_order.rb | 2 +- app/models/queries/projects/orders/default_order.rb | 2 +- app/models/queries/projects/orders/latest_activity_at_order.rb | 2 +- app/models/queries/projects/orders/name_order.rb | 2 +- app/models/queries/projects/orders/project_status_order.rb | 2 +- app/models/queries/projects/orders/required_disk_space_order.rb | 2 +- app/models/queries/projects/orders/typeahead_order.rb | 2 +- app/models/queries/projects/project_query.rb | 2 +- app/models/queries/queries.rb | 2 +- app/models/queries/queries/filters/hidden_filter.rb | 2 +- app/models/queries/queries/filters/id_filter.rb | 2 +- app/models/queries/queries/filters/project_filter.rb | 2 +- app/models/queries/queries/filters/project_identifier_filter.rb | 2 +- app/models/queries/queries/filters/query_filter.rb | 2 +- app/models/queries/queries/filters/updated_at_filter.rb | 2 +- app/models/queries/queries/query_query.rb | 2 +- app/models/queries/register.rb | 2 +- app/models/queries/relations.rb | 2 +- app/models/queries/relations/filters/from_filter.rb | 2 +- app/models/queries/relations/filters/id_filter.rb | 2 +- app/models/queries/relations/filters/involved_filter.rb | 2 +- app/models/queries/relations/filters/relation_filter.rb | 2 +- app/models/queries/relations/filters/to_filter.rb | 2 +- app/models/queries/relations/filters/type_filter.rb | 2 +- app/models/queries/relations/filters/visibility_checking.rb | 2 +- app/models/queries/relations/orders/default_order.rb | 2 +- app/models/queries/relations/relation_query.rb | 2 +- app/models/queries/roles.rb | 2 +- app/models/queries/roles/filters/grantable_filter.rb | 2 +- app/models/queries/roles/filters/role_filter.rb | 2 +- app/models/queries/roles/filters/unit_filter.rb | 2 +- app/models/queries/roles/role_query.rb | 2 +- app/models/queries/scopes/having_views.rb | 2 +- app/models/queries/scopes/visible.rb | 2 +- app/models/queries/serialization/hash.rb | 2 +- app/models/queries/users.rb | 2 +- app/models/queries/users/filters/any_name_attribute_filter.rb | 2 +- app/models/queries/users/filters/blocked_filter.rb | 2 +- app/models/queries/users/filters/group_filter.rb | 2 +- app/models/queries/users/filters/login_filter.rb | 2 +- app/models/queries/users/filters/name_filter.rb | 2 +- app/models/queries/users/filters/status_filter.rb | 2 +- app/models/queries/users/filters/user_filter.rb | 2 +- app/models/queries/users/orders/default_order.rb | 2 +- app/models/queries/users/orders/group_order.rb | 2 +- app/models/queries/users/orders/name_order.rb | 2 +- app/models/queries/users/user_query.rb | 2 +- app/models/queries/versions.rb | 2 +- app/models/queries/versions/filters/sharing_filter.rb | 2 +- app/models/queries/versions/filters/version_filter.rb | 2 +- app/models/queries/versions/orders/name_order.rb | 2 +- app/models/queries/versions/orders/semver_name_order.rb | 2 +- app/models/queries/versions/version_query.rb | 2 +- app/models/queries/views.rb | 2 +- app/models/queries/views/filters/project_filter.rb | 2 +- app/models/queries/views/filters/type_filter.rb | 2 +- app/models/queries/views/filters/view_filter.rb | 2 +- app/models/queries/views/orders/default_order.rb | 2 +- app/models/queries/views/view_query.rb | 2 +- app/models/queries/work_packages.rb | 2 +- app/models/queries/work_packages/columns/custom_field_column.rb | 2 +- .../queries/work_packages/columns/manual_sorting_column.rb | 2 +- app/models/queries/work_packages/columns/property_column.rb | 2 +- app/models/queries/work_packages/columns/relation_column.rb | 2 +- .../queries/work_packages/columns/relation_of_type_column.rb | 2 +- .../queries/work_packages/columns/relation_to_type_column.rb | 2 +- app/models/queries/work_packages/columns/work_package_column.rb | 2 +- app/models/queries/work_packages/common/manual_sorting.rb | 2 +- app/models/queries/work_packages/filter.rb | 2 +- app/models/queries/work_packages/filter/assigned_to_filter.rb | 2 +- .../queries/work_packages/filter/assignee_or_group_filter.rb | 2 +- .../queries/work_packages/filter/attachment_base_filter.rb | 2 +- .../queries/work_packages/filter/attachment_content_filter.rb | 2 +- .../queries/work_packages/filter/attachment_file_name_filter.rb | 2 +- app/models/queries/work_packages/filter/author_filter.rb | 2 +- app/models/queries/work_packages/filter/blocked_filter.rb | 2 +- app/models/queries/work_packages/filter/blocks_filter.rb | 2 +- app/models/queries/work_packages/filter/category_filter.rb | 2 +- app/models/queries/work_packages/filter/comment_filter.rb | 2 +- app/models/queries/work_packages/filter/created_at_filter.rb | 2 +- app/models/queries/work_packages/filter/custom_field_context.rb | 2 +- app/models/queries/work_packages/filter/custom_field_filter.rb | 2 +- .../queries/work_packages/filter/dates_interval_filter.rb | 2 +- app/models/queries/work_packages/filter/description_filter.rb | 2 +- app/models/queries/work_packages/filter/done_ratio_filter.rb | 2 +- app/models/queries/work_packages/filter/due_date_filter.rb | 2 +- app/models/queries/work_packages/filter/duplicated_filter.rb | 2 +- app/models/queries/work_packages/filter/duplicates_filter.rb | 2 +- .../queries/work_packages/filter/estimated_hours_filter.rb | 2 +- app/models/queries/work_packages/filter/filter_configuration.rb | 2 +- app/models/queries/work_packages/filter/filter_for_wp_mixin.rb | 2 +- .../work_packages/filter/filter_on_directed_relations_mixin.rb | 2 +- .../filter/filter_on_undirected_relations_mixin.rb | 2 +- app/models/queries/work_packages/filter/follows_filter.rb | 2 +- app/models/queries/work_packages/filter/group_filter.rb | 2 +- app/models/queries/work_packages/filter/id_filter.rb | 2 +- app/models/queries/work_packages/filter/includes_filter.rb | 2 +- app/models/queries/work_packages/filter/manual_sort_filter.rb | 2 +- .../queries/work_packages/filter/me_value_filter_mixin.rb | 2 +- app/models/queries/work_packages/filter/milestone_filter.rb | 2 +- .../queries/work_packages/filter/only_subproject_filter.rb | 2 +- .../queries/work_packages/filter/or_filter_for_wp_mixin.rb | 2 +- app/models/queries/work_packages/filter/parent_filter.rb | 2 +- app/models/queries/work_packages/filter/partof_filter.rb | 2 +- app/models/queries/work_packages/filter/precedes_filter.rb | 2 +- .../queries/work_packages/filter/principal_base_filter.rb | 2 +- app/models/queries/work_packages/filter/principal_loader.rb | 2 +- app/models/queries/work_packages/filter/priority_filter.rb | 2 +- app/models/queries/work_packages/filter/project_filter.rb | 2 +- app/models/queries/work_packages/filter/relatable_filter.rb | 2 +- app/models/queries/work_packages/filter/relates_filter.rb | 2 +- app/models/queries/work_packages/filter/required_filter.rb | 2 +- app/models/queries/work_packages/filter/requires_filter.rb | 2 +- app/models/queries/work_packages/filter/responsible_filter.rb | 2 +- app/models/queries/work_packages/filter/role_filter.rb | 2 +- app/models/queries/work_packages/filter/search_filter.rb | 2 +- app/models/queries/work_packages/filter/start_date_filter.rb | 2 +- app/models/queries/work_packages/filter/status_filter.rb | 2 +- app/models/queries/work_packages/filter/subject_filter.rb | 2 +- app/models/queries/work_packages/filter/subject_or_id_filter.rb | 2 +- app/models/queries/work_packages/filter/subproject_filter.rb | 2 +- .../queries/work_packages/filter/text_filter_on_join_mixin.rb | 2 +- app/models/queries/work_packages/filter/type_filter.rb | 2 +- app/models/queries/work_packages/filter/typeahead_filter.rb | 2 +- app/models/queries/work_packages/filter/updated_at_filter.rb | 2 +- app/models/queries/work_packages/filter/version_filter.rb | 2 +- app/models/queries/work_packages/filter/watcher_filter.rb | 2 +- app/models/queries/work_packages/filter/work_package_filter.rb | 2 +- app/models/queries/work_packages/filter_serializer.rb | 2 +- app/models/query.rb | 2 +- app/models/query/highlighting.rb | 2 +- app/models/query/manual_sorting.rb | 2 +- app/models/query/results.rb | 2 +- app/models/query/results/group_by.rb | 2 +- app/models/query/results/sums.rb | 2 +- app/models/query/sort_criteria.rb | 2 +- app/models/query/statement_invalid.rb | 2 +- app/models/query/timelines.rb | 2 +- app/models/relation.rb | 2 +- app/models/relations/scopes/follows_non_manual_ancestors.rb | 2 +- app/models/relations/scopes/visible.rb | 2 +- app/models/repository.rb | 2 +- app/models/repository/git.rb | 2 +- app/models/repository/subversion.rb | 2 +- app/models/role.rb | 2 +- app/models/role_permission.rb | 2 +- app/models/scopes/scoped.rb | 2 +- app/models/serializers/indifferent_hash_serializer.rb | 2 +- app/models/sessions/sql_bypass.rb | 2 +- app/models/sessions/user_session.rb | 2 +- app/models/setting.rb | 2 +- app/models/setting/aliases.rb | 2 +- app/models/setting/callbacks_helper.rb | 2 +- app/models/setting/self_registration.rb | 2 +- app/models/status.rb | 2 +- app/models/status/inexistent_status.rb | 2 +- app/models/system_user.rb | 2 +- app/models/token/api.rb | 2 +- app/models/token/auto_login.rb | 2 +- app/models/token/backup.rb | 2 +- app/models/token/enterprise_trial_key.rb | 2 +- app/models/token/invitation.rb | 2 +- app/models/token/recovery.rb | 2 +- app/models/token/rss.rb | 2 +- app/models/type.rb | 2 +- app/models/type/attribute_group.rb | 2 +- app/models/type/attribute_groups.rb | 2 +- app/models/type/attributes.rb | 2 +- app/models/type/form_group.rb | 2 +- app/models/type/inexistent_type.rb | 2 +- app/models/type/query_group.rb | 2 +- app/models/types/scopes/milestone.rb | 2 +- app/models/user.rb | 2 +- app/models/user_custom_field.rb | 2 +- app/models/user_password.rb | 2 +- app/models/user_password/bcrypt.rb | 2 +- app/models/user_password/sha1.rb | 2 +- app/models/user_preference.rb | 2 +- app/models/user_preferences/schema.rb | 2 +- app/models/users/inexistent_user.rb | 2 +- app/models/users/project_authorization_cache.rb | 2 +- app/models/users/project_role_cache.rb | 2 +- app/models/users/scopes/find_by_login.rb | 2 +- app/models/users/scopes/having_reminder_mail_to_send.rb | 2 +- app/models/users/scopes/newest.rb | 2 +- app/models/users/scopes/notified_globally.rb | 2 +- app/models/users/scopes/watcher_recipients.rb | 2 +- app/models/version.rb | 2 +- app/models/version_custom_field.rb | 2 +- app/models/versions/project_sharing.rb | 2 +- app/models/versions/scopes/order_by_semver_name.rb | 2 +- app/models/versions/scopes/rolled_up.rb | 2 +- app/models/versions/scopes/shared_with.rb | 2 +- app/models/view.rb | 2 +- app/models/watcher.rb | 2 +- app/models/wiki.rb | 2 +- app/models/wiki_content.rb | 2 +- app/models/wiki_page.rb | 2 +- app/models/wiki_redirect.rb | 2 +- app/models/wikis/annotate.rb | 2 +- app/models/wikis/diff.rb | 2 +- app/models/work_package.rb | 2 +- app/models/work_package/ancestors.rb | 2 +- app/models/work_package/ask_before_destruction.rb | 2 +- app/models/work_package/available_custom_fields.rb | 2 +- app/models/work_package/custom_actioned.rb | 2 +- app/models/work_package/exports/csv.rb | 2 +- app/models/work_package/exports/formatters/costs.rb | 2 +- app/models/work_package/exports/formatters/estimated_hours.rb | 2 +- app/models/work_package/exports/query_exporter.rb | 2 +- app/models/work_package/hooks.rb | 2 +- app/models/work_package/inexistent_work_package.rb | 2 +- app/models/work_package/journalized.rb | 2 +- app/models/work_package/parent.rb | 2 +- app/models/work_package/pdf_export/attachments.rb | 2 +- app/models/work_package/pdf_export/common.rb | 2 +- app/models/work_package/pdf_export/formattable.rb | 2 +- app/models/work_package/pdf_export/view.rb | 2 +- app/models/work_package/pdf_export/work_package_list_to_pdf.rb | 2 +- app/models/work_package/pdf_export/work_package_to_pdf.rb | 2 +- app/models/work_package/scheduling_rules.rb | 2 +- app/models/work_package/status_transitions.rb | 2 +- app/models/work_package/time_entries_cleaner.rb | 2 +- app/models/work_package/typed_dag_defaults.rb | 2 +- app/models/work_package/validations.rb | 2 +- app/models/work_package_custom_field.rb | 2 +- app/models/work_packages/costs.rb | 2 +- app/models/work_packages/derived_dates.rb | 2 +- app/models/work_packages/scopes/for_scheduling.rb | 2 +- app/models/work_packages/scopes/include_derived_dates.rb | 2 +- app/models/work_packages/scopes/include_spent_time.rb | 2 +- .../work_packages/scopes/left_join_self_and_descendants.rb | 2 +- app/models/work_packages/spent_time.rb | 2 +- app/models/workflow.rb | 2 +- app/policies/base_policy.rb | 2 +- app/policies/query_policy.rb | 2 +- app/policies/redirect_policy.rb | 2 +- app/policies/scm/authorization_policy.rb | 2 +- app/policies/scm/git_authorization_policy.rb | 2 +- app/policies/scm/subversion_authorization_policy.rb | 2 +- app/policies/version_policy.rb | 2 +- app/policies/work_package_policy.rb | 2 +- app/seeders/admin_user_seeder.rb | 2 +- app/seeders/basic_data/activity_seeder.rb | 2 +- app/seeders/basic_data/builtin_roles_seeder.rb | 2 +- app/seeders/basic_data/color_scheme_seeder.rb | 2 +- app/seeders/basic_data/color_seeder.rb | 2 +- app/seeders/basic_data/priority_seeder.rb | 2 +- app/seeders/basic_data/role_seeder.rb | 2 +- app/seeders/basic_data/setting_seeder.rb | 2 +- app/seeders/basic_data/status_seeder.rb | 2 +- app/seeders/basic_data/type_seeder.rb | 2 +- app/seeders/basic_data/workflow_seeder.rb | 2 +- app/seeders/basic_data_seeder.rb | 2 +- app/seeders/development_data/users_seeder.rb | 2 +- app/seeders/development_data_seeder.rb | 2 +- app/seeders/root_seeder.rb | 2 +- app/seeders/seeder.rb | 2 +- app/seeders/standard_seeder/basic_data/activity_seeder.rb | 2 +- app/seeders/standard_seeder/basic_data/priority_seeder.rb | 2 +- app/seeders/standard_seeder/basic_data/status_seeder.rb | 2 +- app/seeders/standard_seeder/basic_data/type_seeder.rb | 2 +- app/seeders/standard_seeder/basic_data/workflow_seeder.rb | 2 +- app/seeders/standard_seeder/basic_data_seeder.rb | 2 +- app/services/add_work_package_note_service.rb | 2 +- app/services/api/parse_resource_params_service.rb | 2 +- app/services/api/v3/params_to_query_service.rb | 2 +- app/services/api/v3/parse_query_params_service.rb | 2 +- app/services/api/v3/parse_resource_params_service.rb | 2 +- app/services/api/v3/update_query_from_v3_params_service.rb | 2 +- .../api/v3/work_package_collection_from_query_params_service.rb | 2 +- .../api/v3/work_package_collection_from_query_service.rb | 2 +- app/services/attachments/base_service.rb | 2 +- app/services/attachments/build_service.rb | 2 +- app/services/attachments/create_service.rb | 2 +- app/services/attachments/delete_service.rb | 2 +- app/services/attachments/prepare_upload_service.rb | 2 +- app/services/attachments/replace_attachments.rb | 2 +- app/services/attachments/set_attributes_service.rb | 2 +- app/services/attachments/set_prepared_attributes_service.rb | 2 +- app/services/attachments/set_replacements.rb | 2 +- app/services/attachments/touch_container.rb | 2 +- app/services/attribute_help_texts/create_service.rb | 2 +- app/services/attribute_help_texts/set_attributes_service.rb | 2 +- app/services/attribute_help_texts/update_service.rb | 2 +- app/services/authentication/omniauth_service.rb | 2 +- app/services/authorization.rb | 2 +- app/services/authorization/abstract_query.rb | 2 +- app/services/authorization/abstract_user_query.rb | 2 +- app/services/authorization/enterprise_service.rb | 2 +- app/services/authorization/project_query.rb | 2 +- app/services/authorization/query_transformation.rb | 2 +- app/services/authorization/query_transformation_visitor.rb | 2 +- app/services/authorization/query_transformations.rb | 2 +- app/services/authorization/query_transformations_order.rb | 2 +- app/services/authorization/user_allowed_query.rb | 2 +- app/services/authorization/user_allowed_service.rb | 2 +- app/services/authorization/user_global_roles_query.rb | 2 +- app/services/authorization/user_project_roles_query.rb | 2 +- app/services/authorization/user_roles_query.rb | 2 +- app/services/authorization_service.rb | 2 +- app/services/backups/create_service.rb | 2 +- app/services/backups/set_attributes_service.rb | 2 +- app/services/base_project_service.rb | 2 +- app/services/base_services/base_callable.rb | 2 +- app/services/base_services/base_contracted.rb | 2 +- app/services/base_services/copy.rb | 2 +- app/services/base_services/create.rb | 2 +- app/services/base_services/delete.rb | 2 +- app/services/base_services/set_attributes.rb | 2 +- app/services/base_services/update.rb | 2 +- app/services/base_services/write.rb | 2 +- app/services/base_type_service.rb | 2 +- app/services/changesets/log_time_service.rb | 2 +- app/services/concerns/contracted.rb | 2 +- app/services/concerns/with_reversible_state.rb | 2 +- app/services/copy/dependency.rb | 2 +- app/services/create_type_service.rb | 2 +- app/services/custom_actions/base_service.rb | 2 +- app/services/custom_actions/create_service.rb | 2 +- app/services/custom_actions/update_service.rb | 2 +- app/services/custom_actions/update_work_package_service.rb | 2 +- app/services/custom_fields/create_service.rb | 2 +- app/services/custom_fields/set_attributes_service.rb | 2 +- app/services/custom_fields/update_service.rb | 2 +- app/services/design/update_design_service.rb | 2 +- app/services/grids/copy/widgets_dependent_service.rb | 2 +- app/services/grids/copy_service.rb | 2 +- app/services/groups/add_users_service.rb | 2 +- app/services/groups/cleanup_inherited_roles_service.rb | 2 +- app/services/groups/concerns/membership_manipulation.rb | 2 +- app/services/groups/create_service.rb | 2 +- app/services/groups/delete_service.rb | 2 +- app/services/groups/set_attributes_service.rb | 2 +- app/services/groups/update_roles_service.rb | 2 +- app/services/groups/update_service.rb | 2 +- app/services/journals/create_service.rb | 2 +- app/services/journals/set_attributes_service.rb | 2 +- app/services/journals/update_service.rb | 2 +- app/services/members/cleanup_service.rb | 2 +- app/services/members/concerns/cleaned_up.rb | 2 +- app/services/members/concerns/notification_sender.rb | 2 +- app/services/members/create_service.rb | 2 +- app/services/members/delete_service.rb | 2 +- app/services/members/edit_membership_service.rb | 2 +- app/services/members/set_attributes_service.rb | 2 +- app/services/members/update_service.rb | 2 +- app/services/messages/create_service.rb | 2 +- app/services/messages/set_attributes_service.rb | 2 +- app/services/messages/update_service.rb | 2 +- app/services/notifications/aggregated_journal_service.rb | 2 +- app/services/notifications/create_from_model_service.rb | 2 +- .../notifications/create_from_model_service/comment_strategy.rb | 2 +- .../notifications/create_from_model_service/message_strategy.rb | 2 +- .../notifications/create_from_model_service/news_strategy.rb | 2 +- .../create_from_model_service/wiki_content_strategy.rb | 2 +- .../create_from_model_service/work_package_strategy.rb | 2 +- app/services/notifications/create_service.rb | 2 +- app/services/notifications/mail_service.rb | 2 +- app/services/notifications/mail_service/comment_strategy.rb | 2 +- app/services/notifications/mail_service/message_strategy.rb | 2 +- app/services/notifications/mail_service/news_strategy.rb | 2 +- .../notifications/mail_service/wiki_content_strategy.rb | 2 +- .../notifications/mail_service/work_package_strategy.rb | 2 +- app/services/notifications/set_attributes_service.rb | 2 +- app/services/oauth/persist_application_service.rb | 2 +- app/services/params_to_query_service.rb | 2 +- app/services/parse_schema_filter_params_service.rb | 2 +- app/services/placeholder_users/create_service.rb | 2 +- app/services/placeholder_users/delete_service.rb | 2 +- app/services/placeholder_users/set_attributes_service.rb | 2 +- app/services/placeholder_users/update_service.rb | 2 +- app/services/principals/replace_references_service.rb | 2 +- app/services/projects/archive_service.rb | 2 +- app/services/projects/concerns/new_project_service.rb | 2 +- app/services/projects/concerns/update_demo_data.rb | 2 +- app/services/projects/copy/boards_dependent_service.rb | 2 +- app/services/projects/copy/categories_dependent_service.rb | 2 +- app/services/projects/copy/dependency.rb | 2 +- app/services/projects/copy/forums_dependent_service.rb | 2 +- app/services/projects/copy/members_dependent_service.rb | 2 +- app/services/projects/copy/overview_dependent_service.rb | 2 +- app/services/projects/copy/queries_dependent_service.rb | 2 +- app/services/projects/copy/versions_dependent_service.rb | 2 +- app/services/projects/copy/wiki_dependent_service.rb | 2 +- .../projects/copy/wiki_page_attachments_dependent_service.rb | 2 +- .../projects/copy/work_package_attachments_dependent_service.rb | 2 +- app/services/projects/copy/work_packages_dependent_service.rb | 2 +- app/services/projects/copy_service.rb | 2 +- app/services/projects/create_service.rb | 2 +- app/services/projects/delete_service.rb | 2 +- app/services/projects/enabled_modules_service.rb | 2 +- app/services/projects/enqueue_copy_service.rb | 2 +- app/services/projects/gantt_query_generator_service.rb | 2 +- app/services/projects/schedule_deletion_service.rb | 2 +- app/services/projects/set_attributes_service.rb | 2 +- app/services/projects/unarchive_service.rb | 2 +- app/services/projects/update_service.rb | 2 +- app/services/queries/base_service.rb | 2 +- app/services/queries/copy/filters_mapper.rb | 2 +- .../queries/copy/ordered_work_packages_dependent_service.rb | 2 +- app/services/queries/copy/views_dependent_service.rb | 2 +- app/services/queries/copy_service.rb | 2 +- app/services/queries/create_service.rb | 2 +- app/services/queries/set_attributes_service.rb | 2 +- app/services/queries/update_service.rb | 2 +- app/services/relations/base_service.rb | 2 +- app/services/relations/create_service.rb | 2 +- app/services/relations/delete_service.rb | 2 +- app/services/relations/update_service.rb | 2 +- app/services/reports/assignee_report.rb | 2 +- app/services/reports/author_report.rb | 2 +- app/services/reports/category_report.rb | 2 +- app/services/reports/priority_report.rb | 2 +- app/services/reports/report.rb | 2 +- app/services/reports/reports_service.rb | 2 +- app/services/reports/responsible_report.rb | 2 +- app/services/reports/subproject_report.rb | 2 +- app/services/reports/type_report.rb | 2 +- app/services/reports/version_report.rb | 2 +- app/services/roles/create_service.rb | 2 +- app/services/roles/notify_mixin.rb | 2 +- app/services/roles/set_attributes_service.rb | 2 +- app/services/roles/update_service.rb | 2 +- app/services/scm/base_repository_service.rb | 2 +- app/services/scm/checkout_instructions_service.rb | 2 +- app/services/scm/create_managed_repository_service.rb | 2 +- app/services/scm/delete_managed_repository_service.rb | 2 +- app/services/scm/repository_factory_service.rb | 2 +- app/services/service_result.rb | 2 +- app/services/sessions/base_service.rb | 2 +- app/services/sessions/drop_other_sessions_service.rb | 2 +- app/services/sessions/initialize_session_service.rb | 2 +- app/services/settings/update_service.rb | 2 +- app/services/shared/block_service.rb | 2 +- app/services/shared/service_context.rb | 2 +- app/services/shared/service_state.rb | 2 +- app/services/update_projects_types_service.rb | 2 +- app/services/update_query_from_params_service.rb | 2 +- app/services/update_type_service.rb | 2 +- app/services/user_preferences/set_attributes_service.rb | 2 +- app/services/user_preferences/update_service.rb | 2 +- app/services/user_search_service.rb | 2 +- app/services/users/change_password_service.rb | 2 +- app/services/users/create_service.rb | 2 +- app/services/users/delete_service.rb | 2 +- app/services/users/login_service.rb | 2 +- app/services/users/logout_service.rb | 2 +- app/services/users/register_user_service.rb | 2 +- app/services/users/set_attributes_service.rb | 2 +- app/services/users/update_service.rb | 2 +- app/services/versions/create_service.rb | 2 +- app/services/versions/delete_service.rb | 2 +- app/services/versions/set_attributes_service.rb | 2 +- app/services/versions/update_service.rb | 2 +- app/services/views/create_service.rb | 2 +- app/services/views/set_attributes_service.rb | 2 +- app/services/wiki_pages/copy_service.rb | 2 +- app/services/wiki_pages/create_service.rb | 2 +- app/services/wiki_pages/set_attributes_service.rb | 2 +- app/services/wiki_pages/update_service.rb | 2 +- app/services/work_packages/bulk/bulked_service.rb | 2 +- app/services/work_packages/bulk/copy_service.rb | 2 +- app/services/work_packages/bulk/move_service.rb | 2 +- app/services/work_packages/bulk/update_service.rb | 2 +- app/services/work_packages/copy_service.rb | 2 +- app/services/work_packages/create_service.rb | 2 +- app/services/work_packages/delete_service.rb | 2 +- app/services/work_packages/exports/schedule_service.rb | 2 +- app/services/work_packages/schedule_dependency.rb | 2 +- app/services/work_packages/set_attributes_service.rb | 2 +- app/services/work_packages/set_schedule_service.rb | 2 +- app/services/work_packages/shared/update_ancestors.rb | 2 +- app/services/work_packages/update_ancestors_service.rb | 2 +- app/services/work_packages/update_service.rb | 2 +- app/services/workflows/bulk_update_service.rb | 2 +- app/uploaders/file_uploader.rb | 2 +- app/uploaders/fog_file_uploader.rb | 2 +- app/uploaders/local_file_uploader.rb | 2 +- app/validators/not_nil_validator.rb | 2 +- app/views/accessibility/_empty_element_tag.html.erb | 2 +- app/views/account/_auth_providers.html.erb | 2 +- app/views/account/_login.html.erb | 2 +- app/views/account/_omniauth_login.html.erb | 2 +- app/views/account/_password_login_form.html.erb | 2 +- app/views/account/_register.html.erb | 2 +- app/views/account/consent.html.erb | 2 +- app/views/account/exit.html.erb | 2 +- app/views/account/login.html.erb | 2 +- app/views/account/lost_password.html.erb | 2 +- app/views/account/password_recovery.html.erb | 2 +- app/views/account/register.html.erb | 2 +- app/views/activities/index.html.erb | 2 +- app/views/admin/backups/reset_token.html.erb | 2 +- app/views/admin/backups/show.html.erb | 2 +- app/views/admin/index.html.erb | 2 +- app/views/admin/info.html.erb | 2 +- app/views/admin/plugins.html.erb | 2 +- app/views/admin/settings/api_settings/show.html.erb | 2 +- app/views/admin/settings/attachments_settings/show.html.erb | 2 +- app/views/admin/settings/authentication_settings/show.html.erb | 2 +- app/views/admin/settings/display_settings/show.html.erb | 2 +- app/views/admin/settings/general_settings/show.html.erb | 2 +- app/views/admin/settings/incoming_mails_settings/show.html.erb | 2 +- .../admin/settings/mail_notifications_settings/show.html.erb | 2 +- app/views/admin/settings/notifications_settings/show.html.erb | 2 +- app/views/admin/settings/projects_settings/show.html.erb | 2 +- app/views/admin/settings/repositories_settings/show.html.erb | 2 +- app/views/admin/settings/show_plugin.html.erb | 2 +- app/views/admin/settings/users_settings/show.html.erb | 2 +- app/views/admin/settings/work_packages_settings/show.html.erb | 2 +- app/views/attribute_help_texts/_form.html.erb | 2 +- app/views/attribute_help_texts/edit.html.erb | 2 +- app/views/attribute_help_texts/index.html.erb | 2 +- app/views/attribute_help_texts/new.html.erb | 2 +- app/views/auth_sources/_form.html.erb | 2 +- app/views/auth_sources/edit.html.erb | 2 +- app/views/auth_sources/index.html.erb | 2 +- app/views/auth_sources/new.html.erb | 2 +- app/views/categories/_form.html.erb | 2 +- app/views/categories/create.js.erb | 2 +- app/views/categories/destroy.html.erb | 2 +- app/views/categories/edit.html.erb | 2 +- app/views/categories/new.html.erb | 2 +- app/views/colors/_form.html.erb | 2 +- app/views/colors/confirm_destroy.html.erb | 2 +- app/views/colors/edit.html.erb | 2 +- app/views/colors/index.html.erb | 2 +- app/views/colors/new.html.erb | 2 +- app/views/common/_diff.html.erb | 2 +- app/views/common/_error_base.html.erb | 2 +- app/views/common/_file.html.erb | 2 +- app/views/common/_no_results.html.erb | 2 +- app/views/common/_tabs.html.erb | 2 +- app/views/common/_validation_error.html.erb | 2 +- app/views/common/error.html.erb | 2 +- app/views/common/feed.atom.builder | 2 +- app/views/common/list_attachments.json.erb | 2 +- app/views/custom_actions/edit.html.erb | 2 +- app/views/custom_actions/new.html.erb | 2 +- app/views/custom_fields/_custom_fields_header.html.erb | 2 +- app/views/custom_fields/_custom_options.html.erb | 2 +- app/views/custom_fields/_form.html.erb | 2 +- app/views/custom_fields/_tab.html.erb | 2 +- app/views/custom_fields/edit.html.erb | 2 +- app/views/custom_fields/index.html.erb | 2 +- app/views/custom_fields/new.html.erb | 2 +- app/views/custom_styles/show.html.erb | 2 +- app/views/custom_styles/upsale.html.erb | 2 +- app/views/customizable/_form.html.erb | 2 +- app/views/enterprises/_info.html.erb | 2 +- app/views/enumerations/_form.html.erb | 2 +- app/views/enumerations/destroy.html.erb | 2 +- app/views/enumerations/edit.html.erb | 2 +- app/views/enumerations/index.html.erb | 2 +- app/views/enumerations/new.html.erb | 2 +- app/views/forums/_form.html.erb | 2 +- app/views/forums/edit.html.erb | 2 +- app/views/forums/index.html.erb | 2 +- app/views/forums/new.html.erb | 2 +- app/views/forums/show.html.erb | 2 +- app/views/groups/_form.html.erb | 2 +- app/views/groups/_general.html.erb | 2 +- app/views/groups/_memberships.html.erb | 2 +- app/views/groups/_users.html.erb | 2 +- app/views/groups/_users_table.html.erb | 2 +- app/views/groups/autocomplete_for_user.html.erb | 2 +- app/views/groups/edit.html.erb | 2 +- app/views/groups/index.html.erb | 2 +- app/views/groups/new.html.erb | 2 +- app/views/groups/show.html.erb | 2 +- app/views/homescreen/index.html.erb | 2 +- app/views/homescreen/robots.text.erb | 2 +- app/views/hooks/login/_auth_provider.html.erb | 2 +- app/views/individual_principals/_memberships.html.erb | 2 +- app/views/journals/_diff.html.erb | 2 +- app/views/journals/diff.html.erb | 2 +- app/views/journals/index.atom.builder | 2 +- app/views/layouts/admin.html.erb | 2 +- app/views/layouts/angular/angular.html.erb | 2 +- app/views/layouts/angular/notifications.html.erb | 2 +- app/views/layouts/base.html.erb | 2 +- app/views/layouts/mailer.html.erb | 2 +- app/views/layouts/mailer.text.erb | 2 +- app/views/layouts/my.html.erb | 2 +- app/views/layouts/no_menu.html.erb | 2 +- app/views/layouts/only_logo.html.erb | 2 +- app/views/ldap_auth_sources/_form.html.erb | 2 +- app/views/members/_autocomplete_for_member.html.erb | 2 +- app/views/members/_common_notice.html.erb | 2 +- app/views/members/_member_form.html.erb | 2 +- app/views/members/index.html.erb | 2 +- app/views/messages/_form.html.erb | 2 +- app/views/messages/edit.html.erb | 2 +- app/views/messages/new.html.erb | 2 +- app/views/messages/show.html.erb | 2 +- app/views/my/_password_form_fields.html.erb | 2 +- app/views/my/access_token.html.erb | 2 +- app/views/my/account.html.erb | 2 +- app/views/my/password.html.erb | 2 +- app/views/my/settings.html.erb | 2 +- app/views/news/_form.html.erb | 2 +- app/views/news/_news.html.erb | 2 +- app/views/news/edit.html.erb | 2 +- app/views/news/index.html.erb | 2 +- app/views/news/new.html.erb | 2 +- app/views/news/show.html.erb | 2 +- app/views/oauth/applications/_form.html.erb | 2 +- app/views/oauth/applications/edit.html.erb | 2 +- app/views/oauth/applications/index.html.erb | 2 +- app/views/oauth/applications/new.html.erb | 2 +- app/views/oauth/applications/show.html.erb | 2 +- app/views/onboarding/_configuration_modal.html.erb | 2 +- app/views/onboarding/_menu_item.html.erb | 2 +- app/views/onboarding/_onboarding_video_modal.html.erb | 2 +- app/views/placeholder_users/_toolbar.html.erb | 2 +- app/views/placeholder_users/_toolbar_delete.html.erb | 2 +- app/views/placeholder_users/deletion_info.html.erb | 2 +- app/views/placeholder_users/show.html.erb | 2 +- app/views/principals/_assigned_global_role.html.erb | 2 +- app/views/principals/_available_global_role.html.erb | 2 +- app/views/principals/_available_global_roles.html.erb | 2 +- app/views/principals/_global_roles.html.erb | 2 +- app/views/principals/_global_roles_header.html.erb | 2 +- app/views/project_mailer/copy_project_failed.html.erb | 2 +- app/views/project_mailer/copy_project_failed.text.erb | 2 +- app/views/project_mailer/copy_project_succeeded.html.erb | 2 +- app/views/project_mailer/copy_project_succeeded.text.erb | 2 +- app/views/project_mailer/delete_project_completed.html.erb | 2 +- app/views/project_mailer/delete_project_completed.text.erb | 2 +- app/views/project_mailer/delete_project_failed.html.erb | 2 +- app/views/project_mailer/delete_project_failed.text.erb | 2 +- app/views/projects/_project_export_modal.html.erb | 2 +- app/views/projects/_toolbar.html.erb | 2 +- app/views/projects/copy.html.erb | 2 +- app/views/projects/destroy_info.html.erb | 2 +- app/views/projects/identifier/show.html.erb | 2 +- app/views/projects/index.html.erb | 2 +- app/views/projects/new.html.erb | 2 +- app/views/projects/settings/_form_toolbar.html.erb | 2 +- app/views/projects/settings/categories/show.html.erb | 2 +- app/views/projects/settings/custom_fields/_form.html.erb | 2 +- app/views/projects/settings/custom_fields/show.html.erb | 2 +- app/views/projects/settings/general/show.html.erb | 2 +- app/views/projects/settings/modules/_form.html.erb | 2 +- app/views/projects/settings/modules/show.html.erb | 2 +- app/views/projects/settings/repository/_vendor_form.html.erb | 2 +- app/views/projects/settings/repository/git/_local.html.erb | 2 +- app/views/projects/settings/repository/git/_managed.html.erb | 2 +- app/views/projects/settings/repository/shared/_managed.html.erb | 2 +- app/views/projects/settings/repository/show.html.erb | 2 +- .../projects/settings/repository/subversion/_existing.html.erb | 2 +- .../projects/settings/repository/subversion/_managed.html.erb | 2 +- app/views/projects/settings/storage/_storage_field.html.erb | 2 +- app/views/projects/settings/storage/show.html.erb | 2 +- app/views/projects/settings/types/_form.html.erb | 2 +- app/views/projects/settings/types/show.html.erb | 2 +- app/views/projects/settings/versions/show.html.erb | 2 +- app/views/repositories/_breadcrumbs.html.erb | 2 +- app/views/repositories/_checkout_instructions.html.erb | 2 +- app/views/repositories/_dir_list.html.erb | 2 +- app/views/repositories/_dir_list_content.html.erb | 2 +- app/views/repositories/_link_to_functions.html.erb | 2 +- app/views/repositories/_repository_header.html.erb | 2 +- app/views/repositories/_revisions.html.erb | 2 +- app/views/repositories/annotate.html.erb | 2 +- app/views/repositories/changes.html.erb | 2 +- app/views/repositories/committers.html.erb | 2 +- app/views/repositories/destroy_info.html.erb | 2 +- app/views/repositories/diff.html.erb | 2 +- app/views/repositories/empty.html.erb | 2 +- app/views/repositories/entry.html.erb | 2 +- app/views/repositories/revision.html.erb | 2 +- app/views/repositories/revisions.html.erb | 2 +- app/views/repositories/show.html.erb | 2 +- app/views/repositories/stats.html.erb | 2 +- app/views/roles/_form.html.erb | 2 +- app/views/roles/_member_attributes.html.erb | 2 +- app/views/roles/_member_form.html.erb | 2 +- app/views/roles/_permissions.html.erb | 2 +- app/views/roles/autocomplete_for_role.json.erb | 2 +- app/views/roles/edit.html.erb | 2 +- app/views/roles/index.html.erb | 2 +- app/views/roles/new.html.erb | 2 +- app/views/roles/report.html.erb | 2 +- app/views/search/_mini_form.html.erb | 2 +- app/views/search/_pagination.html.erb | 2 +- app/views/search/index.html.erb | 2 +- app/views/statuses/_form.html.erb | 2 +- app/views/statuses/edit.html.erb | 2 +- app/views/statuses/index.html.erb | 2 +- app/views/statuses/new.html.erb | 2 +- app/views/types/edit.html.erb | 2 +- app/views/types/form/_form_configuration.html.erb | 2 +- app/views/types/form/_projects.html.erb | 2 +- app/views/types/form/_settings.html.erb | 2 +- app/views/types/index.html.erb | 2 +- app/views/types/new.html.erb | 2 +- app/views/user_mailer/_errors.html.erb | 2 +- app/views/user_mailer/_errors.text.erb | 2 +- app/views/user_mailer/account_activated.html.erb | 2 +- app/views/user_mailer/account_activated.text.erb | 2 +- app/views/user_mailer/account_activation_requested.html.erb | 2 +- app/views/user_mailer/account_activation_requested.text.erb | 2 +- app/views/user_mailer/account_information.html.erb | 2 +- app/views/user_mailer/account_information.text.erb | 2 +- app/views/user_mailer/activation_limit_reached.html.erb | 2 +- app/views/user_mailer/activation_limit_reached.text.erb | 2 +- app/views/user_mailer/attachments_added.html.erb | 2 +- app/views/user_mailer/attachments_added.text.erb | 2 +- app/views/user_mailer/backup_ready.html.erb | 2 +- app/views/user_mailer/backup_ready.text.erb | 2 +- app/views/user_mailer/backup_token_reset.html.erb | 2 +- app/views/user_mailer/backup_token_reset.text.erb | 2 +- app/views/user_mailer/message_posted.html.erb | 2 +- app/views/user_mailer/message_posted.text.erb | 2 +- app/views/user_mailer/news_added.html.erb | 2 +- app/views/user_mailer/news_added.text.erb | 2 +- app/views/user_mailer/news_comment_added.html.erb | 2 +- app/views/user_mailer/news_comment_added.text.erb | 2 +- app/views/user_mailer/password_lost.html.erb | 2 +- app/views/user_mailer/password_lost.text.erb | 2 +- app/views/user_mailer/reminder_mail.html.erb | 2 +- app/views/user_mailer/reminder_mail.text.erb | 2 +- app/views/user_mailer/test_mail.html.erb | 2 +- app/views/user_mailer/test_mail.text.erb | 2 +- app/views/user_mailer/user_signed_up.html.erb | 2 +- app/views/user_mailer/user_signed_up.text.erb | 2 +- app/views/user_mailer/wiki_content_added.html.erb | 2 +- app/views/user_mailer/wiki_content_added.text.erb | 2 +- app/views/user_mailer/wiki_content_updated.html.erb | 2 +- app/views/user_mailer/wiki_content_updated.text.erb | 2 +- app/views/users/_form.html.erb | 2 +- app/views/users/_general.html.erb | 2 +- app/views/users/_groups.html.erb | 2 +- app/views/users/_notifications.html.erb | 2 +- app/views/users/_preferences.html.erb | 2 +- app/views/users/_reminders.html.erb | 2 +- app/views/users/_simple_form.html.erb | 2 +- app/views/users/_toolbar.html.erb | 2 +- app/views/users/change_status_info.html.erb | 2 +- app/views/users/deletion_info.html.erb | 2 +- app/views/users/edit.html.erb | 2 +- app/views/users/index.html.erb | 2 +- app/views/users/new.html.erb | 2 +- app/views/users/show.html.erb | 2 +- app/views/versions/_form.html.erb | 2 +- app/views/versions/_overview.html.erb | 2 +- app/views/versions/create.js.erb | 2 +- app/views/versions/edit.html.erb | 2 +- app/views/versions/index.html.erb | 2 +- app/views/versions/new.html.erb | 2 +- app/views/versions/show.html.erb | 2 +- app/views/wiki/_content.html.erb | 2 +- app/views/wiki/_wiki_export_modal.html.erb | 2 +- app/views/wiki/annotate.html.erb | 2 +- app/views/wiki/date_index.html.erb | 2 +- app/views/wiki/destroy.html.erb | 2 +- app/views/wiki/diff.html.erb | 2 +- app/views/wiki/edit.html.erb | 2 +- app/views/wiki/edit_parent_page.html.erb | 2 +- app/views/wiki/export_multiple.html.erb | 2 +- app/views/wiki/history.html.erb | 2 +- app/views/wiki/index.html.erb | 2 +- app/views/wiki/new.html.erb | 2 +- app/views/wiki/rename.html.erb | 2 +- app/views/wiki/show.html.erb | 2 +- app/views/wiki_menu_items/edit.html.erb | 2 +- app/views/wiki_menu_items/select_main_menu_item.html.erb | 2 +- app/views/work_package_mailer/_work_package_details.html.erb | 2 +- app/views/work_package_mailer/_work_package_details.text.erb | 2 +- app/views/work_package_mailer/watcher_changed.html.erb | 2 +- app/views/work_package_mailer/watcher_changed.text.erb | 2 +- app/views/work_packages/_sidebar.html.erb | 2 +- app/views/work_packages/auto_completes/index.html.erb | 2 +- app/views/work_packages/bulk/destroy.html.erb | 2 +- app/views/work_packages/bulk/edit.html.erb | 2 +- app/views/work_packages/index.html.erb | 2 +- app/views/work_packages/moves/new.html.erb | 2 +- app/views/work_packages/reports/_report.html.erb | 2 +- app/views/work_packages/reports/_report_category.html.erb | 2 +- app/views/work_packages/reports/report.html.erb | 2 +- app/views/work_packages/reports/report_details.html.erb | 2 +- app/views/work_packages/show.html.erb | 2 +- app/views/workflows/_form.html.erb | 2 +- app/views/workflows/_toolbar.html.erb | 2 +- app/views/workflows/copy.html.erb | 2 +- app/views/workflows/edit.html.erb | 2 +- app/views/workflows/show.html.erb | 2 +- app/workers/announcements/scheduler_job.rb | 2 +- app/workers/application_job.rb | 2 +- app/workers/attachments/cleanup_uncontainered_job.rb | 2 +- app/workers/attachments/finish_direct_upload_job.rb | 2 +- app/workers/backup_job.rb | 2 +- app/workers/concerns/state_machine_job.rb | 2 +- app/workers/copy_project_job.rb | 2 +- app/workers/cron/clear_old_sessions_job.rb | 2 +- app/workers/cron/clear_uploaded_files_job.rb | 2 +- app/workers/cron/cron_job.rb | 2 +- app/workers/exports/cleanup_outdated_job.rb | 2 +- app/workers/extract_fulltext_job.rb | 2 +- app/workers/journals/completed_job.rb | 2 +- app/workers/mails/deliver_job.rb | 2 +- app/workers/mails/invitation_job.rb | 2 +- app/workers/mails/mailer_job.rb | 2 +- app/workers/mails/member_created_job.rb | 2 +- app/workers/mails/member_job.rb | 2 +- app/workers/mails/member_updated_job.rb | 2 +- app/workers/mails/reminder_job.rb | 2 +- app/workers/mails/watcher_added_job.rb | 2 +- app/workers/mails/watcher_job.rb | 2 +- app/workers/mails/watcher_removed_job.rb | 2 +- app/workers/mails/with_sender.rb | 2 +- app/workers/notifications/cleanup_job.rb | 2 +- app/workers/notifications/group_member_altered_job.rb | 2 +- app/workers/notifications/schedule_reminder_mails_job.rb | 2 +- app/workers/notifications/with_marked_notifications.rb | 2 +- app/workers/notifications/workflow_job.rb | 2 +- app/workers/oauth/cleanup_job.rb | 2 +- app/workers/principals/delete_job.rb | 2 +- app/workers/projects/delete_project_job.rb | 2 +- app/workers/projects/reorder_children_job.rb | 2 +- app/workers/rake_job.rb | 2 +- app/workers/scm/create_local_repository_job.rb | 2 +- app/workers/scm/create_remote_repository_job.rb | 2 +- app/workers/scm/delete_local_repository_job.rb | 2 +- app/workers/scm/delete_remote_repository_job.rb | 2 +- app/workers/scm/relocate_repository_job.rb | 2 +- app/workers/scm/remote_repository_job.rb | 2 +- app/workers/scm/storage_updater_job.rb | 2 +- app/workers/user_job.rb | 2 +- config.ru | 2 +- config/additional_environment.rb.example | 2 +- config/application.rb | 2 +- config/boot.rb | 2 +- config/configuration.yml.example | 2 +- config/constants/api_patch_registry.rb | 2 +- config/constants/ar_to_api_conversions.rb | 2 +- config/constants/open_project/activity.rb | 2 +- config/constants/project_activity.rb | 2 +- config/constants/views.rb | 2 +- config/database.yml.example | 2 +- config/environment.rb | 2 +- config/environments/demo.rb | 2 +- config/environments/development.rb | 2 +- config/environments/production.rb | 2 +- config/environments/test.rb | 2 +- config/environments/test_pgsql.rb | 2 +- config/initializers/00-core_plugins.rb | 2 +- config/initializers/03-db_check.rb | 2 +- config/initializers/05-null_db_fallback.rb | 2 +- config/initializers/06-pending_migrations_check.rb | 2 +- config/initializers/10-load_patches.rb | 2 +- config/initializers/30-open_project_loading.rb | 2 +- config/initializers/activity.rb | 2 +- config/initializers/airbrake.rb | 2 +- config/initializers/backtrace_silencers.rb | 2 +- config/initializers/bcrypt.rb | 2 +- config/initializers/bullet.rb | 2 +- config/initializers/carrierwave.rb | 2 +- config/initializers/custom_field_format.rb | 2 +- config/initializers/delayed_job_config.rb | 2 +- config/initializers/enforce_isolation_level.rb | 2 +- config/initializers/filter_parameter_logging.rb | 2 +- config/initializers/grape.rb | 2 +- config/initializers/homescreen.rb | 2 +- config/initializers/inflections.rb | 2 +- config/initializers/livingstyleguide_patches.rb | 2 +- config/initializers/menus.rb | 2 +- config/initializers/mime_types.rb | 2 +- config/initializers/module_handler.rb | 2 +- config/initializers/omniauth.rb | 2 +- config/initializers/permissions.rb | 2 +- config/initializers/plaintext.rb | 2 +- config/initializers/rack-attack.rb | 2 +- config/initializers/rack-cors.rb | 2 +- config/initializers/rails_footnotes.rb | 2 +- config/initializers/register_mail_interceptors.rb | 2 +- config/initializers/register_renderer.rb | 2 +- config/initializers/register_views.rb | 2 +- config/initializers/search.rb | 2 +- config/initializers/session_store.rb | 2 +- config/initializers/subscribe_listeners.rb | 2 +- config/initializers/time_with_zone_as_json.rb | 2 +- config/initializers/typed_dag.rb | 2 +- config/initializers/wrap_parameters.rb | 2 +- config/locales/crowdin/af.yml | 2 +- config/locales/crowdin/ar.yml | 2 +- config/locales/crowdin/az.yml | 2 +- config/locales/crowdin/bg.yml | 2 +- config/locales/crowdin/ca.yml | 2 +- config/locales/crowdin/cs.yml | 2 +- config/locales/crowdin/da.yml | 2 +- config/locales/crowdin/de.yml | 2 +- config/locales/crowdin/el.yml | 2 +- config/locales/crowdin/eo.yml | 2 +- config/locales/crowdin/es.yml | 2 +- config/locales/crowdin/et.yml | 2 +- config/locales/crowdin/fa.yml | 2 +- config/locales/crowdin/fi.yml | 2 +- config/locales/crowdin/fil.yml | 2 +- config/locales/crowdin/fr.yml | 2 +- config/locales/crowdin/he.yml | 2 +- config/locales/crowdin/hi.yml | 2 +- config/locales/crowdin/hr.yml | 2 +- config/locales/crowdin/hu.yml | 2 +- config/locales/crowdin/id.yml | 2 +- config/locales/crowdin/it.yml | 2 +- config/locales/crowdin/ja.yml | 2 +- config/locales/crowdin/js-af.yml | 2 +- config/locales/crowdin/js-ar.yml | 2 +- config/locales/crowdin/js-az.yml | 2 +- config/locales/crowdin/js-bg.yml | 2 +- config/locales/crowdin/js-ca.yml | 2 +- config/locales/crowdin/js-cs.yml | 2 +- config/locales/crowdin/js-da.yml | 2 +- config/locales/crowdin/js-de.yml | 2 +- config/locales/crowdin/js-el.yml | 2 +- config/locales/crowdin/js-eo.yml | 2 +- config/locales/crowdin/js-es.yml | 2 +- config/locales/crowdin/js-et.yml | 2 +- config/locales/crowdin/js-fa.yml | 2 +- config/locales/crowdin/js-fi.yml | 2 +- config/locales/crowdin/js-fil.yml | 2 +- config/locales/crowdin/js-fr.yml | 2 +- config/locales/crowdin/js-he.yml | 2 +- config/locales/crowdin/js-hi.yml | 2 +- config/locales/crowdin/js-hr.yml | 2 +- config/locales/crowdin/js-hu.yml | 2 +- config/locales/crowdin/js-id.yml | 2 +- config/locales/crowdin/js-it.yml | 2 +- config/locales/crowdin/js-ja.yml | 2 +- config/locales/crowdin/js-ko.yml | 2 +- config/locales/crowdin/js-lol.yml | 2 +- config/locales/crowdin/js-lt.yml | 2 +- config/locales/crowdin/js-lv.yml | 2 +- config/locales/crowdin/js-ne.yml | 2 +- config/locales/crowdin/js-nl.yml | 2 +- config/locales/crowdin/js-no.yml | 2 +- config/locales/crowdin/js-pl.yml | 2 +- config/locales/crowdin/js-pt.yml | 2 +- config/locales/crowdin/js-ro.yml | 2 +- config/locales/crowdin/js-ru.yml | 2 +- config/locales/crowdin/js-rw.yml | 2 +- config/locales/crowdin/js-si.yml | 2 +- config/locales/crowdin/js-sk.yml | 2 +- config/locales/crowdin/js-sl.yml | 2 +- config/locales/crowdin/js-sv.yml | 2 +- config/locales/crowdin/js-th.yml | 2 +- config/locales/crowdin/js-tr.yml | 2 +- config/locales/crowdin/js-uk.yml | 2 +- config/locales/crowdin/js-vi.yml | 2 +- config/locales/crowdin/js-zh-CN.yml | 2 +- config/locales/crowdin/js-zh-TW.yml | 2 +- config/locales/crowdin/ko.yml | 2 +- config/locales/crowdin/lol.yml | 2 +- config/locales/crowdin/lt.yml | 2 +- config/locales/crowdin/lv.yml | 2 +- config/locales/crowdin/ne.yml | 2 +- config/locales/crowdin/nl.yml | 2 +- config/locales/crowdin/no.yml | 2 +- config/locales/crowdin/pl.yml | 2 +- config/locales/crowdin/pt.yml | 2 +- config/locales/crowdin/ro.yml | 2 +- config/locales/crowdin/ru.yml | 2 +- config/locales/crowdin/rw.yml | 2 +- config/locales/crowdin/si.yml | 2 +- config/locales/crowdin/sk.yml | 2 +- config/locales/crowdin/sl.yml | 2 +- config/locales/crowdin/sv.yml | 2 +- config/locales/crowdin/th.yml | 2 +- config/locales/crowdin/tr.yml | 2 +- config/locales/crowdin/uk.yml | 2 +- config/locales/crowdin/vi.yml | 2 +- config/locales/crowdin/zh-CN.yml | 2 +- config/locales/crowdin/zh-TW.yml | 2 +- config/locales/en.seeders.standard.yml | 2 +- config/locales/en.seeders.standard.yml.example | 2 +- config/locales/en.yml | 2 +- config/locales/js-en.yml | 2 +- config/routes.rb | 2 +- config/secrets.yml | 2 +- config/settings.yml | 2 +- db/migrate/10000000000000_to_v710_aggregated_migrations.rb | 2 +- db/migrate/20100528100562_aggregated_global_roles_migrations.rb | 2 +- db/migrate/20170829095701_generate_wp_closure.rb | 2 +- db/migrate/20171129145631_add_fulltext_to_attachments.rb | 2 +- db/migrate/20180105130053_rebuild_dag.rb | 2 +- db/migrate/20180108132929_vacuum_relations.rb | 2 +- db/migrate/20180116065518_add_hierarchy_paths.rb | 2 +- db/migrate/20180117065255_remove_timelines_and_reportings.rb | 2 +- db/migrate/20180122135443_add_tsv_columns_to_attachments.rb | 2 +- db/migrate/20180305130811_remove_wiki_content_versions.rb | 2 +- db/migrate/20180419061910_timestamp_for_caching.rb | 2 +- .../20180524084654_remove_non_null_container_on_attachments.rb | 2 +- db/migrate/20180706150714_convert_to_markdown.rb | 2 +- .../20201005120137_ensure_integer_for_relations_foreign_keys.rb | 2 +- db/migrate/20201125121949_remove_renamed_cron_job.rb | 2 +- db/migrate/20211005080304_tzinfo_time_zones.rb | 2 +- db/migrate/aggregated/base.rb | 2 +- db/migrate/aggregated/to_3_0.rb | 2 +- db/migrate/aggregated/to_7_1.rb | 2 +- db/migrate/migration_utils/migration_squasher.rb | 2 +- db/migrate/migration_utils/module_renamer.rb | 2 +- db/migrate/migration_utils/permission_adder.rb | 2 +- db/migrate/migration_utils/setting_renamer.rb | 2 +- db/migrate/migration_utils/utils.rb | 2 +- db/migrate/tables/announcements.rb | 2 +- db/migrate/tables/attachable_journals.rb | 2 +- db/migrate/tables/attachment_journals.rb | 2 +- db/migrate/tables/attachments.rb | 2 +- db/migrate/tables/auth_sources.rb | 2 +- db/migrate/tables/available_project_statuses.rb | 2 +- db/migrate/tables/base.rb | 2 +- db/migrate/tables/boards.rb | 2 +- db/migrate/tables/categories.rb | 2 +- db/migrate/tables/changes.rb | 2 +- db/migrate/tables/changeset_journals.rb | 2 +- db/migrate/tables/changesets.rb | 2 +- db/migrate/tables/changesets_work_packages.rb | 2 +- db/migrate/tables/comments.rb | 2 +- db/migrate/tables/custom_fields.rb | 2 +- db/migrate/tables/custom_fields_projects.rb | 2 +- db/migrate/tables/custom_fields_types.rb | 2 +- db/migrate/tables/custom_options.rb | 2 +- db/migrate/tables/custom_styles.rb | 2 +- db/migrate/tables/custom_values.rb | 2 +- db/migrate/tables/customizable_journals_table.rb | 2 +- db/migrate/tables/delayed_jobs.rb | 2 +- db/migrate/tables/design_colors.rb | 2 +- db/migrate/tables/enabled_modules.rb | 2 +- db/migrate/tables/enterprise_tokens.rb | 2 +- db/migrate/tables/enumerations.rb | 2 +- db/migrate/tables/forums.rb | 2 +- db/migrate/tables/group_users.rb | 2 +- db/migrate/tables/journals.rb | 2 +- db/migrate/tables/member_roles.rb | 2 +- db/migrate/tables/members.rb | 2 +- db/migrate/tables/menu_items.rb | 2 +- db/migrate/tables/message_journals.rb | 2 +- db/migrate/tables/messages.rb | 2 +- db/migrate/tables/news.rb | 2 +- db/migrate/tables/news_journals.rb | 2 +- db/migrate/tables/planning_element_type_colors.rb | 2 +- db/migrate/tables/project_associations.rb | 2 +- db/migrate/tables/project_types.rb | 2 +- db/migrate/tables/projects.rb | 2 +- db/migrate/tables/projects_types.rb | 2 +- db/migrate/tables/queries.rb | 2 +- db/migrate/tables/relations.rb | 2 +- db/migrate/tables/reportings.rb | 2 +- db/migrate/tables/repositories.rb | 2 +- db/migrate/tables/role_permissions.rb | 2 +- db/migrate/tables/roles.rb | 2 +- db/migrate/tables/sessions.rb | 2 +- db/migrate/tables/settings.rb | 2 +- db/migrate/tables/statuses.rb | 2 +- db/migrate/tables/time_entries.rb | 2 +- db/migrate/tables/time_entry_journals.rb | 2 +- db/migrate/tables/timelines.rb | 2 +- db/migrate/tables/tokens.rb | 2 +- db/migrate/tables/types.rb | 2 +- db/migrate/tables/user_passwords.rb | 2 +- db/migrate/tables/user_preferences.rb | 2 +- db/migrate/tables/users.rb | 2 +- db/migrate/tables/versions.rb | 2 +- db/migrate/tables/watchers.rb | 2 +- db/migrate/tables/wiki_content_journals.rb | 2 +- db/migrate/tables/wiki_content_versions.rb | 2 +- db/migrate/tables/wiki_contents.rb | 2 +- db/migrate/tables/wiki_pages.rb | 2 +- db/migrate/tables/wiki_redirects.rb | 2 +- db/migrate/tables/wikis.rb | 2 +- db/migrate/tables/work_package_journals.rb | 2 +- db/migrate/tables/work_packages.rb | 2 +- db/migrate/tables/workflows.rb | 2 +- db/seeds.rb | 2 +- extra/mail_handler/rdm-mailhandler.rb | 2 +- extra/svn/reposman.rb | 2 +- frontend/src/app/app.module.ts | 2 +- frontend/src/app/core/apiv3/api-v3.service.spec.ts | 2 +- frontend/src/app/core/apiv3/api-v3.service.ts | 2 +- frontend/src/app/core/apiv3/cache/cachable-apiv3-collection.ts | 2 +- frontend/src/app/core/apiv3/cache/cachable-apiv3-resource.ts | 2 +- frontend/src/app/core/apiv3/cache/state-cache.service.ts | 2 +- .../src/app/core/apiv3/endpoints/backups/apiv3-backups-path.ts | 2 +- .../apiv3/endpoints/capabilities/apiv3-capabilities-paths.ts | 2 +- .../core/apiv3/endpoints/capabilities/apiv3-capability-paths.ts | 2 +- .../apiv3/endpoints/capabilities/capability-cache.service.ts | 2 +- .../apiv3/endpoints/configuration/apiv3-configuration-path.ts | 2 +- frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-form.ts | 2 +- frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/grids/apiv3-grids-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/groups/apiv3-group-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/groups/apiv3-groups-paths.ts | 2 +- .../core/apiv3/endpoints/help_texts/apiv3-help-texts-paths.ts | 2 +- .../core/apiv3/endpoints/memberships/apiv3-memberships-form.ts | 2 +- .../core/apiv3/endpoints/memberships/apiv3-memberships-paths.ts | 2 +- frontend/src/app/core/apiv3/endpoints/news/apiv3-news-paths.ts | 2 +- .../apiv3/endpoints/notifications/apiv3-notification-paths.ts | 2 +- .../apiv3/endpoints/notifications/apiv3-notifications-paths.ts | 2 +- .../endpoints/placeholder-users/apiv3-placeholder-user-paths.ts | 2 +- .../placeholder-users/apiv3-placeholder-users-paths.ts | 2 +- .../apiv3/endpoints/projects/apiv3-available-projects-paths.ts | 2 +- .../core/apiv3/endpoints/projects/apiv3-project-copy-paths.ts | 2 +- .../app/core/apiv3/endpoints/projects/apiv3-project-paths.ts | 2 +- .../app/core/apiv3/endpoints/projects/apiv3-projects-paths.ts | 2 +- frontend/src/app/core/apiv3/endpoints/projects/project.cache.ts | 2 +- .../src/app/core/apiv3/endpoints/queries/apiv3-queries-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/queries/apiv3-query-form.ts | 2 +- .../src/app/core/apiv3/endpoints/queries/apiv3-query-order.ts | 2 +- .../src/app/core/apiv3/endpoints/queries/apiv3-query-paths.ts | 2 +- .../app/core/apiv3/endpoints/relations/apiv3-relations-paths.ts | 2 +- frontend/src/app/core/apiv3/endpoints/roles/apiv3-role-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/roles/apiv3-roles-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/statuses/apiv3-status-paths.ts | 2 +- .../app/core/apiv3/endpoints/statuses/apiv3-statuses-paths.ts | 2 +- .../apiv3/endpoints/time-entries/apiv3-time-entries-paths.ts | 2 +- .../core/apiv3/endpoints/time-entries/apiv3-time-entry-paths.ts | 2 +- .../apiv3/endpoints/time-entries/time-entry-cache.service.ts | 2 +- frontend/src/app/core/apiv3/endpoints/types/apiv3-type-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/types/apiv3-types-paths.ts | 2 +- frontend/src/app/core/apiv3/endpoints/users/apiv3-user-paths.ts | 2 +- .../core/apiv3/endpoints/users/apiv3-user-preferences-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/users/apiv3-users-paths.ts | 2 +- .../app/core/apiv3/endpoints/versions/apiv3-version-paths.ts | 2 +- .../app/core/apiv3/endpoints/versions/apiv3-versions-paths.ts | 2 +- .../src/app/core/apiv3/endpoints/views/apiv3-views-paths.ts | 2 +- .../work_packages/api-v3-work-package-cached-subresource.ts | 2 +- .../apiv3/endpoints/work_packages/api-v3-work-package-paths.ts | 2 +- .../apiv3/endpoints/work_packages/api-v3-work-packages-paths.ts | 2 +- .../apiv3/endpoints/work_packages/work-package-cache.spec.ts | 2 +- .../core/apiv3/endpoints/work_packages/work-package.cache.ts | 2 +- frontend/src/app/core/apiv3/openproject-api-v3.module.ts | 2 +- .../src/app/core/apiv3/paths/apiv3-list-resource.interface.ts | 2 +- frontend/src/app/core/apiv3/virtual/apiv3-board-path.ts | 2 +- frontend/src/app/core/apiv3/virtual/apiv3-boards-paths.ts | 2 +- frontend/src/app/core/augmenting/dynamic-scripts/admin_users.js | 2 +- frontend/src/app/core/augmenting/dynamic-scripts/backlogs.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/backlog.js | 2 +- .../app/core/augmenting/dynamic-scripts/backlogs/burndown.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/common.js | 2 +- .../augmenting/dynamic-scripts/backlogs/editable_inplace.js | 2 +- .../app/core/augmenting/dynamic-scripts/backlogs/impediment.js | 2 +- .../core/augmenting/dynamic-scripts/backlogs/master_backlog.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/model.js | 2 +- .../app/core/augmenting/dynamic-scripts/backlogs/show_main.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/sprint.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/story.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/backlogs/task.js | 2 +- .../app/core/augmenting/dynamic-scripts/backlogs/taskboard.js | 2 +- .../core/augmenting/dynamic-scripts/backlogs/work_package.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/custom_fields.js | 2 +- frontend/src/app/core/augmenting/dynamic-scripts/forums.js | 2 +- .../src/app/core/augmenting/dynamic-scripts/global_roles.ts | 2 +- .../src/app/core/augmenting/dynamic-scripts/members_form.js | 2 +- frontend/src/app/core/augmenting/dynamic-scripts/new_user.js | 2 +- frontend/src/app/core/augmenting/dynamic-scripts/project.js | 2 +- .../core/augmenting/dynamic-scripts/project_form_listener.js | 2 +- .../core/augmenting/dynamic-scripts/repository_navigation.js | 2 +- .../app/core/augmenting/dynamic-scripts/repository_settings.js | 2 +- .../src/app/core/augmenting/openproject-augmenting.module.ts | 2 +- .../app/core/augmenting/services/path-script.augment.service.ts | 2 +- frontend/src/app/core/backup/op-backup.service.ts | 2 +- frontend/src/app/core/config/configuration.service.ts | 2 +- .../app/core/current-project/current-project.service.spec.ts | 2 +- .../src/app/core/current-project/current-project.service.ts | 2 +- frontend/src/app/core/current-user/current-user.service.spec.ts | 2 +- frontend/src/app/core/current-user/current-user.service.ts | 2 +- frontend/src/app/core/current-user/current-user.store.ts | 2 +- frontend/src/app/core/datetime/timezone.service.spec.ts | 2 +- frontend/src/app/core/datetime/timezone.service.ts | 2 +- frontend/src/app/core/enterprise/banners.service.ts | 2 +- frontend/src/app/core/errors/sentry/sentry-reporter.ts | 2 +- frontend/src/app/core/expression/expression.service.ts | 2 +- .../src/app/core/file-upload/op-direct-file-upload.service.ts | 2 +- .../src/app/core/file-upload/op-file-upload.service.spec.ts | 2 +- frontend/src/app/core/file-upload/op-file-upload.service.ts | 2 +- .../global-search-work-packages-entry.component.ts | 2 +- .../core/global_search/global-search-work-packages.component.ts | 2 +- .../core/global_search/input/global-search-input.component.ts | 2 +- .../app/core/global_search/openproject-global-search.module.ts | 2 +- .../core/global_search/services/global-search.service.spec.ts | 2 +- .../app/core/global_search/services/global-search.service.ts | 2 +- .../app/core/global_search/tabs/global-search-tabs.component.ts | 2 +- .../core/global_search/title/global-search-title.component.ts | 2 +- frontend/src/app/core/gon/gon.service.ts | 2 +- frontend/src/app/core/html-sanitize/html-sanitize.service.ts | 2 +- .../src/app/core/loading-indicator/loading-indicator.service.ts | 2 +- frontend/src/app/core/main-menu/main-menu-toggle.component.ts | 2 +- frontend/src/app/core/main-menu/main-menu-toggle.service.ts | 2 +- frontend/src/app/core/model-auth/model-auth.service.spec.ts | 2 +- frontend/src/app/core/model-auth/model-auth.service.ts | 2 +- frontend/src/app/core/path-helper/path-helper.service.ts | 2 +- .../src/app/core/routing/base/application-base.component.ts | 2 +- frontend/src/app/core/routing/first-route-service.ts | 2 +- frontend/src/app/core/routing/openproject-router.module.ts | 2 +- frontend/src/app/core/routing/openproject.routes.ts | 2 +- frontend/src/app/core/schemas/schema-cache.service.ts | 2 +- .../app/core/setup/globals/components/admin/backup.component.ts | 2 +- frontend/src/app/core/setup/globals/global-helpers.ts | 2 +- frontend/src/app/core/setup/globals/global-listeners.ts | 2 +- .../src/app/core/setup/globals/global-listeners/action-menu.ts | 2 +- .../app/core/setup/globals/global-listeners/color-preview.ts | 2 +- .../setup/globals/global-listeners/danger-zone-validation.ts | 2 +- .../setup/globals/global-listeners/preview-trigger.service.ts | 2 +- .../setup/globals/global-listeners/refresh-on-form-changes.ts | 2 +- .../setup/globals/global-listeners/request-for-confirmation.ts | 2 +- .../core/setup/globals/global-listeners/toggable-fieldset.ts | 2 +- .../app/core/setup/globals/global-listeners/top-menu-scroll.ts | 2 +- .../src/app/core/setup/globals/global-listeners/top-menu.ts | 2 +- frontend/src/app/core/setup/globals/openproject.ts | 2 +- frontend/src/app/core/setup/globals/tree-menu.ts | 2 +- frontend/src/app/core/setup/init-globals.ts | 2 +- frontend/src/app/core/setup/init-locale.ts | 2 +- frontend/src/app/core/setup/init-vendors.ts | 2 +- frontend/src/app/core/state/openproject-state.module.ts | 2 +- frontend/src/app/features/admin/openproject-admin.module.ts | 2 +- .../app/features/admin/types/group-edit-in-place.component.ts | 2 +- .../src/app/features/api-docs/openproject-api-docs.module.ts | 2 +- .../src/app/features/api-docs/openproject-api-docs.routes.ts | 2 +- .../app/features/api-docs/swagger-ui/swagger-ui.component.ts | 2 +- .../src/app/features/backlogs/openproject-backlogs.module.ts | 2 +- .../src/app/features/backlogs/openproject-backlogs.routes.ts | 2 +- .../src/app/features/bim/bcf/api/bcf-api-request.service.ts | 2 +- frontend/src/app/features/bim/bcf/api/bcf-api.model.ts | 2 +- frontend/src/app/features/bim/bcf/api/bcf-api.service.spec.ts | 2 +- frontend/src/app/features/bim/bcf/api/bcf-api.service.ts | 2 +- frontend/src/app/features/bim/bcf/api/topics/bcf-topic.paths.ts | 2 +- .../src/app/features/bim/bcf/api/topics/bcf-topic.resource.ts | 2 +- .../bim/bcf/api/viewpoints/bcf-viewpoint-collection.paths.ts | 2 +- .../bim/bcf/api/viewpoints/bcf-viewpoint-item.interface.ts | 2 +- .../bim/bcf/api/viewpoints/bcf-viewpoint-selection.paths.ts | 2 +- .../bim/bcf/api/viewpoints/bcf-viewpoint-visibility.paths.ts | 2 +- .../app/features/bim/bcf/api/viewpoints/bcf-viewpoint.paths.ts | 2 +- .../bcf-new-wp-attribute-group.component.ts | 2 +- .../bcf-wp-attribute-group/bcf-wp-attribute-group.component.ts | 2 +- .../bim/bcf/fields/display/bcf-thumbnail-field.module.ts | 2 +- .../src/app/features/bim/bcf/helper/bcf-path-helper.service.ts | 2 +- frontend/src/app/features/bim/bcf/helper/viewpoints.service.ts | 2 +- frontend/src/app/features/bim/bcf/openproject-bcf.module.ts | 2 +- .../app/features/bim/ifc_models/bcf/list/bcf-list.component.ts | 2 +- .../bim/ifc_models/bcf/split/left/bcf-split-left.component.ts | 2 +- .../bim/ifc_models/bcf/split/right/bcf-split-right.component.ts | 2 +- .../features/bim/ifc_models/ifc-viewer/ifc-viewer.component.ts | 2 +- .../features/bim/ifc_models/ifc-viewer/ifc-viewer.service.ts | 2 +- .../features/bim/ifc_models/openproject-ifc-models.module.ts | 2 +- .../features/bim/ifc_models/openproject-ifc-models.routes.ts | 2 +- .../features/bim/ifc_models/pages/viewer/bcf-view.service.ts | 2 +- .../bim/ifc_models/pages/viewer/ifc-viewer-page.component.ts | 2 +- .../toolbar/import-export-bcf/bcf-export-button.component.ts | 2 +- .../toolbar/import-export-bcf/bcf-import-button.component.ts | 2 +- .../toolbar/import-export-bcf/refresh-button.component.ts | 2 +- .../bim-manage-ifc-models-button.component.ts | 2 +- .../toolbar/view-toggle/bcf-view-toggle-button.component.ts | 2 +- .../toolbar/view-toggle/bcf-view-toggle-dropdown.directive.ts | 2 +- frontend/src/app/features/bim/openproject-bim.module.ts | 2 +- .../src/app/features/bim/revit_add_in/revit-bridge.service.ts | 2 +- .../features/boards/add-list-modal/add-list-modal.component.ts | 2 +- .../board/add-card-dropdown/add-card-dropdown-menu.directive.ts | 2 +- .../boards/board/add-list-modal/add-list-modal.component.ts | 2 +- .../board-actions/assignee/assignee-board-header.component.ts | 2 +- .../board/board-actions/status/status-board-header.component.ts | 2 +- .../subproject/subproject-board-header.component.ts | 2 +- .../board-actions/subtasks/subtasks-board-header.component.ts | 2 +- .../board-actions/version/version-board-header.component.ts | 2 +- .../boards/board/board-list/board-inline-create.service.ts | 2 +- .../boards/board/board-list/board-list-menu.component.ts | 2 +- .../inline-add/board-inline-add-autocompleter.component.ts | 2 +- .../boards/board/toolbar-menu/boards-toolbar-menu.directive.ts | 2 +- .../boards/new-board-modal/new-board-modal.component.ts | 2 +- frontend/src/app/features/boards/openproject-boards.module.ts | 2 +- frontend/src/app/features/boards/openproject-boards.routes.ts | 2 +- frontend/src/app/features/calendar/calendar.lazy-routes.ts | 2 +- frontend/src/app/features/calendar/calendar.routes.ts | 2 +- .../src/app/features/calendar/openproject-calendar.module.ts | 2 +- .../calendar/wp-calendar-page/wp-calendar-page.component.ts | 2 +- .../app/features/dashboards/openproject-dashboards.module.ts | 2 +- .../enterprise-active-trial/ee-active-saved-trial.component.ts | 2 +- .../enterprise/enterprise-active-trial/ee-active-trial.base.ts | 2 +- .../enterprise-active-trial/ee-active-trial.component.ts | 2 +- .../src/app/features/enterprise/enterprise-base.component.ts | 2 +- .../enterprise-trial-form/ee-trial-form.component.ts | 2 +- .../enterprise/enterprise-modal/enterprise-trial.modal.ts | 2 +- .../enterprise-trial-waiting/ee-trial-waiting.component.ts | 2 +- .../enterprise/free-trial-button/free-trial-button.component.ts | 2 +- .../app/features/enterprise/openproject-enterprise.module.ts | 2 +- frontend/src/app/features/hal/hal-link/hal-link.ts | 2 +- frontend/src/app/features/hal/helpers/lazy-accessor.spec.ts | 2 +- frontend/src/app/features/hal/helpers/lazy-accessor.ts | 2 +- frontend/src/app/features/hal/openproject-hal.module.ts | 2 +- .../features/hal/resources/attachment-collection-resource.ts | 2 +- frontend/src/app/features/hal/resources/capability-resource.ts | 2 +- frontend/src/app/features/hal/resources/collection-resource.ts | 2 +- .../src/app/features/hal/resources/configuration-resource.ts | 2 +- .../src/app/features/hal/resources/custom-action-resource.ts | 2 +- frontend/src/app/features/hal/resources/error-resource.ts | 2 +- frontend/src/app/features/hal/resources/form-resource.ts | 2 +- frontend/src/app/features/hal/resources/grid-resource.ts | 2 +- frontend/src/app/features/hal/resources/grid-widget-resource.ts | 2 +- frontend/src/app/features/hal/resources/group-resource.ts | 2 +- frontend/src/app/features/hal/resources/hal-resource.spec.ts | 2 +- frontend/src/app/features/hal/resources/hal-resource.ts | 2 +- frontend/src/app/features/hal/resources/help-text-resource.ts | 2 +- .../src/app/features/hal/resources/meeting-content-resource.ts | 2 +- frontend/src/app/features/hal/resources/membership-resource.ts | 2 +- .../src/app/features/hal/resources/mixins/attachable-mixin.ts | 2 +- frontend/src/app/features/hal/resources/news-resource.ts | 2 +- .../src/app/features/hal/resources/placeholder-user-resource.ts | 2 +- frontend/src/app/features/hal/resources/post-resource.ts | 2 +- frontend/src/app/features/hal/resources/project-resource.ts | 2 +- .../features/hal/resources/query-filter-instance-resource.ts | 2 +- .../hal/resources/query-filter-instance-schema-resource.ts | 2 +- .../src/app/features/hal/resources/query-filter-resource.ts | 2 +- frontend/src/app/features/hal/resources/query-form-resource.ts | 2 +- .../src/app/features/hal/resources/query-group-by-resource.ts | 2 +- .../src/app/features/hal/resources/query-operator-resource.ts | 2 +- frontend/src/app/features/hal/resources/query-resource.ts | 2 +- .../src/app/features/hal/resources/query-schema-resource.ts | 2 +- .../src/app/features/hal/resources/query-sort-by-resource.ts | 2 +- frontend/src/app/features/hal/resources/relation-resource.ts | 2 +- frontend/src/app/features/hal/resources/role-resource.ts | 2 +- frontend/src/app/features/hal/resources/root-resource.ts | 2 +- .../app/features/hal/resources/schema-dependency-resource.ts | 2 +- frontend/src/app/features/hal/resources/schema-resource.ts | 2 +- frontend/src/app/features/hal/resources/status-resource.ts | 2 +- frontend/src/app/features/hal/resources/time-entry-resource.ts | 2 +- frontend/src/app/features/hal/resources/type-resource.ts | 2 +- frontend/src/app/features/hal/resources/user-resource.ts | 2 +- frontend/src/app/features/hal/resources/version-resource.ts | 2 +- frontend/src/app/features/hal/resources/wiki-page-resource.ts | 2 +- .../app/features/hal/resources/work-package-resource.spec.ts | 2 +- .../src/app/features/hal/resources/work-package-resource.ts | 2 +- .../src/app/features/hal/resources/wp-collection-resource.ts | 2 +- frontend/src/app/features/hal/schemas/hal-payload.helper.ts | 2 +- frontend/src/app/features/hal/schemas/schema-proxy.ts | 2 +- .../src/app/features/hal/schemas/work-package-schema-proxy.ts | 2 +- .../features/hal/services/hal-resource-notification.service.ts | 2 +- .../app/features/hal/services/hal-resource-sorting.service.ts | 2 +- frontend/src/app/features/hal/services/hal-resource.config.ts | 2 +- frontend/src/app/features/hal/services/hal-resource.service.ts | 2 +- frontend/src/app/features/hal/services/url-params-encoder.ts | 2 +- .../features/homescreen/blocks/new-features.component.spec.ts | 2 +- .../app/features/homescreen/blocks/new-features.component.ts | 2 +- .../center/empty-state/empty-state.component.ts | 2 +- .../features/in-app-notifications/center/menu/menu.component.ts | 2 +- .../in-app-notifications/in-app-notifications.lazy-routes.ts | 2 +- .../in-app-notifications/in-app-notifications.routes.ts | 2 +- .../invite-user-modal/invite-user-modal-augment.service.ts | 2 +- .../app/features/invite-user-modal/invite-user-modal.service.ts | 2 +- .../app/features/job-status/openproject-job-status.module.ts | 2 +- frontend/src/app/features/my-page/openproject-my-page.module.ts | 2 +- .../src/app/features/overview/openproject-overview.module.ts | 2 +- frontend/src/app/features/plugins/hook-service.spec.ts | 2 +- frontend/src/app/features/plugins/hook-service.ts | 2 +- frontend/src/app/features/plugins/openproject-plugins.module.ts | 2 +- .../src/app/features/projects/openproject-projects.module.ts | 2 +- .../src/app/features/reporting/openproject-reporting.module.ts | 2 +- .../src/app/features/reporting/openproject-reporting.routes.ts | 2 +- .../reporting/reporting-page/functionality/reporting_engine.js | 2 +- .../reporting-page/functionality/reporting_engine/controls.js | 2 +- .../reporting-page/functionality/reporting_engine/filters.js | 2 +- .../reporting-page/functionality/reporting_engine/group_bys.js | 2 +- .../functionality/reporting_engine/restore_query.js | 2 +- .../team-planner/assignee/add-assignee.component.ts | 2 +- .../team-planner/team-planner/team-planner.lazy-routes.ts | 2 +- .../features/team-planner/team-planner/team-planner.routes.ts | 2 +- .../features/user-preferences/state/user-preferences.store.ts | 2 +- .../features/user-preferences/user-preferences.lazy-routes.ts | 2 +- .../app/features/user-preferences/user-preferences.routes.ts | 2 +- .../components/back-routing/back-button.component.ts | 2 +- .../components/back-routing/back-routing.service.ts | 2 +- .../edit-actions-bar/wp-edit-actions-bar.component.ts | 2 +- .../abstract-filter-date-time-value.controller.ts | 2 +- .../filter-boolean-value/filter-boolean-value.component.ts | 2 +- .../filters/filter-container/filter-container.directive.ts | 2 +- .../filter-date-time-value/filter-date-time-value.component.ts | 2 +- .../filter-date-times-value.component.ts | 2 +- .../filters/filter-date-value/filter-date-value.component.ts | 2 +- .../filters/filter-dates-value/filter-dates-value.component.ts | 2 +- .../filter-integer-value/filter-integer-value.component.ts | 2 +- .../filter-string-value/filter-string-value.component.ts | 2 +- .../filter-toggled-multiselect-value.component.ts | 2 +- .../components/filters/query-filter/query-filter.component.ts | 2 +- .../components/filters/query-filters/query-filters.component.ts | 2 +- .../quick-filter-by-text-input.component.ts | 2 +- .../components/filters/wp-filters/wp-filters.service.ts | 2 +- .../work-package-comment/work-package-comment.component.ts | 2 +- .../work-package-comment/wp-comment-field.component.ts | 2 +- .../components/wp-activity/activity-entry.component.ts | 2 +- .../work-packages/components/wp-activity/comment-service.ts | 2 +- .../wp-activity/revision/revision-activity.component.ts | 2 +- .../components/wp-activity/user/user-activity.component.ts | 2 +- .../components/wp-breadcrumb/wp-breadcrumb-parent.component.ts | 2 +- .../components/wp-breadcrumb/wp-breadcrumb.component.ts | 2 +- .../work-packages/components/wp-buttons/wp-buttons.module.ts | 2 +- .../wp-buttons/wp-create-button/wp-create-button.component.ts | 2 +- .../wp-details-view-button/wp-details-view-button.component.ts | 2 +- .../wp-buttons/wp-filter-button/wp-filter-button.component.ts | 2 +- .../wp-fold-toggle-button/wp-fold-toggle-button.component.ts | 2 +- .../wp-settings-button/wp-settings-button.component.ts | 2 +- .../wp-buttons/wp-status-button/wp-status-button.component.ts | 2 +- .../wp-timeline-toggle-button.component.ts | 2 +- .../work-package-view-toggle-button.component.ts | 2 +- .../zen-mode-toggle-button/zen-mode-toggle-button.component.ts | 2 +- .../components/wp-copy/wp-copy-full-view.component.ts | 2 +- .../components/wp-copy/wp-copy-split-view.component.ts | 2 +- .../work-packages/components/wp-copy/wp-copy.controller.ts | 2 +- .../date-action/custom-date-action-admin.component.ts | 2 +- .../components/wp-custom-actions/wp-custom-actions.component.ts | 2 +- .../wp-custom-actions/wp-custom-action.component.ts | 2 +- .../components/wp-details/wp-details-toolbar.component.ts | 2 +- .../work-packages/components/wp-edit-form/table-edit-form.ts | 2 +- .../components/wp-edit-form/work-package-filter-values.spec.ts | 2 +- .../wp-edit/wp-edit-field/wp-replacement-label.component.ts | 2 +- .../components/wp-form-group/wp-attribute-group.component.ts | 2 +- .../work-packages/components/wp-grid/wp-grid.component.ts | 2 +- .../components/wp-inline-create/wp-inline-create.component.ts | 2 +- .../components/wp-inline-create/wp-inline-create.service.ts | 2 +- .../components/wp-list/wp-list-checksum.service.ts | 2 +- .../components/wp-list/wp-list-invalid-query.service.ts | 2 +- .../work-packages/components/wp-list/wp-list.service.ts | 2 +- .../work-packages/components/wp-new/wp-create.component.ts | 2 +- .../work-packages/components/wp-new/wp-create.service.ts | 2 +- .../components/wp-new/wp-new-full-view.component.ts | 2 +- .../components/wp-new/wp-new-split-view.component.ts | 2 +- .../components/wp-query/query-param-listener.service.ts | 2 +- .../work-packages/components/wp-query/url-params-helper.spec.ts | 2 +- .../work-packages/components/wp-query/url-params-helper.ts | 2 +- .../embedded/children/wp-children-inline-create.service.ts | 2 +- .../embedded/children/wp-children-query.component.ts | 2 +- .../add-existing/wp-relation-inline-add-existing.component.ts | 2 +- .../embedded/relations/wp-relation-inline-create.service.ts | 2 +- .../embedded/relations/wp-relation-query.component.ts | 2 +- .../embedded/wp-relation-inline-create.service.interface.ts | 2 +- .../components/wp-relations/embedded/wp-relation-query.base.ts | 2 +- .../wp-relations-autocomplete.component.ts | 2 +- .../wp-relations-group/wp-relations-group.component.ts | 2 +- .../wp-relations-hierarchy/wp-relations-hierarchy.directive.ts | 2 +- .../wp-relations-hierarchy/wp-relations-hierarchy.service.ts | 2 +- .../components/wp-relations/wp-relations.component.ts | 2 +- .../activity-panel/activity-base.controller.ts | 2 +- .../wp-single-view-tabs/activity-panel/activity-entry-info.ts | 2 +- .../activity-panel/activity-on-overview.component.ts | 2 +- .../activity-panel/activity-tab.component.ts | 2 +- .../wp-single-view-tabs/activity-panel/wp-activity.service.ts | 2 +- .../wp-single-view-tabs/keep-tab/keep-tab.service.spec.ts | 2 +- .../components/wp-single-view-tabs/keep-tab/keep-tab.service.ts | 2 +- .../wp-single-view-tabs/overview-tab/overview-tab.component.ts | 2 +- .../relations-tab/relations-tab.component.ts | 2 +- .../wp-single-view-tabs/watchers-tab/watchers-tab.component.ts | 2 +- .../watchers-tab/wp-watcher-entry.component.ts | 2 +- .../wp-single-view-tabs/watchers-tab/wp-watchers.service.ts | 2 +- .../wp-single-view-tabs/wp-linked-resource-cache.service.ts | 2 +- .../components/wp-single-view/wp-single-view.component.ts | 2 +- .../work-packages/components/wp-subject/wp-subject.component.ts | 2 +- .../context-menu-helper/wp-context-menu-helper.service.ts | 2 +- .../wp-table/embedded/embedded-tables-macro.component.ts | 2 +- .../components/wp-table/sort-header/sort-header.directive.ts | 2 +- .../table-pagination/wp-table-pagination.component.spec.ts | 2 +- .../wp-table/table-pagination/wp-table-pagination.component.ts | 2 +- .../wp-table/timeline/cells/wp-timeline-cell-mouse-handler.ts | 2 +- .../components/wp-table/timeline/cells/wp-timeline-cell.ts | 2 +- .../wp-table/timeline/cells/wp-timeline-cells-renderer.ts | 2 +- .../timeline/container/wp-timeline-container.directive.ts | 2 +- .../timeline/global-elements/wp-timeline-relations.directive.ts | 2 +- .../global-elements/wp-timeline-static-elements.directive.ts | 2 +- .../wp-table/timeline/global-elements/wp-timeline.today-line.ts | 2 +- .../wp-table/timeline/grid/wp-timeline-grid.directive.ts | 2 +- .../wp-table/timeline/header/wp-timeline-header.directive.ts | 2 +- .../work-packages/components/wp-table/timeline/wp-timeline.ts | 2 +- .../work-packages/components/wp-table/wp-table-configuration.ts | 2 +- .../work-packages/components/wp-table/wp-table-hover-sync.ts | 2 +- .../work-packages/components/wp-table/wp-table-scroll-sync.ts | 2 +- .../wp-table/wp-table-sums-row/wp-table-sums-row.directive.ts | 2 +- .../work-packages/components/wp-table/wp-table.component.ts | 2 +- .../components/wp-tab-wrapper/wp-tab-wrapper.component.ts | 2 +- .../components/wp-type-status/wp-type-status.component.ts | 2 +- .../components/wp-watcher-button/wp-watcher-button.component.ts | 2 +- .../query-space/wp-isolated-graph-query-space.directive.ts | 2 +- .../directives/query-space/wp-isolated-query-space.directive.ts | 2 +- .../work-packages/openproject-work-package-routes.module.ts | 2 +- .../features/work-packages/openproject-work-packages.module.ts | 2 +- .../partitioned-query-space-page.component.ts | 2 +- .../features/work-packages/routing/split-view-routes.helper.ts | 2 +- .../work-packages/routing/split-view-routes.template.ts | 2 +- .../app/features/work-packages/routing/work-packages-routes.ts | 2 +- .../work-packages/routing/wp-base/wp--base.component.ts | 2 +- .../routing/wp-edit-form/wp-edit-form-routing.service.ts | 2 +- .../routing/wp-full-view/wp-full-view.component.ts | 2 +- .../routing/wp-list-view/wp-list-view.component.ts | 2 +- .../routing/wp-split-view/wp-split-view.component.ts | 2 +- .../routing/wp-view-base/view-services/wp-table-hierarchies.ts | 2 +- .../routing/wp-view-base/view-services/wp-table-highlight.ts | 2 +- .../routing/wp-view-base/view-services/wp-table-pagination.ts | 2 +- .../wp-view-base/view-services/wp-table-relation-columns.ts | 2 +- .../routing/wp-view-base/view-services/wp-table-timeline.ts | 2 +- .../view-services/wp-view-additional-elements.service.ts | 2 +- .../routing/wp-view-base/view-services/wp-view-base.service.ts | 2 +- .../view-services/wp-view-collapsed-groups.service.ts | 2 +- .../wp-view-base/view-services/wp-view-columns.service.ts | 2 +- .../view-services/wp-view-display-representation.service.ts | 2 +- .../wp-view-base/view-services/wp-view-filters.service.ts | 2 +- .../routing/wp-view-base/view-services/wp-view-focus.service.ts | 2 +- .../wp-view-base/view-services/wp-view-group-by.service.ts | 2 +- .../view-services/wp-view-hierarchy-indentation.service.spec.ts | 2 +- .../routing/wp-view-base/view-services/wp-view-order.service.ts | 2 +- .../wp-view-base/view-services/wp-view-pagination.service.ts | 2 +- .../view-services/wp-view-relation-columns.service.ts | 2 +- .../wp-view-base/view-services/wp-view-sort-by.service.ts | 2 +- .../routing/wp-view-base/view-services/wp-view-sum.service.ts | 2 +- .../wp-view-base/view-services/wp-view-timeline.service.ts | 2 +- .../routing/wp-view-base/work-package-single-view.base.ts | 2 +- .../routing/wp-view-base/work-packages-view.base.ts | 2 +- .../routing/wp-view-page/wp-view-page.component.ts | 2 +- .../services/notifications/work-package-notification.service.ts | 2 +- .../services/work-package-authorization.service.ts | 2 +- .../app/features/work-packages/services/work-package.service.ts | 2 +- .../attachment-list/attachment-list-item.component.ts | 2 +- .../attachments/attachment-list/attachment-list.component.ts | 2 +- .../attachments-upload/attachments-upload.component.ts | 2 +- .../app/shared/components/attachments/attachments.component.ts | 2 +- .../components/attachments/authoring/authoring.component.ts | 2 +- .../components/attachments/openproject-attachments.module.ts | 2 +- .../attribute-help-texts/attribute-help-text.component.ts | 2 +- .../attribute-help-texts/attribute-help-text.modal.ts | 2 +- .../attribute-help-texts/attribute-help-text.service.ts | 2 +- .../autocomplete-select-decoration.component.ts | 2 +- .../create-autocompleter/create-autocompleter.component.ts | 2 +- .../autocompleter/members-autocompleter/members.module.ts | 2 +- .../project-menu-autocomplete.component.ts | 2 +- .../te-work-package-autocompleter.component.ts | 2 +- .../user-autocompleter/user-autocompleter.component.ts | 2 +- .../version-autocompleter/version-autocompleter.component.ts | 2 +- .../work-package-autocompleter/wp-autocompleter.component.ts | 2 +- .../collapsible-section/collapsible-section.component.ts | 2 +- .../shared/components/colors/colors-autocompleter.component.ts | 2 +- .../components/copy-to-clipboard/copy-to-clipboard.directive.ts | 2 +- .../src/app/shared/components/date/op-date-time.component.ts | 2 +- .../app/shared/components/datepicker/datepicker.modal.helper.ts | 2 +- .../src/app/shared/components/datepicker/datepicker.modal.ts | 2 +- .../editable-toolbar-title/editable-toolbar-title.component.ts | 2 +- .../ckeditor-augmented-textarea.component.ts | 2 +- .../editor/components/ckeditor/ckeditor-preview.service.ts | 2 +- .../editor/components/ckeditor/op-ckeditor.component.ts | 2 +- .../app/shared/components/editor/openproject-editor.module.ts | 2 +- .../components/fields/display/display-field.initializer.ts | 2 +- .../shared/components/fields/display/display-field.module.ts | 2 +- .../shared/components/fields/display/display-field.service.ts | 2 +- .../fields/display/field-types/boolean-display-field.module.ts | 2 +- .../fields/display/field-types/combined-date-display.field.ts | 2 +- .../fields/display/field-types/date-display-field.module.ts | 2 +- .../fields/display/field-types/datetime-display-field.module.ts | 2 +- .../fields/display/field-types/duration-display-field.module.ts | 2 +- .../fields/display/field-types/float-display-field.module.ts | 2 +- .../display/field-types/formattable-display-field.module.ts | 2 +- .../display/field-types/highlightable-display-field.module.ts | 2 +- .../field-types/highlighted-resource-display-field.module.ts | 2 +- .../fields/display/field-types/id-display-field.module.ts | 2 +- .../fields/display/field-types/integer-display-field.module.ts | 2 +- .../field-types/linked-work-package-display-field.module.ts | 2 +- .../multiple-lines-custom-options-display-field.module.ts | 2 +- .../field-types/multiple-lines-user-display-field.module.ts | 2 +- .../display/field-types/multiple-user-display-field.module.ts | 2 +- .../field-types/plain-formattable-display-field.module.ts | 2 +- .../fields/display/field-types/progress-display-field.module.ts | 2 +- .../display/field-types/progress-text-display-field.module.ts | 2 +- .../display/field-types/project-status-display-field.module.ts | 2 +- .../fields/display/field-types/resource-display-field.module.ts | 2 +- .../display/field-types/resources-display-field.module.ts | 2 +- .../fields/display/field-types/text-display-field.module.ts | 2 +- .../fields/display/field-types/type-display-field.module.ts | 2 +- .../fields/display/field-types/user-display-field.module.ts | 2 +- .../display/field-types/work-package-display-field.module.ts | 2 +- .../fields/display/field-types/wp-id-display-field.module.ts | 2 +- .../display/field-types/wp-spent-time-display-field.module.ts | 2 +- .../app/shared/components/fields/edit/edit-field.component.ts | 2 +- .../app/shared/components/fields/edit/edit-field.initializer.ts | 2 +- .../src/app/shared/components/fields/edit/edit-field.service.ts | 2 +- .../fields/edit/edit-form/edit-form-routing.service.ts | 2 +- .../components/fields/edit/edit-form/edit-form.component.ts | 2 +- .../app/shared/components/fields/edit/edit-form/edit-form.ts | 2 +- .../components/fields/edit/editing-portal/edit-field-handler.ts | 2 +- .../fields/edit/field-controls/edit-field-controls.component.ts | 2 +- .../edit/field-handler/hal-resource-edit-field-handler.ts | 2 +- .../boolean-edit-field/boolean-edit-field.component.ts | 2 +- .../edit/field-types/combined-date-edit-field.component.ts | 2 +- .../field-types/date-edit-field/date-edit-field.component.ts | 2 +- .../fields/edit/field-types/duration-edit-field.component.ts | 2 +- .../edit/field-types/multi-select-edit-field.component.ts | 2 +- .../edit/field-types/plain-formattable-edit-field.component.ts | 2 +- .../edit/field-types/project-status-edit-field.component.ts | 2 +- .../select-edit-field/select-autocompleter-register.service.ts | 2 +- .../select-edit-field/select-edit-field.component.ts | 2 +- .../edit/field-types/te-work-package-edit-field.component.ts | 2 +- .../field-types/text-edit-field/text-edit-field.component.ts | 2 +- .../edit/field-types/work-package-edit-field.component.ts | 2 +- .../fields/edit/field/editable-attribute-field.component.ts | 2 +- .../fields/edit/services/hal-resource-editing.service.ts | 2 +- frontend/src/app/shared/components/fields/field.base.ts | 2 +- frontend/src/app/shared/components/fields/field.service.ts | 2 +- .../components/fields/macros/attribute-label-macro.component.ts | 2 +- .../components/fields/macros/attribute-model-loader.service.ts | 2 +- .../components/fields/macros/attribute-value-macro.component.ts | 2 +- .../fields/macros/work-package-quickinfo-macro.component.ts | 2 +- .../app/shared/components/fields/openproject-fields.module.ts | 2 +- .../src/app/shared/components/grids/openproject-grids.module.ts | 2 +- .../shared/components/grids/widgets/header/header.component.ts | 2 +- .../grids/widgets/menu/widget-abstract-menu.component.ts | 2 +- .../components/grids/widgets/menu/widget-menu.component.ts | 2 +- .../components/grids/widgets/menu/wp-set-menu.component.ts | 2 +- .../project-description/project-description.component.ts | 2 +- .../grids/widgets/project-details/project-details.component.ts | 2 +- .../grids/widgets/project-status/project-status.component.ts | 2 +- .../current-user/time-entries-current-user-menu.component.ts | 2 +- .../grids/widgets/wp-calendar/wp-calendar.component.ts | 2 +- .../grids/widgets/wp-graph/wp-graph-menu.component.ts | 2 +- .../grids/widgets/wp-overview/wp-overview.component.ts | 2 +- .../grids/widgets/wp-table/wp-table-menu.component.ts | 2 +- .../add-section-dropdown/add-section-dropdown.component.ts | 2 +- .../hide-section-link/hide-section-link.component.ts | 2 +- .../app/shared/components/hide-section/hide-section.service.ts | 2 +- .../components/hide-section/show-section-dropdown.component.ts | 2 +- frontend/src/app/shared/components/icon/icon.component.ts | 2 +- frontend/src/app/shared/components/icon/op-icon.spec.ts | 2 +- .../shared/components/modal/modal-wrapper-augment.service.ts | 2 +- .../components/modals/confirm-dialog/confirm-dialog.modal.ts | 2 +- .../components/modals/confirm-dialog/confirm-dialog.service.ts | 2 +- .../modals/confirm-form-submit/confirm-form-submit.directive.ts | 2 +- .../shared/components/modals/editor/editor-macros.service.ts | 2 +- .../editor/macro-child-pages-modal/child-pages-macro.modal.ts | 2 +- .../editor/macro-code-block-modal/code-block-macro.modal.ts | 2 +- .../wiki-include-page-macro.modal.ts | 2 +- .../editor/macro-wp-button-modal/wp-button-macro.modal.ts | 2 +- .../components/modals/modal-wrapper/dynamic-content.modal.ts | 2 +- .../modals/preview-modal/wp-preview-modal/wp-preview.modal.ts | 2 +- .../request-for-confirmation/password-confirmation.modal.ts | 2 +- .../app/shared/components/modals/save-modal/save-query.modal.ts | 2 +- .../shared/components/modals/share-modal/query-sharing.modal.ts | 2 +- .../components/modals/wp-destroy-modal/wp-destroy.modal.ts | 2 +- .../app/shared/components/no-results/no-results.component.ts | 2 +- .../handlers/op-columns-context-menu.directive.ts | 2 +- .../handlers/op-settings-dropdown-menu.directive.ts | 2 +- .../op-context-menu/handlers/op-types-context-menu.directive.ts | 2 +- .../handlers/wp-create-settings-menu.directive.ts | 2 +- .../handlers/wp-group-toggle-dropdown-menu.directive.ts | 2 +- .../handlers/wp-status-dropdown-menu.directive.ts | 2 +- .../op-context-menu/handlers/wp-view-dropdown-menu.directive.ts | 2 +- .../icon-triggered-context-menu.component.ts | 2 +- .../shared/components/op-date-picker/date-picker.directive.ts | 2 +- frontend/src/app/shared/components/op-date-picker/datepicker.ts | 2 +- .../op-single-date-picker/op-single-date-picker.component.ts | 2 +- .../components/op-view-select/op-static-queries.service.ts | 2 +- .../components/op-view-select/op-view-select.component.ts | 2 +- .../components/persistent-toggle/persistent-toggle.component.ts | 2 +- .../src/app/shared/components/principal/principal-helper.ts | 2 +- .../src/app/shared/components/principal/principal.component.ts | 2 +- .../remote-field-updater/remote-field-updater.component.ts | 2 +- .../components/resizer/resizer/main-menu-resizer.component.ts | 2 +- .../shared/components/resizer/resizer/wp-resizer.component.ts | 2 +- .../shared/components/slide-toggle/slide-toggle.component.ts | 2 +- .../shared/components/table-pagination/pagination-instance.ts | 2 +- .../shared/components/table-pagination/pagination-service.ts | 2 +- .../components/table-pagination/table-pagination.component.ts | 2 +- .../components/tabs/content-tabs/content-tabs.component.ts | 2 +- .../src/app/shared/components/tabs/openproject-tabs.module.ts | 2 +- .../components/time_entries/openproject-time-entries.module.ts | 2 +- frontend/src/app/shared/components/toaster/toast.component.ts | 2 +- .../src/app/shared/components/toaster/toast.service.spec.ts | 2 +- frontend/src/app/shared/components/toaster/toast.service.ts | 2 +- .../app/shared/components/toaster/toasts-container.component.ts | 2 +- .../app/shared/components/toaster/upload-progress.component.ts | 2 +- .../app/shared/components/user-link/user-link.component.spec.ts | 2 +- .../src/app/shared/components/user-link/user-link.component.ts | 2 +- .../openproject-work-package-graphs.module.ts | 2 +- .../src/app/shared/directives/a11y/keyboard-shortcut.service.ts | 2 +- frontend/src/app/shared/directives/focus/contain-helpers.ts | 2 +- frontend/src/app/shared/directives/focus/focus-helper.ts | 2 +- .../src/app/shared/directives/focus/focus-within.directive.ts | 2 +- .../shared/directives/highlight-col/highlight-col.directive.ts | 2 +- .../directives/op-drag-scroll/op-drag-scroll.directive.ts | 2 +- frontend/src/app/shared/helpers/api-v3/api-v3-filter-builder.ts | 2 +- .../shared/helpers/drag-and-drop/reorder-delta-builder.spec.ts | 2 +- frontend/src/app/shared/helpers/link-handling/link-handling.ts | 2 +- frontend/src/app/shared/helpers/routing/mobile-guard.helper.ts | 2 +- frontend/src/app/shared/shared.module.ts | 2 +- frontend/src/app/spot/spot.routes.ts | 2 +- frontend/src/global_styles/content/_accounts.sass | 2 +- frontend/src/global_styles/content/_accounts_mobile.sass | 2 +- frontend/src/global_styles/content/_advanced_filters.sass | 2 +- frontend/src/global_styles/content/_ajax_indicator.sass | 2 +- frontend/src/global_styles/content/_attributes_group.sass | 2 +- frontend/src/global_styles/content/_attributes_key_value.sass | 2 +- frontend/src/global_styles/content/_augmented.sass | 2 +- frontend/src/global_styles/content/_autocomplete.sass | 2 +- frontend/src/global_styles/content/_badges.sass | 2 +- frontend/src/global_styles/content/_blockquotes.sass | 2 +- frontend/src/global_styles/content/_boxes.sass | 2 +- frontend/src/global_styles/content/_buttons.sass | 2 +- frontend/src/global_styles/content/_comments.sass | 2 +- frontend/src/global_styles/content/_context_menu.sass | 2 +- frontend/src/global_styles/content/_contextual.sass | 2 +- frontend/src/global_styles/content/_copy_to_clipboard.sass | 2 +- frontend/src/global_styles/content/_custom_actions.sass | 2 +- frontend/src/global_styles/content/_datepicker.sass | 2 +- frontend/src/global_styles/content/_diff.sass | 2 +- frontend/src/global_styles/content/_focus_within.sass | 2 +- frontend/src/global_styles/content/_form_error_messages.sass | 2 +- frontend/src/global_styles/content/_forms.sass | 2 +- frontend/src/global_styles/content/_forms_mobile.sass | 2 +- frontend/src/global_styles/content/_headings.sass | 2 +- frontend/src/global_styles/content/_help_texts.sass | 2 +- frontend/src/global_styles/content/_hidden.sass | 2 +- frontend/src/global_styles/content/_hide_section.sass | 2 +- frontend/src/global_styles/content/_hide_until_initialized.sass | 2 +- frontend/src/global_styles/content/_icon_control.sass | 2 +- frontend/src/global_styles/content/_info_boxes.sass | 2 +- frontend/src/global_styles/content/_information_section.sass | 2 +- frontend/src/global_styles/content/_journal.sass | 2 +- frontend/src/global_styles/content/_links.sass | 2 +- frontend/src/global_styles/content/_list.sass | 2 +- frontend/src/global_styles/content/_members.sass | 2 +- frontend/src/global_styles/content/_my_account.sass | 2 +- frontend/src/global_styles/content/_my_page.sass | 2 +- frontend/src/global_styles/content/_news.sass | 2 +- frontend/src/global_styles/content/_on_off_status.sass | 2 +- frontend/src/global_styles/content/_pagination.sass | 2 +- frontend/src/global_styles/content/_progress_bar.sass | 2 +- frontend/src/global_styles/content/_project_overview.sass | 2 +- frontend/src/global_styles/content/_projects_list.sass | 2 +- .../src/global_styles/content/_request_for_confirmation.sass | 2 +- frontend/src/global_styles/content/_simple_filters.sass | 2 +- frontend/src/global_styles/content/_table.sass | 2 +- frontend/src/global_styles/content/_tables.sass | 2 +- frontend/src/global_styles/content/_tabular.sass | 2 +- frontend/src/global_styles/content/_toast.sass | 2 +- frontend/src/global_styles/content/_toast_mobile.sass | 2 +- frontend/src/global_styles/content/_tooltips.sass | 2 +- frontend/src/global_styles/content/_user.sass | 2 +- frontend/src/global_styles/content/_user_mention.sass | 2 +- frontend/src/global_styles/content/_version.sass | 2 +- frontend/src/global_styles/content/_watchers.sass | 2 +- frontend/src/global_styles/content/_widget_box.sass | 2 +- frontend/src/global_styles/content/_work_packages.sass | 2 +- frontend/src/global_styles/content/drag_and_drop.sass | 2 +- .../src/global_styles/content/work_packages/_table_content.sass | 2 +- .../content/work_packages/inplace_editing/_display_fields.sass | 2 +- .../content/work_packages/inplace_editing/_textareas.sass | 2 +- .../content/work_packages/single_view/_attachments.sass | 2 +- .../content/work_packages/single_view/_single_view.sass | 2 +- .../global_styles/content/work_packages/tabs/_activities.sass | 2 +- .../global_styles/content/work_packages/tabs/_relations.sass | 2 +- frontend/src/global_styles/fonts/_lato.sass | 2 +- frontend/src/global_styles/fonts/_openproject_icon_font.sass | 2 +- frontend/src/global_styles/layout/_admin.sass | 2 +- frontend/src/global_styles/layout/_base.sass | 2 +- frontend/src/global_styles/layout/_base_mobile.sass | 2 +- frontend/src/global_styles/layout/_breadcrumb.sass | 2 +- frontend/src/global_styles/layout/_colors.sass | 2 +- frontend/src/global_styles/layout/_drop_down.sass | 2 +- frontend/src/global_styles/layout/_drop_down_mobile.sass | 2 +- frontend/src/global_styles/layout/_grid.sass | 2 +- frontend/src/global_styles/layout/_index.sass | 2 +- frontend/src/global_styles/layout/_main_menu.sass | 2 +- frontend/src/global_styles/layout/_main_menu_mobile.sass | 2 +- frontend/src/global_styles/layout/_toolbar.sass | 2 +- frontend/src/global_styles/layout/_toolbar_mobile.sass | 2 +- .../src/global_styles/layout/work_packages/_details_view.sass | 2 +- frontend/src/global_styles/layout/work_packages/_full_view.sass | 2 +- frontend/src/global_styles/layout/work_packages/_mobile.sass | 2 +- frontend/src/global_styles/layout/work_packages/_table.sass | 2 +- .../src/global_styles/layout/work_packages/_table_embedded.sass | 2 +- frontend/src/global_styles/openproject/_accessibility.sass | 2 +- frontend/src/global_styles/openproject/_functions.sass | 2 +- frontend/src/global_styles/openproject/_generic.sass | 2 +- frontend/src/global_styles/openproject/_homescreen.sass | 2 +- frontend/src/global_styles/openproject/_mixins.sass | 2 +- frontend/src/global_styles/openproject/_onboarding.sass | 2 +- frontend/src/test/openproject-tests.js | 2 +- frontend/src/typings/open-project.typings.d.ts | 2 +- lib/api/caching/cached_representer.rb | 2 +- lib/api/decorators/aggregation_group.rb | 2 +- lib/api/decorators/allowed_values_by_collection_representer.rb | 2 +- lib/api/decorators/allowed_values_by_link_representer.rb | 2 +- lib/api/decorators/collection.rb | 2 +- lib/api/decorators/create_form.rb | 2 +- lib/api/decorators/date_property.rb | 2 +- lib/api/decorators/digest.rb | 2 +- lib/api/decorators/form.rb | 2 +- lib/api/decorators/formattable.rb | 2 +- lib/api/decorators/formattable_property.rb | 2 +- lib/api/decorators/link_object.rb | 2 +- lib/api/decorators/linked_resource.rb | 2 +- lib/api/decorators/meta_form.rb | 2 +- lib/api/decorators/offset_paginated_collection.rb | 2 +- lib/api/decorators/polymorphic_resource.rb | 2 +- lib/api/decorators/property_schema_representer.rb | 2 +- lib/api/decorators/query_params_representer.rb | 2 +- lib/api/decorators/schema_representer.rb | 2 +- lib/api/decorators/simple_form.rb | 2 +- lib/api/decorators/single.rb | 2 +- lib/api/decorators/sql_collection_representer.rb | 2 +- lib/api/decorators/unpaginated_collection.rb | 2 +- lib/api/decorators/update_form.rb | 2 +- lib/api/errors/bad_request.rb | 2 +- lib/api/errors/conflict.rb | 2 +- lib/api/errors/error_base.rb | 2 +- lib/api/errors/internal_error.rb | 2 +- lib/api/errors/invalid_query.rb | 2 +- lib/api/errors/invalid_render_context.rb | 2 +- lib/api/errors/invalid_request_body.rb | 2 +- lib/api/errors/invalid_resource_link.rb | 2 +- lib/api/errors/invalid_signal.rb | 2 +- lib/api/errors/invalid_user_status_transition.rb | 2 +- lib/api/errors/multiple_errors.rb | 2 +- lib/api/errors/not_found.rb | 2 +- lib/api/errors/not_implemented.rb | 2 +- lib/api/errors/parse_error.rb | 2 +- lib/api/errors/property_format_error.rb | 2 +- lib/api/errors/too_many_requests.rb | 2 +- lib/api/errors/unauthenticated.rb | 2 +- lib/api/errors/unauthorized.rb | 2 +- lib/api/errors/unsupported_media_type.rb | 2 +- lib/api/errors/unwritable_property.rb | 2 +- lib/api/errors/validation.rb | 2 +- lib/api/formatter.rb | 2 +- lib/api/helpers/attachment_renderer.rb | 2 +- lib/api/open_project_api.rb | 2 +- lib/api/patchable_api.rb | 2 +- lib/api/root.rb | 2 +- lib/api/root_api.rb | 2 +- lib/api/utilities/camel_casing_strategy.rb | 2 +- lib/api/utilities/decorator_factory.rb | 2 +- lib/api/utilities/endpoints/bodied.rb | 2 +- lib/api/utilities/endpoints/create.rb | 2 +- lib/api/utilities/endpoints/delete.rb | 2 +- lib/api/utilities/endpoints/index.rb | 2 +- lib/api/utilities/endpoints/modify.rb | 2 +- lib/api/utilities/endpoints/namespaced_lookup.rb | 2 +- lib/api/utilities/endpoints/show.rb | 2 +- lib/api/utilities/endpoints/update.rb | 2 +- lib/api/utilities/grape_helper.rb | 2 +- lib/api/utilities/meta_property.rb | 2 +- lib/api/utilities/page_size_helper.rb | 2 +- lib/api/utilities/payload_representer.rb | 2 +- lib/api/utilities/property_name_converter.rb | 2 +- lib/api/utilities/property_name_converter_query_context.rb | 2 +- lib/api/utilities/property_name_converter_work_package_dummy.rb | 2 +- lib/api/utilities/query_filters_name_converter.rb | 2 +- lib/api/utilities/representer_to_json_cache.rb | 2 +- lib/api/utilities/resource_link_parser.rb | 2 +- lib/api/utilities/text_renderer.rb | 2 +- lib/api/utilities/url_helper.rb | 2 +- lib/api/utilities/wp_property_name_converter.rb | 2 +- lib/api/v3.rb | 2 +- lib/api/v3/actions/action_sql_collection_representer.rb | 2 +- lib/api/v3/actions/actions_api.rb | 2 +- lib/api/v3/activities/activities_api.rb | 2 +- lib/api/v3/activities/activities_by_work_package_api.rb | 2 +- lib/api/v3/activities/activity_collection_representer.rb | 2 +- lib/api/v3/activities/activity_eager_loading_wrapper.rb | 2 +- lib/api/v3/activities/activity_payload_representer.rb | 2 +- lib/api/v3/activities/activity_property_formatters.rb | 2 +- lib/api/v3/activities/activity_representer.rb | 2 +- lib/api/v3/attachments/attachable_payload_representer_mixin.rb | 2 +- lib/api/v3/attachments/attachable_representer_mixin.rb | 2 +- lib/api/v3/attachments/attachment_collection_representer.rb | 2 +- lib/api/v3/attachments/attachment_parsing_representer.rb | 2 +- lib/api/v3/attachments/attachment_representer.rb | 2 +- lib/api/v3/attachments/attachment_upload_representer.rb | 2 +- lib/api/v3/attachments/attachments_api.rb | 2 +- lib/api/v3/attachments/attachments_by_container_api.rb | 2 +- lib/api/v3/attachments/attachments_by_help_text_api.rb | 2 +- lib/api/v3/attachments/attachments_by_post_api.rb | 2 +- lib/api/v3/attachments/attachments_by_wiki_page_api.rb | 2 +- lib/api/v3/attachments/attachments_by_work_package_api.rb | 2 +- lib/api/v3/backups/backup_representer.rb | 2 +- lib/api/v3/backups/backups_api.rb | 2 +- lib/api/v3/capabilities/capabilities_api.rb | 2 +- .../v3/capabilities/capability_sql_collection_representer.rb | 2 +- lib/api/v3/capabilities/contexts/global_api.rb | 2 +- lib/api/v3/capabilities/contexts/global_representer.rb | 2 +- lib/api/v3/categories/categories_api.rb | 2 +- lib/api/v3/categories/categories_by_project_api.rb | 2 +- lib/api/v3/categories/category_collection_representer.rb | 2 +- lib/api/v3/categories/category_representer.rb | 2 +- lib/api/v3/configuration/configuration_api.rb | 2 +- lib/api/v3/configuration/configuration_representer.rb | 2 +- lib/api/v3/cors.rb | 2 +- lib/api/v3/custom_actions/custom_action_execute_representer.rb | 2 +- lib/api/v3/custom_actions/custom_action_representer.rb | 2 +- lib/api/v3/custom_actions/custom_actions_api.rb | 2 +- lib/api/v3/custom_options/custom_option_representer.rb | 2 +- lib/api/v3/custom_options/custom_options_api.rb | 2 +- lib/api/v3/errors/error_representer.rb | 2 +- lib/api/v3/formatter/txt_charset.rb | 2 +- lib/api/v3/groups/group_collection_representer.rb | 2 +- lib/api/v3/groups/group_payload_representer.rb | 2 +- lib/api/v3/groups/group_representer.rb | 2 +- lib/api/v3/groups/groups_api.rb | 2 +- lib/api/v3/help_texts/help_text_collection_representer.rb | 2 +- lib/api/v3/help_texts/help_text_representer.rb | 2 +- lib/api/v3/help_texts/help_texts_api.rb | 2 +- lib/api/v3/memberships/available_projects_api.rb | 2 +- lib/api/v3/memberships/create_form_api.rb | 2 +- lib/api/v3/memberships/create_form_representer.rb | 2 +- lib/api/v3/memberships/form_representer.rb | 2 +- lib/api/v3/memberships/membership_collection_representer.rb | 2 +- lib/api/v3/memberships/membership_meta_representer.rb | 2 +- lib/api/v3/memberships/membership_payload_representer.rb | 2 +- lib/api/v3/memberships/membership_representer.rb | 2 +- lib/api/v3/memberships/memberships_api.rb | 2 +- lib/api/v3/memberships/schemas/membership_schema_api.rb | 2 +- lib/api/v3/memberships/schemas/membership_schema_representer.rb | 2 +- lib/api/v3/memberships/update_form_api.rb | 2 +- lib/api/v3/memberships/update_form_representer.rb | 2 +- lib/api/v3/news/news_api.rb | 2 +- lib/api/v3/news/news_collection_representer.rb | 2 +- lib/api/v3/news/news_representer.rb | 2 +- lib/api/v3/notifications/notification_collection_representer.rb | 2 +- lib/api/v3/notifications/notification_eager_loading_wrapper.rb | 2 +- lib/api/v3/notifications/notification_representer.rb | 2 +- lib/api/v3/notifications/notifications_api.rb | 2 +- lib/api/v3/parser.rb | 2 +- .../placeholder_user_collection_representer.rb | 2 +- .../placeholder_users/placeholder_user_payload_representer.rb | 2 +- lib/api/v3/placeholder_users/placeholder_user_representer.rb | 2 +- lib/api/v3/placeholder_users/placeholder_users_api.rb | 2 +- lib/api/v3/posts/post_representer.rb | 2 +- lib/api/v3/posts/posts_api.rb | 2 +- lib/api/v3/principals/not_builtin_elements.rb | 2 +- lib/api/v3/principals/principal_representer.rb | 2 +- lib/api/v3/principals/principal_representer_factory.rb | 2 +- lib/api/v3/principals/principal_type.rb | 2 +- lib/api/v3/principals/principals_api.rb | 2 +- lib/api/v3/priorities/priorities_api.rb | 2 +- lib/api/v3/priorities/priority_collection_representer.rb | 2 +- lib/api/v3/priorities/priority_representer.rb | 2 +- lib/api/v3/projects/available_assignees_api.rb | 2 +- lib/api/v3/projects/available_parents_api.rb | 2 +- lib/api/v3/projects/available_responsibles_api.rb | 2 +- lib/api/v3/projects/copy/copy_api.rb | 2 +- lib/api/v3/projects/copy/create_form_api.rb | 2 +- lib/api/v3/projects/copy/create_form_representer.rb | 2 +- lib/api/v3/projects/copy/form_representer.rb | 2 +- lib/api/v3/projects/copy/parse_copy_params_service.rb | 2 +- lib/api/v3/projects/copy/project_copy_meta_representer.rb | 2 +- lib/api/v3/projects/copy/project_copy_payload_representer.rb | 2 +- lib/api/v3/projects/copy/project_copy_schema_representer.rb | 2 +- lib/api/v3/projects/create_form_api.rb | 2 +- lib/api/v3/projects/create_form_representer.rb | 2 +- lib/api/v3/projects/form_representer.rb | 2 +- lib/api/v3/projects/project_collection_representer.rb | 2 +- lib/api/v3/projects/project_eager_loading_wrapper.rb | 2 +- lib/api/v3/projects/project_payload_representer.rb | 2 +- lib/api/v3/projects/project_representer.rb | 2 +- lib/api/v3/projects/projects_api.rb | 2 +- lib/api/v3/projects/schemas/project_schema_api.rb | 2 +- lib/api/v3/projects/schemas/project_schema_representer.rb | 2 +- lib/api/v3/projects/statuses/status_representer.rb | 2 +- lib/api/v3/projects/statuses/statuses_api.rb | 2 +- lib/api/v3/projects/update_form_api.rb | 2 +- lib/api/v3/projects/update_form_representer.rb | 2 +- lib/api/v3/queries/columns/query_column_representer.rb | 2 +- lib/api/v3/queries/columns/query_columns_api.rb | 2 +- lib/api/v3/queries/columns/query_columns_factory.rb | 2 +- lib/api/v3/queries/columns/query_property_column_representer.rb | 2 +- .../columns/query_relation_of_type_column_representer.rb | 2 +- .../columns/query_relation_to_type_column_representer.rb | 2 +- lib/api/v3/queries/create_form_api.rb | 2 +- lib/api/v3/queries/create_form_representer.rb | 2 +- lib/api/v3/queries/filters/query_filter_decorator.rb | 2 +- .../filters/query_filter_instance_payload_representer.rb | 2 +- lib/api/v3/queries/filters/query_filter_instance_representer.rb | 2 +- lib/api/v3/queries/filters/query_filter_representer.rb | 2 +- lib/api/v3/queries/filters/query_filters_api.rb | 2 +- lib/api/v3/queries/form_representer.rb | 2 +- lib/api/v3/queries/group_bys/query_group_by_representer.rb | 2 +- lib/api/v3/queries/group_bys/query_group_bys_api.rb | 2 +- lib/api/v3/queries/helpers/query_representer_response.rb | 2 +- lib/api/v3/queries/operators/query_operator_representer.rb | 2 +- lib/api/v3/queries/operators/query_operators_api.rb | 2 +- lib/api/v3/queries/order/query_order_api.rb | 2 +- lib/api/v3/queries/projections/query_projection_representer.rb | 2 +- lib/api/v3/queries/queries_api.rb | 2 +- lib/api/v3/queries/queries_by_project_api.rb | 2 +- lib/api/v3/queries/query_collection_representer.rb | 2 +- lib/api/v3/queries/query_helper.rb | 2 +- lib/api/v3/queries/query_params_representer.rb | 2 +- lib/api/v3/queries/query_payload_representer.rb | 2 +- lib/api/v3/queries/query_representer.rb | 2 +- .../schemas/all_principals_filter_dependency_representer.rb | 2 +- .../schemas/assignee_or_group_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/blocked_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/blocks_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/boolean_filter_dependency_representer.rb | 2 +- .../schemas/by_work_package_filter_dependency_representer.rb | 2 +- .../queries/schemas/category_filter_dependency_representer.rb | 2 +- lib/api/v3/queries/schemas/custom_field_json_cache_key_mixin.rb | 2 +- .../schemas/custom_option_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/date_filter_dependency_representer.rb | 2 +- .../queries/schemas/date_time_filter_dependency_representer.rb | 2 +- .../queries/schemas/duplicated_filter_dependency_representer.rb | 2 +- .../queries/schemas/duplicates_filter_dependency_representer.rb | 2 +- lib/api/v3/queries/schemas/filter_dependency_decorator.rb | 2 +- lib/api/v3/queries/schemas/filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/filter_dependency_representer_factory.rb | 2 +- .../v3/queries/schemas/float_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/follows_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/group_filter_dependency_representer.rb | 2 +- lib/api/v3/queries/schemas/id_filter_dependency_representer.rb | 2 +- .../queries/schemas/includes_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/integer_filter_dependency_representer.rb | 2 +- .../schemas/manual_sort_filter_dependency_representer.rb | 2 +- .../schemas/only_subproject_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/parent_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/partof_filter_dependency_representer.rb | 2 +- .../queries/schemas/precedes_filter_dependency_representer.rb | 2 +- .../queries/schemas/principal_filter_dependency_representer.rb | 2 +- .../queries/schemas/priority_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/project_filter_dependency_representer.rb | 2 +- lib/api/v3/queries/schemas/query_filter_instance_schema_api.rb | 2 +- .../query_filter_instance_schema_collection_representer.rb | 2 +- .../queries/schemas/query_filter_instance_schema_representer.rb | 2 +- .../queries/schemas/query_project_filter_instance_schema_api.rb | 2 +- lib/api/v3/queries/schemas/query_project_schema_api.rb | 2 +- lib/api/v3/queries/schemas/query_schema_api.rb | 2 +- lib/api/v3/queries/schemas/query_schema_representer.rb | 2 +- .../v3/queries/schemas/relates_filter_dependency_representer.rb | 2 +- .../queries/schemas/required_filter_dependency_representer.rb | 2 +- .../queries/schemas/requires_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/role_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/search_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/status_filter_dependency_representer.rb | 2 +- .../queries/schemas/subproject_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/text_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/type_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/user_filter_dependency_representer.rb | 2 +- .../v3/queries/schemas/version_filter_dependency_representer.rb | 2 +- lib/api/v3/queries/sort_bys/query_sort_by_representer.rb | 2 +- lib/api/v3/queries/sort_bys/query_sort_bys_api.rb | 2 +- lib/api/v3/queries/sort_bys/sort_by_decorator.rb | 2 +- lib/api/v3/queries/update_form_api.rb | 2 +- lib/api/v3/queries/update_form_representer.rb | 2 +- lib/api/v3/relations/relation_collection_representer.rb | 2 +- .../v3/relations/relation_paginated_collection_representer.rb | 2 +- lib/api/v3/relations/relation_payload_representer.rb | 2 +- lib/api/v3/relations/relation_representer.rb | 2 +- lib/api/v3/relations/relations_api.rb | 2 +- lib/api/v3/relations/relations_helper.rb | 2 +- lib/api/v3/render/render_api.rb | 2 +- lib/api/v3/repositories/revision_collection_representer.rb | 2 +- lib/api/v3/repositories/revision_representer.rb | 2 +- lib/api/v3/repositories/revisions_api.rb | 2 +- lib/api/v3/repositories/revisions_by_work_package_api.rb | 2 +- lib/api/v3/roles/role_collection_representer.rb | 2 +- lib/api/v3/roles/role_representer.rb | 2 +- lib/api/v3/roles/roles_api.rb | 2 +- lib/api/v3/root.rb | 2 +- lib/api/v3/root_representer.rb | 2 +- lib/api/v3/schemas/schema_collection_representer.rb | 2 +- lib/api/v3/schemas/schema_dependency_representer.rb | 2 +- lib/api/v3/statuses/status_collection_representer.rb | 2 +- lib/api/v3/statuses/status_representer.rb | 2 +- lib/api/v3/statuses/statuses_api.rb | 2 +- lib/api/v3/string_objects/string_objects_api.rb | 2 +- lib/api/v3/types/type_collection_representer.rb | 2 +- lib/api/v3/types/type_representer.rb | 2 +- lib/api/v3/types/types_api.rb | 2 +- lib/api/v3/types/types_by_project_api.rb | 2 +- lib/api/v3/user_preferences/notification_setting_representer.rb | 2 +- lib/api/v3/user_preferences/preferences_by_user_api.rb | 2 +- .../v3/user_preferences/user_preference_payload_representer.rb | 2 +- lib/api/v3/user_preferences/user_preference_representer.rb | 2 +- lib/api/v3/user_preferences/user_preferences_api.rb | 2 +- lib/api/v3/users/create_form_api.rb | 2 +- lib/api/v3/users/create_form_representer.rb | 2 +- lib/api/v3/users/form_representer.rb | 2 +- lib/api/v3/users/paginated_user_collection_representer.rb | 2 +- lib/api/v3/users/schemas/user_schema_api.rb | 2 +- lib/api/v3/users/schemas/user_schema_representer.rb | 2 +- lib/api/v3/users/update_form_api.rb | 2 +- lib/api/v3/users/update_form_representer.rb | 2 +- lib/api/v3/users/user_collection_representer.rb | 2 +- lib/api/v3/users/user_payload_representer.rb | 2 +- lib/api/v3/users/user_representer.rb | 2 +- lib/api/v3/users/users_api.rb | 2 +- lib/api/v3/utilities/custom_field_injector.rb | 2 +- lib/api/v3/utilities/custom_field_injector/link_value_getter.rb | 2 +- lib/api/v3/utilities/custom_field_sum_injector.rb | 2 +- lib/api/v3/utilities/date_time_formatter.rb | 2 +- lib/api/v3/utilities/eager_loading/custom_field_accessor.rb | 2 +- lib/api/v3/utilities/eager_loading/eager_loading_wrapper.rb | 2 +- lib/api/v3/utilities/endpoints/create.rb | 2 +- lib/api/v3/utilities/endpoints/create_form.rb | 2 +- lib/api/v3/utilities/endpoints/delayed_modify.rb | 2 +- lib/api/v3/utilities/endpoints/delete.rb | 2 +- lib/api/v3/utilities/endpoints/form.rb | 2 +- lib/api/v3/utilities/endpoints/index.rb | 2 +- lib/api/v3/utilities/endpoints/schema.rb | 2 +- lib/api/v3/utilities/endpoints/show.rb | 2 +- lib/api/v3/utilities/endpoints/sql_index.rb | 2 +- lib/api/v3/utilities/endpoints/sql_show.rb | 2 +- lib/api/v3/utilities/endpoints/update.rb | 2 +- lib/api/v3/utilities/endpoints/update_form.rb | 2 +- lib/api/v3/utilities/endpoints/v3_deductions.rb | 2 +- lib/api/v3/utilities/endpoints/v3_present_single.rb | 2 +- lib/api/v3/utilities/eprops_conversion.rb | 2 +- lib/api/v3/utilities/params_to_query.rb | 2 +- lib/api/v3/utilities/path_helper.rb | 2 +- lib/api/v3/utilities/resource_link_generator.rb | 2 +- lib/api/v3/versions/available_projects_api.rb | 2 +- lib/api/v3/versions/create_form_api.rb | 2 +- lib/api/v3/versions/create_form_representer.rb | 2 +- lib/api/v3/versions/form_representer.rb | 2 +- lib/api/v3/versions/projects_by_version_api.rb | 2 +- lib/api/v3/versions/schemas/version_schema_api.rb | 2 +- lib/api/v3/versions/schemas/version_schema_representer.rb | 2 +- lib/api/v3/versions/update_form_api.rb | 2 +- lib/api/v3/versions/update_form_representer.rb | 2 +- lib/api/v3/versions/version_collection_representer.rb | 2 +- lib/api/v3/versions/version_payload_representer.rb | 2 +- lib/api/v3/versions/version_representer.rb | 2 +- lib/api/v3/versions/versions_api.rb | 2 +- lib/api/v3/versions/versions_by_project_api.rb | 2 +- lib/api/v3/views/view_collection_representer.rb | 2 +- lib/api/v3/views/view_payload_representer.rb | 2 +- lib/api/v3/views/view_representer.rb | 2 +- lib/api/v3/views/views_api.rb | 2 +- lib/api/v3/watchers/watcher_representer.rb | 2 +- lib/api/v3/wiki_pages/wiki_page_representer.rb | 2 +- lib/api/v3/wiki_pages/wiki_pages_api.rb | 2 +- lib/api/v3/work_packages/available_projects_on_create_api.rb | 2 +- lib/api/v3/work_packages/available_projects_on_edit_api.rb | 2 +- lib/api/v3/work_packages/available_relation_candidates_api.rb | 2 +- lib/api/v3/work_packages/create_form_api.rb | 2 +- lib/api/v3/work_packages/create_form_representer.rb | 2 +- lib/api/v3/work_packages/create_project_form_api.rb | 2 +- lib/api/v3/work_packages/create_project_form_representer.rb | 2 +- lib/api/v3/work_packages/eager_loading/ancestor.rb | 2 +- lib/api/v3/work_packages/eager_loading/base.rb | 2 +- lib/api/v3/work_packages/eager_loading/checksum.rb | 2 +- lib/api/v3/work_packages/eager_loading/custom_action.rb | 2 +- lib/api/v3/work_packages/eager_loading/custom_value.rb | 2 +- lib/api/v3/work_packages/eager_loading/hierarchy.rb | 2 +- lib/api/v3/work_packages/eager_loading/neutral_wrapper.rb | 2 +- lib/api/v3/work_packages/eager_loading/project.rb | 2 +- lib/api/v3/work_packages/form_representer.rb | 2 +- lib/api/v3/work_packages/link_to_object_extractor.rb | 2 +- lib/api/v3/work_packages/parse_params_service.rb | 2 +- lib/api/v3/work_packages/principal_setter.rb | 2 +- lib/api/v3/work_packages/schema/base_work_package_schema.rb | 2 +- .../schema/form_configurations/attribute_representer.rb | 2 +- .../schema/form_configurations/query_representer.rb | 2 +- lib/api/v3/work_packages/schema/specific_work_package_schema.rb | 2 +- lib/api/v3/work_packages/schema/typed_schema_contract.rb | 2 +- lib/api/v3/work_packages/schema/typed_work_package_schema.rb | 2 +- .../schema/work_package_schema_collection_representer.rb | 2 +- .../v3/work_packages/schema/work_package_schema_representer.rb | 2 +- lib/api/v3/work_packages/schema/work_package_schemas_api.rb | 2 +- lib/api/v3/work_packages/schema/work_package_sums_schema.rb | 2 +- .../schema/work_package_sums_schema_representer.rb | 2 +- lib/api/v3/work_packages/update_form_api.rb | 2 +- lib/api/v3/work_packages/update_form_representer.rb | 2 +- lib/api/v3/work_packages/watchers_api.rb | 2 +- lib/api/v3/work_packages/work_package_aggregation_group.rb | 2 +- lib/api/v3/work_packages/work_package_collection_representer.rb | 2 +- lib/api/v3/work_packages/work_package_eager_loading_wrapper.rb | 2 +- .../work_package_lock_version_payload_representer.rb | 2 +- lib/api/v3/work_packages/work_package_payload_representer.rb | 2 +- lib/api/v3/work_packages/work_package_relations_api.rb | 2 +- lib/api/v3/work_packages/work_package_representer.rb | 2 +- lib/api/v3/work_packages/work_packages_api.rb | 2 +- lib/api/v3/work_packages/work_packages_by_project_api.rb | 2 +- lib/api/v3/work_packages/work_packages_shared_helpers.rb | 2 +- lib/ar_condition.rb | 2 +- lib/constraints/enterprise.rb | 2 +- lib/core_extensions.rb | 2 +- lib/core_extensions/string.rb | 2 +- lib/custom_field_form_builder.rb | 2 +- lib/deprecated_alias.rb | 2 +- lib/generators/open_project/plugin/plugin_generator.rb | 2 +- lib/instance_finder.rb | 2 +- lib/open_project.rb | 2 +- lib/open_project/access_control.rb | 2 +- lib/open_project/access_control/mapper.rb | 2 +- lib/open_project/access_control/permission.rb | 2 +- lib/open_project/access_keys.rb | 2 +- lib/open_project/acts_as_url/adapter/op_active_record.rb | 2 +- lib/open_project/assets.rb | 2 +- lib/open_project/cache.rb | 2 +- lib/open_project/cache/cache_key.rb | 2 +- lib/open_project/changed_by_system.rb | 2 +- lib/open_project/configuration.rb | 2 +- lib/open_project/configuration/helpers.rb | 2 +- lib/open_project/content_type_detector.rb | 2 +- lib/open_project/custom_field_format.rb | 2 +- lib/open_project/custom_styles/color_themes.rb | 2 +- lib/open_project/custom_styles/design.rb | 2 +- lib/open_project/database.rb | 2 +- lib/open_project/default_wp_queries.rb | 2 +- lib/open_project/deprecation.rb | 2 +- lib/open_project/enterprise.rb | 2 +- lib/open_project/events.rb | 2 +- lib/open_project/file_command_content_type_detector.rb | 2 +- lib/open_project/files.rb | 2 +- lib/open_project/footer.rb | 2 +- lib/open_project/form_tag_helper.rb | 2 +- lib/open_project/full_text_search.rb | 2 +- lib/open_project/hook.rb | 2 +- lib/open_project/hooks.rb | 2 +- lib/open_project/hooks/view_account_login_auth_provider.rb | 2 +- lib/open_project/hooks/view_account_login_bottom.rb | 2 +- lib/open_project/info.rb | 2 +- lib/open_project/journal/attachment_helper.rb | 2 +- lib/open_project/journal_formatter/attachment.rb | 2 +- lib/open_project/journal_formatter/custom_field.rb | 2 +- lib/open_project/journal_formatter/diff.rb | 2 +- lib/open_project/journal_formatter/schedule_manually.rb | 2 +- lib/open_project/locale_helper.rb | 2 +- lib/open_project/mime_type.rb | 2 +- lib/open_project/mutex.rb | 2 +- lib/open_project/nested_set/rebuild_patch.rb | 2 +- lib/open_project/notifications.rb | 2 +- lib/open_project/null_db_fallback.rb | 2 +- lib/open_project/object_linking.rb | 2 +- lib/open_project/omni_auth/authorization.rb | 2 +- lib/open_project/page_hierarchy_helper.rb | 2 +- lib/open_project/passwords.rb | 2 +- lib/open_project/patches.rb | 2 +- lib/open_project/patches/action_view_accessible_errors.rb | 2 +- .../patches/action_view_helpers_asset_tag_helper.rb | 2 +- lib/open_project/patches/active_model_errors.rb | 2 +- lib/open_project/patches/active_record_i18n.rb | 2 +- lib/open_project/patches/acts_as_list.rb | 2 +- lib/open_project/patches/declarative_option.rb | 2 +- lib/open_project/patches/delivery_job.rb | 2 +- lib/open_project/patches/i18n_reject_empty_string.rb | 2 +- lib/open_project/patches/representable.rb | 2 +- lib/open_project/patches/string.rb | 2 +- lib/open_project/plugins.rb | 2 +- lib/open_project/plugins/acts_as_op_engine.rb | 2 +- lib/open_project/plugins/frontend_linking.rb | 2 +- lib/open_project/plugins/frontend_linking/generator.rb | 2 +- lib/open_project/plugins/load_dependency.rb | 2 +- lib/open_project/plugins/migration_mapping.rb | 2 +- lib/open_project/plugins/module_handler.rb | 2 +- lib/open_project/plugins/patch_registry.rb | 2 +- lib/open_project/repository_authentication.rb | 2 +- lib/open_project/safe_params.rb | 2 +- lib/open_project/scm/adapters.rb | 2 +- lib/open_project/scm/adapters/base.rb | 2 +- lib/open_project/scm/adapters/checkout_instructions.rb | 2 +- lib/open_project/scm/adapters/git.rb | 2 +- lib/open_project/scm/adapters/local_client.rb | 2 +- lib/open_project/scm/adapters/subversion.rb | 2 +- lib/open_project/scm/exceptions.rb | 2 +- lib/open_project/scm/manageable_repository.rb | 2 +- lib/open_project/scm/manager.rb | 2 +- lib/open_project/sql_sanitization.rb | 2 +- lib/open_project/static/homescreen.rb | 2 +- lib/open_project/static/links.rb | 2 +- lib/open_project/static_routing.rb | 2 +- lib/open_project/storage.rb | 2 +- lib/open_project/syntax_highlighting.rb | 2 +- lib/open_project/text_formatting.rb | 2 +- lib/open_project/text_formatting/filters/attachment_filter.rb | 2 +- lib/open_project/text_formatting/filters/autolink_filter.rb | 2 +- lib/open_project/text_formatting/filters/bem_css_filter.rb | 2 +- .../text_formatting/filters/figure_wrapped_filter.rb | 2 +- .../text_formatting/filters/link_attribute_filter.rb | 2 +- lib/open_project/text_formatting/filters/macro_filter.rb | 2 +- lib/open_project/text_formatting/filters/macros/child_pages.rb | 2 +- .../filters/macros/child_pages/child_pages_context.rb | 2 +- .../text_formatting/filters/macros/create_work_package_link.rb | 2 +- .../text_formatting/filters/macros/embedded_table.rb | 2 +- .../text_formatting/filters/macros/include_wiki_page.rb | 2 +- lib/open_project/text_formatting/filters/macros/toc.rb | 2 +- lib/open_project/text_formatting/filters/markdown_filter.rb | 2 +- lib/open_project/text_formatting/filters/mention_filter.rb | 2 +- .../text_formatting/filters/pattern_matcher_filter.rb | 2 +- lib/open_project/text_formatting/filters/plain_filter.rb | 2 +- .../text_formatting/filters/relative_link_filter.rb | 2 +- lib/open_project/text_formatting/filters/sanitization_filter.rb | 2 +- .../text_formatting/filters/setting_macros_filter.rb | 2 +- .../text_formatting/filters/syntax_highlight_filter.rb | 2 +- .../text_formatting/filters/table_of_contents_filter.rb | 2 +- lib/open_project/text_formatting/filters/task_list_filter.rb | 2 +- lib/open_project/text_formatting/formats.rb | 2 +- lib/open_project/text_formatting/formats/base_format.rb | 2 +- lib/open_project/text_formatting/formats/base_formatter.rb | 2 +- lib/open_project/text_formatting/formats/markdown/format.rb | 2 +- lib/open_project/text_formatting/formats/markdown/formatter.rb | 2 +- lib/open_project/text_formatting/formats/markdown/helper.rb | 2 +- .../text_formatting/formats/markdown/pandoc_downloader.rb | 2 +- .../text_formatting/formats/markdown/pandoc_wrapper.rb | 2 +- .../text_formatting/formats/markdown/textile_converter.rb | 2 +- lib/open_project/text_formatting/formats/plain/format.rb | 2 +- lib/open_project/text_formatting/formats/plain/formatter.rb | 2 +- lib/open_project/text_formatting/formats/plain/helper.rb | 2 +- lib/open_project/text_formatting/helpers/link_rewriter.rb | 2 +- lib/open_project/text_formatting/matchers/attribute_macros.rb | 2 +- lib/open_project/text_formatting/matchers/link_handlers/base.rb | 2 +- .../text_formatting/matchers/link_handlers/colon_separator.rb | 2 +- .../text_formatting/matchers/link_handlers/hash_separator.rb | 2 +- .../text_formatting/matchers/link_handlers/revisions.rb | 2 +- .../text_formatting/matchers/link_handlers/work_packages.rb | 2 +- lib/open_project/text_formatting/matchers/regex_matcher.rb | 2 +- .../text_formatting/matchers/resource_links_matcher.rb | 2 +- lib/open_project/text_formatting/matchers/wiki_links_matcher.rb | 2 +- lib/open_project/text_formatting/renderer.rb | 2 +- lib/open_project/text_formatting/truncation.rb | 2 +- lib/open_project/ui/extensible_tabs.rb | 2 +- lib/open_project/version.rb | 2 +- lib/pagination.rb | 2 +- lib/pagination/controller.rb | 2 +- lib/pagination/model.rb | 2 +- lib/plugins/acts_as_attachable/init.rb | 2 +- lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb | 2 +- lib/plugins/acts_as_customizable/init.rb | 2 +- lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb | 2 +- lib/plugins/acts_as_customizable/lib/human_attribute_name.rb | 2 +- lib/plugins/acts_as_event/init.rb | 2 +- lib/plugins/acts_as_event/lib/acts_as_event.rb | 2 +- lib/plugins/acts_as_journalized/init.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/creation.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/format_hooks.rb | 2 +- .../lib/acts/journalized/journal_object_cache.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/journalized.rb | 2 +- lib/plugins/acts_as_journalized/lib/acts/journalized/options.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/permissions.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/reversion.rb | 2 +- .../acts_as_journalized/lib/acts/journalized/save_hooks.rb | 2 +- lib/plugins/acts_as_journalized/lib/acts_as_journalized.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_changes.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_deprecated.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_detail.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_formatter.rb | 2 +- .../acts_as_journalized/lib/journal_formatter/attribute.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_formatter/base.rb | 2 +- .../acts_as_journalized/lib/journal_formatter/datetime.rb | 2 +- .../acts_as_journalized/lib/journal_formatter/decimal.rb | 2 +- .../acts_as_journalized/lib/journal_formatter/fraction.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_formatter/id.rb | 2 +- .../lib/journal_formatter/named_association.rb | 2 +- .../acts_as_journalized/lib/journal_formatter/plaintext.rb | 2 +- lib/plugins/acts_as_journalized/lib/journal_formatter/proc.rb | 2 +- lib/plugins/acts_as_searchable/init.rb | 2 +- lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb | 2 +- lib/plugins/acts_as_watchable/init.rb | 2 +- lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb | 2 +- lib/plugins/acts_as_watchable/lib/acts_as_watchable/routes.rb | 2 +- lib/plugins/load_path_helper.rb | 2 +- lib/redmine/about.rb | 2 +- lib/redmine/ciphering.rb | 2 +- lib/redmine/codeset_util.rb | 2 +- lib/redmine/diff.rb | 2 +- lib/redmine/diff_table.rb | 2 +- lib/redmine/helpers/diff.rb | 2 +- lib/redmine/i18n.rb | 2 +- lib/redmine/imap.rb | 2 +- lib/redmine/menu_manager.rb | 2 +- lib/redmine/menu_manager/mapper.rb | 2 +- lib/redmine/menu_manager/menu_controller.rb | 2 +- lib/redmine/menu_manager/menu_error.rb | 2 +- lib/redmine/menu_manager/menu_helper.rb | 2 +- lib/redmine/menu_manager/menu_item.rb | 2 +- lib/redmine/menu_manager/top_menu/help_menu.rb | 2 +- lib/redmine/menu_manager/top_menu/projects_menu.rb | 2 +- lib/redmine/menu_manager/top_menu/quick_add_menu.rb | 2 +- lib/redmine/menu_manager/top_menu_helper.rb | 2 +- lib/redmine/menu_manager/tree_node.rb | 2 +- lib/redmine/menu_manager/wiki_menu_helper.rb | 2 +- lib/redmine/platform.rb | 2 +- lib/redmine/plugin.rb | 2 +- lib/redmine/pop3.rb | 2 +- lib/redmine/search.rb | 2 +- lib/redmine/unified_diff.rb | 2 +- lib/redmine/views/other_formats_builder.rb | 2 +- lib/services/create_relation.rb | 2 +- lib/services/create_watcher.rb | 2 +- lib/services/remove_watcher.rb | 2 +- lib/tabular_form_builder.rb | 2 +- lib/tasks/api.rake | 2 +- lib/tasks/assets.rake | 2 +- lib/tasks/attachment_migrations.rake | 2 +- lib/tasks/attachments.rake | 2 +- lib/tasks/backup.rake | 2 +- lib/tasks/ciphering.rake | 2 +- lib/tasks/code.rake | 2 +- lib/tasks/copyright.rake | 2 +- lib/tasks/copyright_authors.rake | 2 +- lib/tasks/cron.rake | 2 +- lib/tasks/database.rake | 2 +- lib/tasks/delayed_job.rake | 2 +- lib/tasks/delete_documents.rake | 2 +- lib/tasks/dependencies.rake | 2 +- lib/tasks/deprecated.rake | 2 +- lib/tasks/email.rake | 2 +- lib/tasks/environment.rake | 2 +- lib/tasks/extract_fixtures.rake | 2 +- lib/tasks/fetch_changesets.rake | 2 +- lib/tasks/git.rake | 2 +- lib/tasks/jdbc.rake | 2 +- lib/tasks/ldap.rake | 2 +- lib/tasks/load_default_data.rake | 2 +- lib/tasks/metrics.rake | 2 +- lib/tasks/packager.rake | 2 +- lib/tasks/parallel_testing.rake | 2 +- lib/tasks/permissions.rake | 2 +- lib/tasks/plugin_specs.rake | 2 +- lib/tasks/plugins.rake | 2 +- lib/tasks/random_data.rake | 2 +- lib/tasks/release.rake | 2 +- lib/tasks/reminder.rake | 2 +- lib/tasks/reregister_password_migrations.rake | 2 +- lib/tasks/sample_data.rake | 2 +- lib/tasks/scm.rake | 2 +- lib/tasks/secret_token.rake | 2 +- lib/tasks/setting.rake | 2 +- lib/tasks/shared/user_feedback.rb | 2 +- lib/tasks/testing.rake | 2 +- lib/tasks/time_entry_activities.rake | 2 +- lib/tasks/version.rake | 2 +- lib/tasks/watchers.rake | 2 +- lib/tasks/yardoc.rake | 2 +- modules/auth_plugins/app/views/hooks/login/_providers.html.erb | 2 +- .../auth_plugins/app/views/hooks/login/_providers_css.html.erb | 2 +- modules/auth_plugins/lib/omni_auth/flexible_builder.rb | 2 +- modules/auth_plugins/lib/omni_auth/flexible_strategy.rb | 2 +- modules/auth_plugins/lib/open_project/auth_plugins.rb | 2 +- modules/auth_plugins/lib/open_project/auth_plugins/engine.rb | 2 +- modules/auth_plugins/lib/open_project/auth_plugins/hooks.rb | 2 +- modules/auth_plugins/lib/open_project/plugins/auth_plugin.rb | 2 +- modules/auth_plugins/lib/openproject-auth_plugins.rb | 2 +- modules/auth_plugins/spec/features/auth_provider_spec.rb | 2 +- modules/auth_plugins/spec/requests/auth_plugins.rb | 2 +- modules/auth_plugins/spec/requests/flexible_strategy_spec.rb | 2 +- modules/auth_plugins/spec/views/base.html.erb_spec.rb | 2 +- .../spec/views/hooks/login/_providers.html.erb_spec.rb | 2 +- .../module/avatar-upload-form/avatar-upload-form.component.ts | 2 +- modules/avatars/lib/api/v3/users/user_avatar_api.rb | 2 +- modules/avatars/spec/lib/api/v3/users/user_representer_spec.rb | 2 +- modules/avatars/spec/requests/user_avatar_api_spec.rb | 2 +- .../backlogs/app/controllers/backlogs_settings_controller.rb | 2 +- .../app/controllers/projects/settings/backlogs_controller.rb | 2 +- modules/backlogs/app/controllers/rb_application_controller.rb | 2 +- .../backlogs/app/controllers/rb_burndown_charts_controller.rb | 2 +- .../app/controllers/rb_export_card_configurations_controller.rb | 2 +- modules/backlogs/app/controllers/rb_impediments_controller.rb | 2 +- .../backlogs/app/controllers/rb_master_backlogs_controller.rb | 2 +- modules/backlogs/app/controllers/rb_queries_controller.rb | 2 +- modules/backlogs/app/controllers/rb_sprints_controller.rb | 2 +- modules/backlogs/app/controllers/rb_stories_controller.rb | 2 +- modules/backlogs/app/controllers/rb_taskboards_controller.rb | 2 +- modules/backlogs/app/controllers/rb_tasks_controller.rb | 2 +- modules/backlogs/app/controllers/rb_wikis_controller.rb | 2 +- modules/backlogs/app/controllers/version_settings_controller.rb | 2 +- .../backlogs/app/controllers/work_package_boxes_controller.rb | 2 +- modules/backlogs/app/helpers/burndown_charts_helper.rb | 2 +- modules/backlogs/app/helpers/rb_common_helper.rb | 2 +- modules/backlogs/app/helpers/rb_master_backlogs_helper.rb | 2 +- modules/backlogs/app/helpers/taskboards_helper.rb | 2 +- modules/backlogs/app/helpers/version_settings_helper.rb | 2 +- modules/backlogs/app/models/backlog.rb | 2 +- modules/backlogs/app/models/burndown.rb | 2 +- modules/backlogs/app/models/impediment.rb | 2 +- modules/backlogs/app/models/sprint.rb | 2 +- modules/backlogs/app/models/story.rb | 2 +- modules/backlogs/app/models/task.rb | 2 +- modules/backlogs/app/models/version_setting.rb | 2 +- .../backlogs/app/seeders/basic_data/backlogs/setting_seeder.rb | 2 +- modules/backlogs/app/services/impediments/create_service.rb | 2 +- modules/backlogs/app/services/impediments/update_service.rb | 2 +- modules/backlogs/app/services/stories/create_service.rb | 2 +- modules/backlogs/app/services/stories/update_service.rb | 2 +- modules/backlogs/app/services/tasks/create_service.rb | 2 +- modules/backlogs/app/services/tasks/update_service.rb | 2 +- modules/backlogs/app/views/backlogs_settings/show.html.erb | 2 +- .../backlogs/app/views/projects/settings/backlogs/show.html.erb | 2 +- .../backlogs/app/views/rb_burndown_charts/_burndown.html.erb | 2 +- modules/backlogs/app/views/rb_burndown_charts/show.html.erb | 2 +- .../app/views/rb_export_card_configurations/index.html.erb | 2 +- modules/backlogs/app/views/rb_impediments/_impediment.html.erb | 2 +- modules/backlogs/app/views/rb_master_backlogs/_backlog.html.erb | 2 +- modules/backlogs/app/views/rb_master_backlogs/index.html.erb | 2 +- modules/backlogs/app/views/rb_sprints/_sprint.html.erb | 2 +- modules/backlogs/app/views/rb_stories/_helpers.html.erb | 2 +- modules/backlogs/app/views/rb_stories/_story.html.erb | 2 +- modules/backlogs/app/views/rb_taskboards/show.html.erb | 2 +- modules/backlogs/app/views/rb_tasks/_task.html.erb | 2 +- modules/backlogs/app/views/rb_tasks/index.html.erb | 2 +- modules/backlogs/app/views/shared/_backlogs_header.html.erb | 2 +- modules/backlogs/app/views/shared/_model_errors.html.erb | 2 +- modules/backlogs/app/views/shared/_server_variables.js.erb | 2 +- modules/backlogs/app/views/shared/_validation_errors.html.erb | 2 +- modules/backlogs/app/views/shared/_view_my_settings.html.erb | 2 +- modules/backlogs/app/views/shared/not_configured.html.erb | 2 +- modules/backlogs/app/views/version_settings/_form.html.erb | 2 +- modules/backlogs/app/views/version_settings/edit.html.erb | 2 +- modules/backlogs/config/labels-malformed.yml | 2 +- modules/backlogs/config/labels.yml | 2 +- modules/backlogs/config/locales/crowdin/af.yml | 2 +- modules/backlogs/config/locales/crowdin/ar.yml | 2 +- modules/backlogs/config/locales/crowdin/az.yml | 2 +- modules/backlogs/config/locales/crowdin/bg.yml | 2 +- modules/backlogs/config/locales/crowdin/ca.yml | 2 +- modules/backlogs/config/locales/crowdin/cs.yml | 2 +- modules/backlogs/config/locales/crowdin/da.yml | 2 +- modules/backlogs/config/locales/crowdin/de.yml | 2 +- modules/backlogs/config/locales/crowdin/el.yml | 2 +- modules/backlogs/config/locales/crowdin/eo.yml | 2 +- modules/backlogs/config/locales/crowdin/es.yml | 2 +- modules/backlogs/config/locales/crowdin/et.yml | 2 +- modules/backlogs/config/locales/crowdin/fa.yml | 2 +- modules/backlogs/config/locales/crowdin/fi.yml | 2 +- modules/backlogs/config/locales/crowdin/fil.yml | 2 +- modules/backlogs/config/locales/crowdin/fr.yml | 2 +- modules/backlogs/config/locales/crowdin/he.yml | 2 +- modules/backlogs/config/locales/crowdin/hi.yml | 2 +- modules/backlogs/config/locales/crowdin/hr.yml | 2 +- modules/backlogs/config/locales/crowdin/hu.yml | 2 +- modules/backlogs/config/locales/crowdin/id.yml | 2 +- modules/backlogs/config/locales/crowdin/it.yml | 2 +- modules/backlogs/config/locales/crowdin/ja.yml | 2 +- modules/backlogs/config/locales/crowdin/js-af.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ar.yml | 2 +- modules/backlogs/config/locales/crowdin/js-az.yml | 2 +- modules/backlogs/config/locales/crowdin/js-bg.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ca.yml | 2 +- modules/backlogs/config/locales/crowdin/js-cs.yml | 2 +- modules/backlogs/config/locales/crowdin/js-da.yml | 2 +- modules/backlogs/config/locales/crowdin/js-de.yml | 2 +- modules/backlogs/config/locales/crowdin/js-el.yml | 2 +- modules/backlogs/config/locales/crowdin/js-eo.yml | 2 +- modules/backlogs/config/locales/crowdin/js-es.yml | 2 +- modules/backlogs/config/locales/crowdin/js-et.yml | 2 +- modules/backlogs/config/locales/crowdin/js-fa.yml | 2 +- modules/backlogs/config/locales/crowdin/js-fi.yml | 2 +- modules/backlogs/config/locales/crowdin/js-fil.yml | 2 +- modules/backlogs/config/locales/crowdin/js-fr.yml | 2 +- modules/backlogs/config/locales/crowdin/js-he.yml | 2 +- modules/backlogs/config/locales/crowdin/js-hi.yml | 2 +- modules/backlogs/config/locales/crowdin/js-hr.yml | 2 +- modules/backlogs/config/locales/crowdin/js-hu.yml | 2 +- modules/backlogs/config/locales/crowdin/js-id.yml | 2 +- modules/backlogs/config/locales/crowdin/js-it.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ja.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ko.yml | 2 +- modules/backlogs/config/locales/crowdin/js-lol.yml | 2 +- modules/backlogs/config/locales/crowdin/js-lt.yml | 2 +- modules/backlogs/config/locales/crowdin/js-lv.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ne.yml | 2 +- modules/backlogs/config/locales/crowdin/js-nl.yml | 2 +- modules/backlogs/config/locales/crowdin/js-no.yml | 2 +- modules/backlogs/config/locales/crowdin/js-pl.yml | 2 +- modules/backlogs/config/locales/crowdin/js-pt.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ro.yml | 2 +- modules/backlogs/config/locales/crowdin/js-ru.yml | 2 +- modules/backlogs/config/locales/crowdin/js-rw.yml | 2 +- modules/backlogs/config/locales/crowdin/js-si.yml | 2 +- modules/backlogs/config/locales/crowdin/js-sk.yml | 2 +- modules/backlogs/config/locales/crowdin/js-sl.yml | 2 +- modules/backlogs/config/locales/crowdin/js-sv.yml | 2 +- modules/backlogs/config/locales/crowdin/js-th.yml | 2 +- modules/backlogs/config/locales/crowdin/js-tr.yml | 2 +- modules/backlogs/config/locales/crowdin/js-uk.yml | 2 +- modules/backlogs/config/locales/crowdin/js-vi.yml | 2 +- modules/backlogs/config/locales/crowdin/js-zh-CN.yml | 2 +- modules/backlogs/config/locales/crowdin/js-zh-TW.yml | 2 +- modules/backlogs/config/locales/crowdin/ko.yml | 2 +- modules/backlogs/config/locales/crowdin/lol.yml | 2 +- modules/backlogs/config/locales/crowdin/lt.yml | 2 +- modules/backlogs/config/locales/crowdin/lv.yml | 2 +- modules/backlogs/config/locales/crowdin/ne.yml | 2 +- modules/backlogs/config/locales/crowdin/nl.yml | 2 +- modules/backlogs/config/locales/crowdin/no.yml | 2 +- modules/backlogs/config/locales/crowdin/pl.yml | 2 +- modules/backlogs/config/locales/crowdin/pt.yml | 2 +- modules/backlogs/config/locales/crowdin/ro.yml | 2 +- modules/backlogs/config/locales/crowdin/ru.yml | 2 +- modules/backlogs/config/locales/crowdin/rw.yml | 2 +- modules/backlogs/config/locales/crowdin/si.yml | 2 +- modules/backlogs/config/locales/crowdin/sk.yml | 2 +- modules/backlogs/config/locales/crowdin/sl.yml | 2 +- modules/backlogs/config/locales/crowdin/sv.yml | 2 +- modules/backlogs/config/locales/crowdin/th.yml | 2 +- modules/backlogs/config/locales/crowdin/tr.yml | 2 +- modules/backlogs/config/locales/crowdin/uk.yml | 2 +- modules/backlogs/config/locales/crowdin/vi.yml | 2 +- modules/backlogs/config/locales/crowdin/zh-CN.yml | 2 +- modules/backlogs/config/locales/crowdin/zh-TW.yml | 2 +- modules/backlogs/config/locales/en.yml | 2 +- modules/backlogs/config/locales/js-en.yml | 2 +- modules/backlogs/config/routes.rb | 2 +- .../20180323151208_to_v710_aggregated_backlogs_migrations.rb | 2 +- .../lib/api/v3/backlogs_types/backlogs_type_representer.rb | 2 +- .../v3/queries/schemas/backlogs_type_dependency_representer.rb | 2 +- modules/backlogs/lib/open_project/backlogs.rb | 2 +- modules/backlogs/lib/open_project/backlogs/burndown/series.rb | 2 +- .../lib/open_project/backlogs/burndown/series_raw_data.rb | 2 +- modules/backlogs/lib/open_project/backlogs/compatibility.rb | 2 +- modules/backlogs/lib/open_project/backlogs/engine.rb | 2 +- modules/backlogs/lib/open_project/backlogs/hooks.rb | 2 +- .../lib/open_project/backlogs/hooks/user_settings_hook.rb | 2 +- modules/backlogs/lib/open_project/backlogs/list.rb | 2 +- .../lib/open_project/backlogs/mixins/prevent_issue_sti.rb | 2 +- modules/backlogs/lib/open_project/backlogs/patches.rb | 2 +- .../backlogs/patches/api/work_package_representer.rb | 2 +- .../backlogs/patches/api/work_package_schema_representer.rb | 2 +- .../lib/open_project/backlogs/patches/base_contract_patch.rb | 2 +- .../lib/open_project/backlogs/patches/permitted_params_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/patches/project_patch.rb | 2 +- .../lib/open_project/backlogs/patches/project_seeder_patch.rb | 2 +- .../backlogs/patches/set_attributes_service_patch.rb | 2 +- .../lib/open_project/backlogs/patches/setting_seeder_patch.rb | 2 +- .../backlogs/patches/specific_work_package_schema_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/patches/status_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/patches/type_patch.rb | 2 +- .../backlogs/patches/update_ancestors_service_patch.rb | 2 +- .../lib/open_project/backlogs/patches/update_service_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/patches/user_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/patches/version_patch.rb | 2 +- .../backlogs/patches/versions/base_contract_patch.rb | 2 +- .../open_project/backlogs/patches/versions/row_cell_patch.rb | 2 +- .../open_project/backlogs/patches/versions_controller_patch.rb | 2 +- .../lib/open_project/backlogs/patches/work_package_patch.rb | 2 +- .../backlogs/lib/open_project/backlogs/query_backlogs_column.rb | 2 +- .../backlogs/lib/open_project/backlogs/work_package_filter.rb | 2 +- modules/backlogs/lib/openproject-backlogs.rb | 2 +- modules/backlogs/spec/api/work_package_resource_spec.rb | 2 +- modules/backlogs/spec/api/work_packages/form_resource_spec.rb | 2 +- .../work_packages/schema/specific_work_package_schema_spec.rb | 2 +- .../api/work_packages/work_package_schema_representer_spec.rb | 2 +- .../backlogs/spec/contracts/work_packages/base_contract_spec.rb | 2 +- .../spec/contracts/work_packages/create_contract_spec.rb | 2 +- .../spec/contracts/work_packages/update_contract_spec.rb | 2 +- .../spec/controllers/backlogs_settings_controller_spec.rb | 2 +- modules/backlogs/spec/controllers/versions_controller_spec.rb | 2 +- modules/backlogs/spec/factories/impediment_factory.rb | 2 +- modules/backlogs/spec/factories/sprint_factory.rb | 2 +- modules/backlogs/spec/factories/story_factory.rb | 2 +- modules/backlogs/spec/factories/task_factory.rb | 2 +- modules/backlogs/spec/factories/version_setting_factory.rb | 2 +- modules/backlogs/spec/features/backlogs/create_story_spec.rb | 2 +- modules/backlogs/spec/features/backlogs_in_backlog_view_spec.rb | 2 +- modules/backlogs/spec/features/empty_backlogs_spec.rb | 2 +- modules/backlogs/spec/features/impediments_spec.rb | 2 +- .../spec/features/onboarding/backlogs_onboarding_tour_spec.rb | 2 +- modules/backlogs/spec/features/resolved_status_spec.rb | 2 +- modules/backlogs/spec/features/stories_in_backlog_spec.rb | 2 +- modules/backlogs/spec/features/tasks_on_taskboard_spec.rb | 2 +- modules/backlogs/spec/features/work_packages/filter_spec.rb | 2 +- .../backlogs/spec/features/work_packages/story_points_spec.rb | 2 +- modules/backlogs/spec/helpers/version_settings_helper_spec.rb | 2 +- modules/backlogs/spec/models/backlog_spec.rb | 2 +- modules/backlogs/spec/models/burndown_spec.rb | 2 +- modules/backlogs/spec/models/impediment_spec.rb | 2 +- modules/backlogs/spec/models/issue_position_spec.rb | 2 +- modules/backlogs/spec/models/issue_spec.rb | 2 +- modules/backlogs/spec/models/sprint_spec.rb | 2 +- modules/backlogs/spec/models/story_spec.rb | 2 +- modules/backlogs/spec/models/task_spec.rb | 2 +- modules/backlogs/spec/models/user_spec.rb | 2 +- modules/backlogs/spec/models/version_setting_spec.rb | 2 +- modules/backlogs/spec/models/version_spec.rb | 2 +- modules/backlogs/spec/models/work_package_export_spec.rb | 2 +- modules/backlogs/spec/models/work_package_spec.rb | 2 +- .../backlogs/spec/routing/rb_burndown_charts_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_impediments_routing_spec.rb | 2 +- .../backlogs/spec/routing/rb_master_backlogs_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_queries_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_sprints_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_stories_routing_spec.rb | 2 +- .../routing/rb_taskboard_card_configurations_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_taskboards_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_tasks_routing_spec.rb | 2 +- modules/backlogs/spec/routing/rb_wikis_routing_spec.rb | 2 +- .../backlogs/spec/services/impediments/create_services_spec.rb | 2 +- .../backlogs/spec/services/impediments/update_service_spec.rb | 2 +- modules/backlogs/spec/services/stories/create_service_spec.rb | 2 +- .../services/work_packages/update_ancestors_service_spec.rb | 2 +- .../work_packages/update_service_version_inheritance_spec.rb | 2 +- modules/backlogs/spec/spec_helper.rb | 2 +- modules/backlogs/spec/support/pages/backlogs.rb | 2 +- modules/backlogs/spec/support/pages/taskboard.rb | 2 +- modules/backlogs/spec/views/rb_burndown_charts/show_spec.rb | 2 +- .../spec/views/rb_master_backlogs/index.html.erb_spec.rb | 2 +- modules/backlogs/spec/views/rb_taskboards/show_spec.rb | 2 +- modules/bim/app/contracts/bim/bcf/comments/base_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/comments/create_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/comments/update_contract.rb | 2 +- .../bim/app/contracts/bim/bcf/concerns/manage_bcf_guarded.rb | 2 +- modules/bim/app/contracts/bim/bcf/issues/base_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/issues/create_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/issues/delete_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/issues/update_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/viewpoints/create_contract.rb | 2 +- modules/bim/app/contracts/bim/bcf/viewpoints/delete_contract.rb | 2 +- .../bim/app/contracts/bim/bcf/work_packages/update_contract.rb | 2 +- modules/bim/app/contracts/bim/ifc_models/base_contract.rb | 2 +- modules/bim/app/contracts/bim/ifc_models/create_contract.rb | 2 +- modules/bim/app/contracts/bim/ifc_models/update_contract.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/root.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/auth_api.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/comments/api.rb | 2 +- .../bim/app/controllers/bim/bcf/api/v2_1/current_user_api.rb | 2 +- .../bim/app/controllers/bim/bcf/api/v2_1/endpoints/create.rb | 2 +- .../bim/app/controllers/bim/bcf/api/v2_1/endpoints/delete.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/index.rb | 2 +- .../app/controllers/bim/bcf/api/v2_1/endpoints/modify_mixin.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/show.rb | 2 +- .../bim/app/controllers/bim/bcf/api/v2_1/endpoints/update.rb | 2 +- .../app/controllers/bim/bcf/api/v2_1/project_extensions/api.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/projects_api.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/topics_api.rb | 2 +- modules/bim/app/controllers/bim/bcf/api/v2_1/viewpoints/api.rb | 2 +- modules/bim/app/controllers/bim/bcf/issues_controller.rb | 2 +- .../bim/app/controllers/bim/ifc_models/ifc_models_controller.rb | 2 +- .../bim/app/controllers/bim/ifc_models/ifc_viewer_controller.rb | 2 +- modules/bim/app/formatters/bim/bcf/api/error_formatter/json.rb | 2 +- modules/bim/app/helpers/bcf_application_helper.rb | 2 +- modules/bim/app/models/bim/bcf/comment.rb | 2 +- modules/bim/app/models/bim/bcf/viewpoint.rb | 2 +- .../bim/queries/work_packages/columns/bcf_thumbnail_column.rb | 2 +- .../queries/work_packages/filter/bcf_issue_associated_filter.rb | 2 +- .../representers/bim/bcf/api/v2_1/auth/single_representer.rb | 2 +- .../bim/app/representers/bim/bcf/api/v2_1/base_representer.rb | 2 +- .../bim/bcf/api/v2_1/comments/authorization_representer.rb | 2 +- .../bim/bcf/api/v2_1/comments/single_representer.rb | 2 +- .../app/representers/bim/bcf/api/v2_1/errors/error_mapper.rb | 2 +- .../representers/bim/bcf/api/v2_1/errors/error_representer.rb | 2 +- .../bim/bcf/api/v2_1/project_extensions/representer.rb | 2 +- .../bim/bcf/api/v2_1/projects/single_representer.rb | 2 +- .../bim/bcf/api/v2_1/topics/authorization_representer.rb | 2 +- .../representers/bim/bcf/api/v2_1/topics/single_representer.rb | 2 +- .../representers/bim/bcf/api/v2_1/users/single_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/base_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/coloring_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/full_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/selection_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/single_representer.rb | 2 +- .../bim/bcf/api/v2_1/viewpoints/visibility_representer.rb | 2 +- modules/bim/app/seeders/bim/basic_data/activity_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/priority_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/role_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/setting_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/status_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/theme_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/type_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data/workflow_seeder.rb | 2 +- modules/bim/app/seeders/bim/basic_data_seeder.rb | 2 +- modules/bim/app/seeders/bim/demo_data/bcf_xml_seeder.rb | 2 +- modules/bim/app/seeders/bim/demo_data/ifc_model_seeder.rb | 2 +- .../services/bim/bcf/api/v2_1/parse_resource_params_service.rb | 2 +- modules/bim/app/services/bim/bcf/comments/create_service.rb | 2 +- .../bim/app/services/bim/bcf/comments/set_attributes_service.rb | 2 +- modules/bim/app/services/bim/bcf/comments/update_service.rb | 2 +- modules/bim/app/services/bim/bcf/issues/create_service.rb | 2 +- modules/bim/app/services/bim/bcf/issues/delete_service.rb | 2 +- .../bim/app/services/bim/bcf/issues/set_attributes_service.rb | 2 +- .../app/services/bim/bcf/issues/transform_attributes_service.rb | 2 +- modules/bim/app/services/bim/bcf/issues/update_service.rb | 2 +- modules/bim/app/services/bim/bcf/viewpoints/create_service.rb | 2 +- modules/bim/app/services/bim/bcf/viewpoints/delete_service.rb | 2 +- .../app/services/bim/bcf/viewpoints/set_attributes_service.rb | 2 +- .../bim/app/services/bim/ifc_models/set_attributes_service.rb | 2 +- modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb | 2 +- modules/bim/app/views/bim/ifc_models/ifc_models/edit.html.erb | 2 +- modules/bim/app/views/bim/ifc_models/ifc_models/index.html.erb | 2 +- modules/bim/app/views/bim/ifc_models/ifc_models/new.html.erb | 2 +- modules/bim/app/views/bim/ifc_models/ifc_viewer/show.html.erb | 2 +- modules/bim/config/locales/en.seeders.bim.yml | 2 +- modules/bim/config/routes.rb | 2 +- .../migrate/20201105154216_seed_custom_style_with_bim_theme.rb | 2 +- modules/bim/lib/api/bim/bcf_xml/v1/bcf_xml_api.rb | 2 +- modules/bim/lib/api/bim/utilities/path_helper.rb | 2 +- modules/bim/lib/open_project/bim/engine.rb | 2 +- .../lib/open_project/bim/patches/activity_representer_patch.rb | 2 +- .../api/v3/work_packages/eager_loading/checksum_patch.rb | 2 +- modules/bim/lib/open_project/bim/patches/attachment_patch.rb | 2 +- modules/bim/lib/open_project/bim/patches/journal_patch.rb | 2 +- modules/bim/lib/open_project/bim/patches/project_patch.rb | 2 +- modules/bim/lib/open_project/bim/patches/type_patch.rb | 2 +- modules/bim/lib/open_project/bim/patches/work_package_patch.rb | 2 +- modules/bim/lib/tasks/openproject-bim.rake | 2 +- modules/bim/spec/api/v3/activities/activity_representer_spec.rb | 2 +- .../queries/filters/query_filter_instance_representer_spec.rb | 2 +- .../spec/api/v3/work_packages/work_package_representer_spec.rb | 2 +- modules/bim/spec/bcf/bcf_xml/exporter_spec.rb | 2 +- modules/bim/spec/bcf/bcf_xml/importer_spec.rb | 2 +- modules/bim/spec/bcf/bcf_xml/issue_reader_spec.rb | 2 +- modules/bim/spec/bcf/bcf_xml/issue_writer_spec.rb | 2 +- modules/bim/spec/bcf/bcf_xml/markup_extractor_spec.rb | 2 +- modules/bim/spec/contracts/bcf/issues/create_contract_spec.rb | 2 +- .../bim/spec/contracts/bcf/issues/shared_contract_examples.rb | 2 +- modules/bim/spec/contracts/bcf/issues/update_contract_spec.rb | 2 +- .../bim/spec/contracts/bcf/viewpoints/create_contract_spec.rb | 2 +- modules/bim/spec/contracts/ifc_models/create_contract_spec.rb | 2 +- .../bim/spec/contracts/ifc_models/shared_contract_examples.rb | 2 +- modules/bim/spec/contracts/ifc_models/update_contract_spec.rb | 2 +- modules/bim/spec/contracts/views/create_contract_bim_spec.rb | 2 +- modules/bim/spec/controllers/issues_controller_spec.rb | 2 +- modules/bim/spec/controllers/work_packages_controller_spec.rb | 2 +- modules/bim/spec/factories/bcf_comment_factory.rb | 2 +- modules/bim/spec/factories/bcf_issue_factory.rb | 2 +- modules/bim/spec/factories/bcf_viewpoint_attachment_factory.rb | 2 +- modules/bim/spec/factories/bcf_viewpoint_factory.rb | 2 +- modules/bim/spec/factories/ifc_model_factory.rb | 2 +- modules/bim/spec/factories/xml_viewpoint_factory.rb | 2 +- modules/bim/spec/features/bcf/api_authorization_spec.rb | 2 +- modules/bim/spec/features/bcf/export_spec.rb | 2 +- modules/bim/spec/features/bcf_view_management_spec.rb | 2 +- modules/bim/spec/features/bim_filter_spec.rb | 2 +- modules/bim/spec/features/bim_navigation_spec.rb | 2 +- modules/bim/spec/features/ifc_models/direct_ifc_upload_spec.rb | 2 +- modules/bim/spec/features/ifc_models/regular_ifc_upload_spec.rb | 2 +- modules/bim/spec/features/model_management_spec.rb | 2 +- modules/bim/spec/features/model_viewer_spec.rb | 2 +- .../features/revit_add_in/bim_revit_add_in_navigation_spec.rb | 2 +- .../revit_add_in/bim_revit_add_in_refresh_button_spec.rb | 2 +- modules/bim/spec/features/show_default_spec.rb | 2 +- modules/bim/spec/features/viewer/create_viewpoint_spec.rb | 2 +- modules/bim/spec/features/viewer/delete_viewpoint_spec.rb | 2 +- modules/bim/spec/features/viewer/show_viewpoint_spec.rb | 2 +- .../eager_loading/cache_checksum_integration_spec.rb | 2 +- modules/bim/spec/lib/open_project/access_control_spec.rb | 2 +- .../bcf/bcf_json/viewpoint_reader_shared_examples.rb | 2 +- .../spec/lib/open_project/bcf/bcf_json/viewpoint_reader_spec.rb | 2 +- .../spec/lib/open_project/bcf/bcf_xml/viewpoint_writer_spec.rb | 2 +- .../bim/work_package/exporter/formatters/bcf_thumbnail_spec.rb | 2 +- modules/bim/spec/models/bcf/issue_spec.rb | 2 +- .../bim/spec/models/queries/views/filters/type_filter_spec.rb | 2 +- .../work_packages/filter/bcf_issue_associated_filter_spec.rb | 2 +- modules/bim/spec/models/type_spec.rb | 2 +- .../bcf/api/v2_1/auth/single_representer_rendering_spec.rb | 2 +- .../bcf/api/v2_1/project_extensions/representer_spec.rb | 2 +- .../bcf/api/v2_1/projects/single_representer_rendering_spec.rb | 2 +- .../bcf/api/v2_1/topics/single_representer_rendering_spec.rb | 2 +- .../bcf/api/v2_1/users/single_representer_rendering_spec.rb | 2 +- .../api/v2_1/viewpoints/single_representer_rendering_spec.rb | 2 +- .../bcf/api/v2_1/viewpoints/single_representers_parsing_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/auth_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/comments_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/current_user_api_spec.rb | 2 +- .../spec/requests/api/bcf/v2_1/project_extensions_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/projects_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/shared_responses.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/topics_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb | 2 +- modules/bim/spec/requests/api/bcf_xml/v1/bcf_xml_api_spec.rb | 2 +- modules/bim/spec/seeders/demo_data_seeder_spec.rb | 2 +- modules/bim/spec/services/bcf/issues/create_service_spec.rb | 2 +- modules/bim/spec/services/bcf/viewpoints/create_service_spec.rb | 2 +- .../spec/services/bcf/viewpoints/set_attributes_service_spec.rb | 2 +- .../bim/spec/services/ifc_models/set_attributes_service_spec.rb | 2 +- modules/bim/spec/spec_helper.rb | 2 +- modules/bim/spec/support/components/bcf_details_viewpoints.rb | 2 +- modules/bim/spec/support/components/xeokit_model_tree.rb | 2 +- modules/bim/spec/support/pages/bcf/create_split.rb | 2 +- modules/bim/spec/support/pages/ifc_models/bcf_details_page.rb | 2 +- modules/bim/spec/support/pages/ifc_models/index.rb | 2 +- modules/bim/spec/support/pages/ifc_models/show.rb | 2 +- modules/bim/spec/support/pages/ifc_models/show_default.rb | 2 +- .../spec/views/bim/ifc_models/ifc_models/index.html.erb_spec.rb | 2 +- .../bim/spec/workers/work_packages/exports/export_job_spec.rb | 2 +- modules/boards/app/models/boards/grid.rb | 2 +- .../api/v3/boards/widgets/board_options_representer.rb | 2 +- .../app/services/boards/copy/widgets_dependent_service.rb | 2 +- modules/boards/app/services/boards/copy_service.rb | 2 +- .../lib/open_project/boards/patches/setting_seeder_patch.rb | 2 +- modules/boards/spec/contracts/grids/create_contract_spec.rb | 2 +- .../boards/spec/features/action_boards/assignee_board_spec.rb | 2 +- .../spec/features/action_boards/custom_field_filters_spec.rb | 2 +- modules/boards/spec/features/action_boards/status_board_spec.rb | 2 +- .../features/action_boards/status_type_moving_board_spec.rb | 2 +- .../boards/spec/features/action_boards/subproject_board_spec.rb | 2 +- .../boards/spec/features/action_boards/subtasks_board_spec.rb | 2 +- .../boards/spec/features/action_boards/version_board_spec.rb | 2 +- modules/boards/spec/features/board_conflicts_spec.rb | 2 +- modules/boards/spec/features/board_highlighting_spec.rb | 2 +- modules/boards/spec/features/board_management_spec.rb | 2 +- modules/boards/spec/features/board_navigation_spec.rb | 2 +- .../boards/spec/features/board_reference_work_package_spec.rb | 2 +- modules/boards/spec/features/board_update_spec.rb | 2 +- modules/boards/spec/features/boards_sorting_spec.rb | 2 +- .../spec/features/onboarding/boards_onboarding_tour_spec.rb | 2 +- modules/boards/spec/features/support/board_index_page.rb | 2 +- modules/boards/spec/features/support/board_page.rb | 2 +- modules/boards/spec/features/support/onboarding_steps.rb | 2 +- modules/boards/spec/models/boards/grid_spec.rb | 2 +- modules/boards/spec/queries/grids/query_integration_spec.rb | 2 +- .../requests/api/v3/grids/grids_create_form_resource_spec.rb | 2 +- .../boards/spec/requests/api/v3/grids/grids_resource_spec.rb | 2 +- .../requests/api/v3/grids/grids_update_form_resource_spec.rb | 2 +- modules/boards/spec/routing/boards_routing_spec.rb | 2 +- modules/boards/spec/services/copy_service_integration_spec.rb | 2 +- modules/budgets/app/contracts/budgets/base_contract.rb | 2 +- modules/budgets/app/contracts/budgets/create_contract.rb | 2 +- modules/budgets/app/contracts/budgets/update_contract.rb | 2 +- modules/budgets/app/controllers/budgets_controller.rb | 2 +- modules/budgets/app/helpers/budgets_helper.rb | 2 +- .../budgets/app/models/activities/budget_activity_provider.rb | 2 +- modules/budgets/app/models/budget.rb | 2 +- modules/budgets/app/models/journal/budget_journal.rb | 2 +- modules/budgets/app/models/labor_budget_item.rb | 2 +- modules/budgets/app/models/material_budget_item.rb | 2 +- .../app/models/queries/work_packages/filter/budget_filter.rb | 2 +- modules/budgets/app/services/budgets/create_service.rb | 2 +- modules/budgets/app/services/budgets/set_attributes_service.rb | 2 +- modules/budgets/app/services/budgets/update_service.rb | 2 +- modules/budgets/app/views/budgets/_costs.html.erb | 2 +- modules/budgets/app/views/budgets/_edit.html.erb | 2 +- modules/budgets/app/views/budgets/_form.html.erb | 2 +- modules/budgets/app/views/budgets/_list.html.erb | 2 +- modules/budgets/app/views/budgets/_show.html.erb | 2 +- modules/budgets/app/views/budgets/destroy_info.html.erb | 2 +- modules/budgets/app/views/budgets/edit.html.erb | 2 +- modules/budgets/app/views/budgets/index.html.erb | 2 +- .../budgets/app/views/budgets/items/_labor_budget_item.html.erb | 2 +- .../app/views/budgets/items/_material_budget_item.html.erb | 2 +- modules/budgets/app/views/budgets/new.html.erb | 2 +- modules/budgets/app/views/budgets/show.html.erb | 2 +- .../app/views/budgets/subform/_labor_budget_subform.html.erb | 2 +- .../app/views/budgets/subform/_material_budget_subform.html.erb | 2 +- modules/budgets/config/locales/crowdin/af.yml | 2 +- modules/budgets/config/locales/crowdin/ar.yml | 2 +- modules/budgets/config/locales/crowdin/az.yml | 2 +- modules/budgets/config/locales/crowdin/bg.yml | 2 +- modules/budgets/config/locales/crowdin/ca.yml | 2 +- modules/budgets/config/locales/crowdin/cs.yml | 2 +- modules/budgets/config/locales/crowdin/da.yml | 2 +- modules/budgets/config/locales/crowdin/de.yml | 2 +- modules/budgets/config/locales/crowdin/el.yml | 2 +- modules/budgets/config/locales/crowdin/eo.yml | 2 +- modules/budgets/config/locales/crowdin/es.yml | 2 +- modules/budgets/config/locales/crowdin/et.yml | 2 +- modules/budgets/config/locales/crowdin/fa.yml | 2 +- modules/budgets/config/locales/crowdin/fi.yml | 2 +- modules/budgets/config/locales/crowdin/fil.yml | 2 +- modules/budgets/config/locales/crowdin/fr.yml | 2 +- modules/budgets/config/locales/crowdin/he.yml | 2 +- modules/budgets/config/locales/crowdin/hi.yml | 2 +- modules/budgets/config/locales/crowdin/hr.yml | 2 +- modules/budgets/config/locales/crowdin/hu.yml | 2 +- modules/budgets/config/locales/crowdin/id.yml | 2 +- modules/budgets/config/locales/crowdin/it.yml | 2 +- modules/budgets/config/locales/crowdin/ja.yml | 2 +- modules/budgets/config/locales/crowdin/js-af.yml | 2 +- modules/budgets/config/locales/crowdin/js-ar.yml | 2 +- modules/budgets/config/locales/crowdin/js-az.yml | 2 +- modules/budgets/config/locales/crowdin/js-bg.yml | 2 +- modules/budgets/config/locales/crowdin/js-ca.yml | 2 +- modules/budgets/config/locales/crowdin/js-cs.yml | 2 +- modules/budgets/config/locales/crowdin/js-da.yml | 2 +- modules/budgets/config/locales/crowdin/js-de.yml | 2 +- modules/budgets/config/locales/crowdin/js-el.yml | 2 +- modules/budgets/config/locales/crowdin/js-eo.yml | 2 +- modules/budgets/config/locales/crowdin/js-es.yml | 2 +- modules/budgets/config/locales/crowdin/js-et.yml | 2 +- modules/budgets/config/locales/crowdin/js-fa.yml | 2 +- modules/budgets/config/locales/crowdin/js-fi.yml | 2 +- modules/budgets/config/locales/crowdin/js-fil.yml | 2 +- modules/budgets/config/locales/crowdin/js-fr.yml | 2 +- modules/budgets/config/locales/crowdin/js-he.yml | 2 +- modules/budgets/config/locales/crowdin/js-hi.yml | 2 +- modules/budgets/config/locales/crowdin/js-hr.yml | 2 +- modules/budgets/config/locales/crowdin/js-hu.yml | 2 +- modules/budgets/config/locales/crowdin/js-id.yml | 2 +- modules/budgets/config/locales/crowdin/js-it.yml | 2 +- modules/budgets/config/locales/crowdin/js-ja.yml | 2 +- modules/budgets/config/locales/crowdin/js-ko.yml | 2 +- modules/budgets/config/locales/crowdin/js-lol.yml | 2 +- modules/budgets/config/locales/crowdin/js-lt.yml | 2 +- modules/budgets/config/locales/crowdin/js-lv.yml | 2 +- modules/budgets/config/locales/crowdin/js-ne.yml | 2 +- modules/budgets/config/locales/crowdin/js-nl.yml | 2 +- modules/budgets/config/locales/crowdin/js-no.yml | 2 +- modules/budgets/config/locales/crowdin/js-pl.yml | 2 +- modules/budgets/config/locales/crowdin/js-pt.yml | 2 +- modules/budgets/config/locales/crowdin/js-ro.yml | 2 +- modules/budgets/config/locales/crowdin/js-ru.yml | 2 +- modules/budgets/config/locales/crowdin/js-rw.yml | 2 +- modules/budgets/config/locales/crowdin/js-si.yml | 2 +- modules/budgets/config/locales/crowdin/js-sk.yml | 2 +- modules/budgets/config/locales/crowdin/js-sl.yml | 2 +- modules/budgets/config/locales/crowdin/js-sv.yml | 2 +- modules/budgets/config/locales/crowdin/js-th.yml | 2 +- modules/budgets/config/locales/crowdin/js-tr.yml | 2 +- modules/budgets/config/locales/crowdin/js-uk.yml | 2 +- modules/budgets/config/locales/crowdin/js-vi.yml | 2 +- modules/budgets/config/locales/crowdin/js-zh-CN.yml | 2 +- modules/budgets/config/locales/crowdin/js-zh-TW.yml | 2 +- modules/budgets/config/locales/crowdin/ko.yml | 2 +- modules/budgets/config/locales/crowdin/lol.yml | 2 +- modules/budgets/config/locales/crowdin/lt.yml | 2 +- modules/budgets/config/locales/crowdin/lv.yml | 2 +- modules/budgets/config/locales/crowdin/ne.yml | 2 +- modules/budgets/config/locales/crowdin/nl.yml | 2 +- modules/budgets/config/locales/crowdin/no.yml | 2 +- modules/budgets/config/locales/crowdin/pl.yml | 2 +- modules/budgets/config/locales/crowdin/pt.yml | 2 +- modules/budgets/config/locales/crowdin/ro.yml | 2 +- modules/budgets/config/locales/crowdin/ru.yml | 2 +- modules/budgets/config/locales/crowdin/rw.yml | 2 +- modules/budgets/config/locales/crowdin/si.yml | 2 +- modules/budgets/config/locales/crowdin/sk.yml | 2 +- modules/budgets/config/locales/crowdin/sl.yml | 2 +- modules/budgets/config/locales/crowdin/sv.yml | 2 +- modules/budgets/config/locales/crowdin/th.yml | 2 +- modules/budgets/config/locales/crowdin/tr.yml | 2 +- modules/budgets/config/locales/crowdin/uk.yml | 2 +- modules/budgets/config/locales/crowdin/vi.yml | 2 +- modules/budgets/config/locales/crowdin/zh-CN.yml | 2 +- modules/budgets/config/locales/crowdin/zh-TW.yml | 2 +- modules/budgets/config/locales/en.yml | 2 +- modules/budgets/config/locales/js-en.yml | 2 +- modules/budgets/config/routes.rb | 2 +- .../budgets/db/migrate/20200807083950_keep_enabled_module.rb | 2 +- .../module/augment/cost-budget-subform.augment.service.ts | 2 +- .../frontend/module/augment/cost-subform.augment.service.ts | 2 +- modules/budgets/frontend/module/augment/planned-costs-form.ts | 2 +- .../budgets/lib/api/v3/attachments/attachments_by_budget_api.rb | 2 +- .../budgets/lib/api/v3/budgets/budget_collection_representer.rb | 2 +- modules/budgets/lib/api/v3/budgets/budget_representer.rb | 2 +- modules/budgets/lib/api/v3/budgets/budgets_api.rb | 2 +- modules/budgets/lib/api/v3/budgets/budgets_by_project_api.rb | 2 +- .../v3/queries/schemas/budget_filter_dependency_representer.rb | 2 +- modules/budgets/lib/budgets/hooks/work_package_hook.rb | 2 +- modules/budgets/spec/factories/budget_factory.rb | 2 +- modules/budgets/spec/factories/labor_budget_item_factory.rb | 2 +- modules/budgets/spec/factories/material_budget_item_factory.rb | 2 +- modules/budgets/spec/features/budgets/add_budget_spec.rb | 2 +- modules/budgets/spec/features/budgets/attachment_upload_spec.rb | 2 +- modules/budgets/spec/features/budgets/copy_budget_spec.rb | 2 +- modules/budgets/spec/features/budgets/delete_budget_spec.rb | 2 +- modules/budgets/spec/features/budgets/update_budget_spec.rb | 2 +- modules/budgets/spec/features/costs_edit_fields_spec.rb | 2 +- modules/budgets/spec/features/work_package_filter_spec.rb | 2 +- modules/budgets/spec/helpers/budgets_helper_spec.rb | 2 +- .../budgets/spec/lib/api/v3/budgets/budget_representer_spec.rb | 2 +- modules/budgets/spec/lib/api/v3/path_helper_spec.rb | 2 +- .../queries/schemas/cost_object_dependency_representer_spec.rb | 2 +- modules/budgets/spec/models/budget_spec.rb | 2 +- modules/budgets/spec/models/labor_budget_item_spec.rb | 2 +- modules/budgets/spec/models/permitted_params_spec.rb | 2 +- .../spec/requests/api/v3/budgets/budget_resource_spec.rb | 2 +- modules/budgets/spec/services/budgets/create_service_spec.rb | 2 +- modules/budgets/spec/services/budgets/update_service_spec.rb | 2 +- modules/budgets/spec/spec_helper.rb | 2 +- modules/budgets/spec/support/pages/budget_form.rb | 2 +- modules/budgets/spec/support/pages/destroy_info.rb | 2 +- modules/budgets/spec/support/pages/edit_budget.rb | 2 +- modules/budgets/spec/support/pages/index_budget.rb | 2 +- modules/budgets/spec/support/pages/new_budget.rb | 2 +- .../calendar/app/controllers/calendar/calendars_controller.rb | 2 +- modules/calendar/app/views/calendar/calendars/index.html.erb | 2 +- modules/calendar/app/views/calendar/calendars/show.html.erb | 2 +- modules/calendar/lib/open_project/calendar.rb | 2 +- modules/calendar/spec/controllers/calendar_controller_spec.rb | 2 +- .../calendar/spec/features/calendar_create_work_package_spec.rb | 2 +- modules/calendar/spec/features/calendar_project_include_spec.rb | 2 +- .../calendar/spec/features/calendar_user_interaction_spec.rb | 2 +- modules/calendar/spec/features/calendars_index_spec.rb | 2 +- modules/calendar/spec/features/calendars_spec.rb | 2 +- modules/calendar/spec/features/query_handling_spec.rb | 2 +- modules/calendar/spec/features/shared_context.rb | 2 +- modules/calendar/spec/routing/calendar_routing_spec.rb | 2 +- modules/calendar/spec/support/pages/calendar.rb | 2 +- modules/costs/app/contracts/time_entries/base_contract.rb | 2 +- modules/costs/app/contracts/time_entries/create_contract.rb | 2 +- modules/costs/app/contracts/time_entries/delete_contract.rb | 2 +- modules/costs/app/contracts/time_entries/update_contract.rb | 2 +- modules/costs/app/controllers/cost_types_controller.rb | 2 +- modules/costs/app/controllers/costlog_controller.rb | 2 +- modules/costs/app/controllers/hourly_rates_controller.rb | 2 +- .../projects/settings/time_entry_activities_controller.rb | 2 +- modules/costs/app/helpers/cost_types_helper.rb | 2 +- modules/costs/app/helpers/costlog_helper.rb | 2 +- modules/costs/app/helpers/costs/number_helper.rb | 2 +- modules/costs/app/helpers/hourly_rates_helper.rb | 2 +- .../costs/app/models/activities/time_entry_activity_provider.rb | 2 +- modules/costs/app/models/cost_entry.rb | 2 +- modules/costs/app/models/cost_rate.rb | 2 +- modules/costs/app/models/cost_type.rb | 2 +- modules/costs/app/models/default_hourly_rate.rb | 2 +- modules/costs/app/models/entry.rb | 2 +- modules/costs/app/models/entry/costs.rb | 2 +- modules/costs/app/models/entry/splashed_dates.rb | 2 +- modules/costs/app/models/hourly_rate.rb | 2 +- modules/costs/app/models/journal/time_entry_journal.rb | 2 +- .../costs/app/models/projects/scopes/activated_time_activity.rb | 2 +- .../projects/scopes/visible_with_activated_time_activity.rb | 2 +- modules/costs/app/models/queries/time_entries.rb | 2 +- .../app/models/queries/time_entries/filters/activity_filter.rb | 2 +- .../models/queries/time_entries/filters/created_at_filter.rb | 2 +- .../app/models/queries/time_entries/filters/project_filter.rb | 2 +- .../app/models/queries/time_entries/filters/spent_on_filter.rb | 2 +- .../models/queries/time_entries/filters/time_entry_filter.rb | 2 +- .../models/queries/time_entries/filters/updated_at_filter.rb | 2 +- .../app/models/queries/time_entries/filters/user_filter.rb | 2 +- .../models/queries/time_entries/filters/work_package_filter.rb | 2 +- .../app/models/queries/time_entries/orders/default_order.rb | 2 +- .../costs/app/models/queries/time_entries/time_entry_query.rb | 2 +- modules/costs/app/models/rate.rb | 2 +- modules/costs/app/models/time_entries/scopes/of_user_and_day.rb | 2 +- modules/costs/app/models/time_entries/scopes/visible.rb | 2 +- modules/costs/app/models/time_entry.rb | 2 +- .../models/time_entry_activities/scopes/active_in_project.rb | 2 +- modules/costs/app/models/time_entry_activities_project.rb | 2 +- modules/costs/app/models/time_entry_activity.rb | 2 +- modules/costs/app/models/time_entry_custom_field.rb | 2 +- modules/costs/app/services/time_entries/create_service.rb | 2 +- modules/costs/app/services/time_entries/delete_service.rb | 2 +- .../costs/app/services/time_entries/set_attributes_service.rb | 2 +- modules/costs/app/services/time_entries/update_service.rb | 2 +- modules/costs/app/views/cost_types/_list.html.erb | 2 +- modules/costs/app/views/cost_types/_list_deleted.html.erb | 2 +- modules/costs/app/views/cost_types/_rate.html.erb | 2 +- modules/costs/app/views/cost_types/edit.html.erb | 2 +- modules/costs/app/views/cost_types/index.html.erb | 2 +- modules/costs/app/views/costlog/edit.html.erb | 2 +- modules/costs/app/views/hourly_rates/_list.html.erb | 2 +- modules/costs/app/views/hourly_rates/_list_default.html.erb | 2 +- modules/costs/app/views/hourly_rates/_list_project.html.erb | 2 +- modules/costs/app/views/hourly_rates/_rate.html.erb | 2 +- modules/costs/app/views/hourly_rates/edit.html.erb | 2 +- modules/costs/app/views/hourly_rates/show.html.erb | 2 +- .../settings/time_entry_activities/_activities.html.erb | 2 +- .../views/projects/settings/time_entry_activities/show.html.erb | 2 +- modules/costs/app/views/settings/_costs.html.erb | 2 +- modules/costs/app/views/users/_rates.html.erb | 2 +- modules/costs/config/locales/crowdin/af.yml | 2 +- modules/costs/config/locales/crowdin/ar.yml | 2 +- modules/costs/config/locales/crowdin/az.yml | 2 +- modules/costs/config/locales/crowdin/bg.yml | 2 +- modules/costs/config/locales/crowdin/ca.yml | 2 +- modules/costs/config/locales/crowdin/cs.yml | 2 +- modules/costs/config/locales/crowdin/da.yml | 2 +- modules/costs/config/locales/crowdin/de.yml | 2 +- modules/costs/config/locales/crowdin/el.yml | 2 +- modules/costs/config/locales/crowdin/eo.yml | 2 +- modules/costs/config/locales/crowdin/es.yml | 2 +- modules/costs/config/locales/crowdin/et.yml | 2 +- modules/costs/config/locales/crowdin/fa.yml | 2 +- modules/costs/config/locales/crowdin/fi.yml | 2 +- modules/costs/config/locales/crowdin/fil.yml | 2 +- modules/costs/config/locales/crowdin/fr.yml | 2 +- modules/costs/config/locales/crowdin/he.yml | 2 +- modules/costs/config/locales/crowdin/hi.yml | 2 +- modules/costs/config/locales/crowdin/hr.yml | 2 +- modules/costs/config/locales/crowdin/hu.yml | 2 +- modules/costs/config/locales/crowdin/id.yml | 2 +- modules/costs/config/locales/crowdin/it.yml | 2 +- modules/costs/config/locales/crowdin/ja.yml | 2 +- modules/costs/config/locales/crowdin/js-af.yml | 2 +- modules/costs/config/locales/crowdin/js-ar.yml | 2 +- modules/costs/config/locales/crowdin/js-az.yml | 2 +- modules/costs/config/locales/crowdin/js-bg.yml | 2 +- modules/costs/config/locales/crowdin/js-ca.yml | 2 +- modules/costs/config/locales/crowdin/js-cs.yml | 2 +- modules/costs/config/locales/crowdin/js-da.yml | 2 +- modules/costs/config/locales/crowdin/js-de.yml | 2 +- modules/costs/config/locales/crowdin/js-el.yml | 2 +- modules/costs/config/locales/crowdin/js-eo.yml | 2 +- modules/costs/config/locales/crowdin/js-es.yml | 2 +- modules/costs/config/locales/crowdin/js-et.yml | 2 +- modules/costs/config/locales/crowdin/js-fa.yml | 2 +- modules/costs/config/locales/crowdin/js-fi.yml | 2 +- modules/costs/config/locales/crowdin/js-fil.yml | 2 +- modules/costs/config/locales/crowdin/js-fr.yml | 2 +- modules/costs/config/locales/crowdin/js-he.yml | 2 +- modules/costs/config/locales/crowdin/js-hi.yml | 2 +- modules/costs/config/locales/crowdin/js-hr.yml | 2 +- modules/costs/config/locales/crowdin/js-hu.yml | 2 +- modules/costs/config/locales/crowdin/js-id.yml | 2 +- modules/costs/config/locales/crowdin/js-it.yml | 2 +- modules/costs/config/locales/crowdin/js-ja.yml | 2 +- modules/costs/config/locales/crowdin/js-ko.yml | 2 +- modules/costs/config/locales/crowdin/js-lol.yml | 2 +- modules/costs/config/locales/crowdin/js-lt.yml | 2 +- modules/costs/config/locales/crowdin/js-lv.yml | 2 +- modules/costs/config/locales/crowdin/js-ne.yml | 2 +- modules/costs/config/locales/crowdin/js-nl.yml | 2 +- modules/costs/config/locales/crowdin/js-no.yml | 2 +- modules/costs/config/locales/crowdin/js-pl.yml | 2 +- modules/costs/config/locales/crowdin/js-pt.yml | 2 +- modules/costs/config/locales/crowdin/js-ro.yml | 2 +- modules/costs/config/locales/crowdin/js-ru.yml | 2 +- modules/costs/config/locales/crowdin/js-rw.yml | 2 +- modules/costs/config/locales/crowdin/js-si.yml | 2 +- modules/costs/config/locales/crowdin/js-sk.yml | 2 +- modules/costs/config/locales/crowdin/js-sl.yml | 2 +- modules/costs/config/locales/crowdin/js-sv.yml | 2 +- modules/costs/config/locales/crowdin/js-th.yml | 2 +- modules/costs/config/locales/crowdin/js-tr.yml | 2 +- modules/costs/config/locales/crowdin/js-uk.yml | 2 +- modules/costs/config/locales/crowdin/js-vi.yml | 2 +- modules/costs/config/locales/crowdin/js-zh-CN.yml | 2 +- modules/costs/config/locales/crowdin/js-zh-TW.yml | 2 +- modules/costs/config/locales/crowdin/ko.yml | 2 +- modules/costs/config/locales/crowdin/lol.yml | 2 +- modules/costs/config/locales/crowdin/lt.yml | 2 +- modules/costs/config/locales/crowdin/lv.yml | 2 +- modules/costs/config/locales/crowdin/ne.yml | 2 +- modules/costs/config/locales/crowdin/nl.yml | 2 +- modules/costs/config/locales/crowdin/no.yml | 2 +- modules/costs/config/locales/crowdin/pl.yml | 2 +- modules/costs/config/locales/crowdin/pt.yml | 2 +- modules/costs/config/locales/crowdin/ro.yml | 2 +- modules/costs/config/locales/crowdin/ru.yml | 2 +- modules/costs/config/locales/crowdin/rw.yml | 2 +- modules/costs/config/locales/crowdin/si.yml | 2 +- modules/costs/config/locales/crowdin/sk.yml | 2 +- modules/costs/config/locales/crowdin/sl.yml | 2 +- modules/costs/config/locales/crowdin/sv.yml | 2 +- modules/costs/config/locales/crowdin/th.yml | 2 +- modules/costs/config/locales/crowdin/tr.yml | 2 +- modules/costs/config/locales/crowdin/uk.yml | 2 +- modules/costs/config/locales/crowdin/vi.yml | 2 +- modules/costs/config/locales/crowdin/zh-CN.yml | 2 +- modules/costs/config/locales/crowdin/zh-TW.yml | 2 +- modules/costs/config/locales/en.yml | 2 +- modules/costs/config/locales/js-en.yml | 2 +- modules/costs/config/routes.rb | 2 +- .../20180323133404_to_v710_aggregated_costs_migrations.rb | 2 +- .../db/migrate/20200807083952_rename_time_and_cost_module.rb | 2 +- .../module/wp-display/costs-by-type-display-field.module.ts | 2 +- .../frontend/module/wp-display/currency-display-field.module.ts | 2 +- .../api/v3/cost_entries/aggregated_cost_entry_representer.rb | 2 +- modules/costs/lib/api/v3/cost_entries/cost_entries_api.rb | 2 +- .../lib/api/v3/cost_entries/cost_entries_by_work_package_api.rb | 2 +- .../api/v3/cost_entries/cost_entry_collection_representer.rb | 2 +- modules/costs/lib/api/v3/cost_entries/cost_entry_representer.rb | 2 +- .../v3/cost_entries/work_package_costs_by_type_representer.rb | 2 +- modules/costs/lib/api/v3/cost_types/cost_type_representer.rb | 2 +- modules/costs/lib/api/v3/cost_types/cost_types_api.rb | 2 +- modules/costs/lib/api/v3/time_entries/available_projects_api.rb | 2 +- .../lib/api/v3/time_entries/available_work_packages_helper.rb | 2 +- .../v3/time_entries/available_work_packages_on_create_api.rb | 2 +- .../api/v3/time_entries/available_work_packages_on_edit_api.rb | 2 +- modules/costs/lib/api/v3/time_entries/create_form_api.rb | 2 +- .../costs/lib/api/v3/time_entries/create_form_representer.rb | 2 +- modules/costs/lib/api/v3/time_entries/form_representer.rb | 2 +- .../lib/api/v3/time_entries/schemas/time_entry_schema_api.rb | 2 +- .../v3/time_entries/schemas/time_entry_schema_representer.rb | 2 +- .../costs/lib/api/v3/time_entries/time_entries_activity_api.rb | 2 +- .../api/v3/time_entries/time_entries_activity_representer.rb | 2 +- modules/costs/lib/api/v3/time_entries/time_entries_api.rb | 2 +- .../api/v3/time_entries/time_entry_collection_representer.rb | 2 +- .../lib/api/v3/time_entries/time_entry_payload_representer.rb | 2 +- modules/costs/lib/api/v3/time_entries/time_entry_representer.rb | 2 +- modules/costs/lib/api/v3/time_entries/update_form_api.rb | 2 +- .../costs/lib/api/v3/time_entries/update_form_representer.rb | 2 +- modules/costs/lib/costs.rb | 2 +- modules/costs/lib/costs/attributes_helper.rb | 2 +- modules/costs/lib/costs/deleted_user_fallback.rb | 2 +- modules/costs/lib/costs/engine.rb | 2 +- modules/costs/lib/costs/patches.rb | 2 +- modules/costs/lib/costs/patches/members_patch.rb | 2 +- .../lib/costs/patches/number_to_currency_converter_patch.rb | 2 +- modules/costs/lib/costs/patches/permitted_params_patch.rb | 2 +- modules/costs/lib/costs/patches/project_patch.rb | 2 +- modules/costs/lib/costs/patches/projects_controller_patch.rb | 2 +- modules/costs/lib/costs/patches/role_seeder_patch.rb | 2 +- modules/costs/lib/costs/patches/setting_seeder_patch.rb | 2 +- modules/costs/lib/costs/patches/user_patch.rb | 2 +- modules/costs/lib/costs/query_currency_column.rb | 2 +- .../costs/spec/contracts/time_entries/create_contract_spec.rb | 2 +- .../costs/spec/contracts/time_entries/delete_contract_spec.rb | 2 +- .../spec/contracts/time_entries/shared_contract_examples.rb | 2 +- .../costs/spec/contracts/time_entries/update_contract_spec.rb | 2 +- modules/costs/spec/controllers/cost_types_controller_spec.rb | 2 +- modules/costs/spec/controllers/costlog_controller_spec.rb | 2 +- modules/costs/spec/controllers/hourly_rates_controller_spec.rb | 2 +- .../spec/controllers/work_packages_bulk_controller_spec.rb | 2 +- modules/costs/spec/factories/cost_entry_factory.rb | 2 +- modules/costs/spec/factories/cost_rate_factory.rb | 2 +- modules/costs/spec/factories/cost_type_factory.rb | 2 +- modules/costs/spec/factories/default_hourly_rate_factory.rb | 2 +- modules/costs/spec/factories/hourly_rate_factory.rb | 2 +- modules/costs/spec/factories/journal/budget_journal_factory.rb | 2 +- .../costs/spec/factories/journal/time_entry_journal_factory.rb | 2 +- modules/costs/spec/factories/rate_factory.rb | 2 +- modules/costs/spec/factories/time_entry_activity_factory.rb | 2 +- modules/costs/spec/factories/time_entry_factory.rb | 2 +- modules/costs/spec/features/cost_entries/add_cost_entry_spec.rb | 2 +- .../cost_entries/add_entry_without_rate_permission_spec.rb | 2 +- modules/costs/spec/features/cost_types/create_cost_type_spec.rb | 2 +- modules/costs/spec/features/cost_types/delete_cost_type_spec.rb | 2 +- .../features/destroy_work_package_with_cost_entries_spec.rb | 2 +- modules/costs/spec/features/members_hourly_rates_spec.rb | 2 +- modules/costs/spec/features/time_entries_spec.rb | 2 +- modules/costs/spec/features/time_entry/activity_spec.rb | 2 +- modules/costs/spec/features/users_hourly_rates_spec.rb | 2 +- modules/costs/spec/features/view_own_rates_spec.rb | 2 +- modules/costs/spec/helpers/costs/number_helper_spec.rb | 2 +- .../v3/cost_entries/aggregated_cost_entry_representer_spec.rb | 2 +- .../spec/lib/api/v3/cost_entries/cost_entry_representer_spec.rb | 2 +- .../cost_entries/work_package_costs_by_type_representer_spec.rb | 2 +- .../spec/lib/api/v3/cost_types/cost_type_representer_spec.rb | 2 +- .../spec/lib/api/v3/costs_api_user_permission_check_spec.rb | 2 +- modules/costs/spec/lib/api/v3/path_helper_spec.rb | 2 +- .../time_entries/schemas/time_entry_schema_representer_spec.rb | 2 +- .../time_entries_activity_representer_rendering_spec.rb | 2 +- .../api/v3/time_entries/time_entry_representer_parsing_spec.rb | 2 +- .../v3/time_entries/time_entry_representer_rendering_spec.rb | 2 +- .../lib/api/v3/work_packages/work_package_representer_spec.rb | 2 +- .../v3/work_packages/work_package_schema_representer_spec.rb | 2 +- modules/costs/spec/lib/costs/query_currency_column_spec.rb | 2 +- modules/costs/spec/lib/open_project/costs/default_data_spec.rb | 2 +- modules/costs/spec/models/cost_entry_spec.rb | 2 +- modules/costs/spec/models/cost_type_spec.rb | 2 +- modules/costs/spec/models/default_hourly_rate_spec.rb | 2 +- modules/costs/spec/models/hourly_rate_spec.rb | 2 +- modules/costs/spec/models/permitted_params_spec.rb | 2 +- modules/costs/spec/models/project/activity_spec.rb | 2 +- .../spec/models/projects/scopes/activated_time_activity_spec.rb | 2 +- .../scopes/visible_with_activated_time_activity_spec.rb | 2 +- .../models/queries/time_entries/filters/activity_filter_spec.rb | 2 +- .../queries/time_entries/filters/created_at_filter_spec.rb | 2 +- .../models/queries/time_entries/filters/project_filter_spec.rb | 2 +- .../models/queries/time_entries/filters/spent_on_filter_spec.rb | 2 +- .../queries/time_entries/filters/updated_at_filter_spec.rb | 2 +- .../models/queries/time_entries/filters/user_filter_spec.rb | 2 +- .../queries/time_entries/filters/work_package_filter_spec.rb | 2 +- .../spec/models/queries/time_entries/time_entry_query_spec.rb | 2 +- modules/costs/spec/models/rate_spec.rb | 2 +- .../spec/models/time_entries/scopes/of_user_and_day_spec.rb | 2 +- modules/costs/spec/models/time_entries/scopes/visible_spec.rb | 2 +- .../time_entry_activities/scopes/active_in_project_spec.rb | 2 +- modules/costs/spec/models/time_entry_activity_spec.rb | 2 +- modules/costs/spec/models/time_entry_spec.rb | 2 +- modules/costs/spec/models/user_spec.rb | 2 +- .../spec/models/work_package/ask_before_destruction_spec.rb | 2 +- modules/costs/spec/models/work_package_spec.rb | 2 +- modules/costs/spec/plugin_spec_helper.rb | 2 +- .../api/attachments/attachments_by_budget_resource_spec.rb | 2 +- .../cost_entries/cost_entries_by_work_package_resource_spec.rb | 2 +- .../spec/requests/api/cost_entries/cost_entry_resource_spec.rb | 2 +- .../spec/requests/api/cost_types/cost_type_resource_spec.rb | 2 +- .../api/time_entries/available_projects_resource_spec.rb | 2 +- .../api/time_entries/schemas/time_entry_schema_resource_spec.rb | 2 +- .../spec/requests/api/time_entry_activity_resource_spec.rb | 2 +- modules/costs/spec/requests/api/time_entry_resource_spec.rb | 2 +- modules/costs/spec/routing/cost_objects_routing_spec.rb | 2 +- modules/costs/spec/routing/cost_types_routing_spec.rb | 2 +- modules/costs/spec/routing/costlog_routing_spec.rb | 2 +- modules/costs/spec/routing/hourly_rates_routing_spec.rb | 2 +- .../spec/services/time_entries/set_attributes_service_spec.rb | 2 +- modules/costs/spec/spec_helper.rb | 2 +- modules/dashboards/app/models/grids/dashboard.rb | 2 +- modules/dashboards/spec/contracts/grids/create_contract_spec.rb | 2 +- modules/dashboards/spec/contracts/grids/shared_examples.rb | 2 +- modules/dashboards/spec/features/custom_text_spec.rb | 2 +- modules/dashboards/spec/features/docments_spec.rb | 2 +- modules/dashboards/spec/features/members_principals_spec.rb | 2 +- modules/dashboards/spec/features/members_spec.rb | 2 +- .../dashboards/spec/features/modifying_with_unallowed_spec.rb | 2 +- modules/dashboards/spec/features/navigation_spec.rb | 2 +- modules/dashboards/spec/features/news_spec.rb | 2 +- modules/dashboards/spec/features/project_description_spec.rb | 2 +- modules/dashboards/spec/features/project_details_spec.rb | 2 +- modules/dashboards/spec/features/project_status_spec.rb | 2 +- modules/dashboards/spec/features/read_only_allowed_spec.rb | 2 +- modules/dashboards/spec/features/subprojects_spec.rb | 2 +- modules/dashboards/spec/features/time_entries_spec.rb | 2 +- modules/dashboards/spec/features/work_package_calendar_spec.rb | 2 +- .../spec/features/work_package_graph_overview_spec.rb | 2 +- modules/dashboards/spec/features/work_package_graph_spec.rb | 2 +- modules/dashboards/spec/features/work_package_table_spec.rb | 2 +- .../dashboards/spec/requests/api/v3/attachments/grid_spec.rb | 2 +- .../requests/api/v3/grids/grids_create_form_resource_spec.rb | 2 +- .../spec/requests/api/v3/grids/grids_resource_spec.rb | 2 +- modules/dashboards/spec/support/pages/dashboard.rb | 2 +- modules/documents/app/contracts/documents/base_contract.rb | 2 +- modules/documents/app/contracts/documents/create_contract.rb | 2 +- modules/documents/app/contracts/documents/update_contract.rb | 2 +- modules/documents/app/controllers/documents_controller.rb | 2 +- modules/documents/app/helpers/documents_helper.rb | 2 +- modules/documents/app/mailers/documents_mailer.rb | 2 +- .../app/models/activities/document_activity_provider.rb | 2 +- modules/documents/app/models/document.rb | 2 +- modules/documents/app/models/document_category.rb | 2 +- modules/documents/app/models/journal/document_journal.rb | 2 +- modules/documents/app/models/queries/documents.rb | 2 +- .../documents/app/models/queries/documents/document_query.rb | 2 +- .../app/models/queries/documents/filters/document_filter.rb | 2 +- .../app/models/queries/documents/filters/project_filter.rb | 2 +- .../app/models/queries/documents/orders/default_order.rb | 2 +- .../app/seeders/basic_data/documents/enumeration_seeder.rb | 2 +- modules/documents/app/services/documents/create_service.rb | 2 +- .../documents/app/services/documents/set_attributes_service.rb | 2 +- modules/documents/app/services/documents/update_service.rb | 2 +- .../create_from_model_service/document_strategy.rb | 2 +- .../services/notifications/mail_service/document_strategy.rb | 2 +- modules/documents/app/views/documents/_document.html.erb | 2 +- modules/documents/app/views/documents/_form.html.erb | 2 +- modules/documents/app/views/documents/edit.html.erb | 2 +- modules/documents/app/views/documents/index.html.erb | 2 +- modules/documents/app/views/documents/new.html.erb | 2 +- modules/documents/app/views/documents/show.html.erb | 2 +- .../app/views/documents_mailer/document_added.html.erb | 2 +- .../app/views/documents_mailer/document_added.text.erb | 2 +- modules/documents/app/views/help/wiki_syntax_detailed.html.erb | 2 +- modules/documents/config/locales/crowdin/af.yml | 2 +- modules/documents/config/locales/crowdin/ar.yml | 2 +- modules/documents/config/locales/crowdin/az.yml | 2 +- modules/documents/config/locales/crowdin/bg.yml | 2 +- modules/documents/config/locales/crowdin/ca.yml | 2 +- modules/documents/config/locales/crowdin/cs.yml | 2 +- modules/documents/config/locales/crowdin/da.yml | 2 +- modules/documents/config/locales/crowdin/de.yml | 2 +- modules/documents/config/locales/crowdin/el.yml | 2 +- modules/documents/config/locales/crowdin/eo.yml | 2 +- modules/documents/config/locales/crowdin/es.yml | 2 +- modules/documents/config/locales/crowdin/et.yml | 2 +- modules/documents/config/locales/crowdin/fa.yml | 2 +- modules/documents/config/locales/crowdin/fi.yml | 2 +- modules/documents/config/locales/crowdin/fil.yml | 2 +- modules/documents/config/locales/crowdin/fr.yml | 2 +- modules/documents/config/locales/crowdin/he.yml | 2 +- modules/documents/config/locales/crowdin/hi.yml | 2 +- modules/documents/config/locales/crowdin/hr.yml | 2 +- modules/documents/config/locales/crowdin/hu.yml | 2 +- modules/documents/config/locales/crowdin/id.yml | 2 +- modules/documents/config/locales/crowdin/it.yml | 2 +- modules/documents/config/locales/crowdin/ja.yml | 2 +- modules/documents/config/locales/crowdin/ko.yml | 2 +- modules/documents/config/locales/crowdin/lol.yml | 2 +- modules/documents/config/locales/crowdin/lt.yml | 2 +- modules/documents/config/locales/crowdin/lv.yml | 2 +- modules/documents/config/locales/crowdin/ne.yml | 2 +- modules/documents/config/locales/crowdin/nl.yml | 2 +- modules/documents/config/locales/crowdin/no.yml | 2 +- modules/documents/config/locales/crowdin/pl.yml | 2 +- modules/documents/config/locales/crowdin/pt.yml | 2 +- modules/documents/config/locales/crowdin/ro.yml | 2 +- modules/documents/config/locales/crowdin/ru.yml | 2 +- modules/documents/config/locales/crowdin/rw.yml | 2 +- modules/documents/config/locales/crowdin/si.yml | 2 +- modules/documents/config/locales/crowdin/sk.yml | 2 +- modules/documents/config/locales/crowdin/sl.yml | 2 +- modules/documents/config/locales/crowdin/sv.yml | 2 +- modules/documents/config/locales/crowdin/th.yml | 2 +- modules/documents/config/locales/crowdin/tr.yml | 2 +- modules/documents/config/locales/crowdin/uk.yml | 2 +- modules/documents/config/locales/crowdin/vi.yml | 2 +- modules/documents/config/locales/crowdin/zh-CN.yml | 2 +- modules/documents/config/locales/crowdin/zh-TW.yml | 2 +- modules/documents/config/locales/en.yml | 2 +- modules/documents/config/routes.rb | 2 +- .../20180323140208_to_v710_aggregated_documents_migrations.rb | 2 +- .../frontend/module/hal/resources/document-resource.ts | 2 +- modules/documents/frontend/module/main.ts | 2 +- .../lib/api/v3/attachments/attachments_by_document_api.rb | 2 +- .../lib/api/v3/documents/document_collection_representer.rb | 2 +- modules/documents/lib/api/v3/documents/document_representer.rb | 2 +- modules/documents/lib/api/v3/documents/documents_api.rb | 2 +- modules/documents/lib/open_project/documents.rb | 2 +- modules/documents/lib/open_project/documents/engine.rb | 2 +- modules/documents/lib/open_project/documents/patches.rb | 2 +- .../lib/open_project/documents/patches/project_patch.rb | 2 +- modules/documents/lib/openproject-documents.rb | 2 +- .../api/v3/documents/document_representer_rendering_spec.rb | 2 +- modules/documents/spec/application_helper_spec.rb | 2 +- modules/documents/spec/controllers/documents_controller_spec.rb | 2 +- modules/documents/spec/factories/document_category_factory.rb | 2 +- modules/documents/spec/factories/document_factory.rb | 2 +- .../spec/factories/journal/document_journal_factory.rb | 2 +- modules/documents/spec/features/attachment_upload_spec.rb | 2 +- .../documents/spec/lib/open_project/markdown_formatting_spec.rb | 2 +- modules/documents/spec/lib/redmine/access_control_spec.rb | 2 +- modules/documents/spec/mailers/documents_mailer_spec.rb | 2 +- modules/documents/spec/models/document_category_spec.rb | 2 +- modules/documents/spec/models/document_spec.rb | 2 +- .../spec/models/queries/documents/document_query_spec.rb | 2 +- .../models/queries/documents/filters/project_filter_spec.rb | 2 +- .../v3/attachments/attachments_by_documents_resource_spec.rb | 2 +- .../spec/requests/api/v3/documents/documents_resource_spec.rb | 2 +- modules/documents/spec/routing/documents_routing_spec.rb | 2 +- .../notifications/create_from_model_service_document_spec.rb | 2 +- .../documents/spec/services/notifications/mail_service_spec.rb | 2 +- modules/documents/spec/spec_helper.rb | 2 +- modules/github_integration/app/models/github_check_run.rb | 2 +- modules/github_integration/app/models/github_pull_request.rb | 2 +- modules/github_integration/app/models/github_user.rb | 2 +- .../app/workers/cron/clear_old_pull_requests_job.rb | 2 +- modules/github_integration/config/locales/crowdin/af.yml | 2 +- modules/github_integration/config/locales/crowdin/ar.yml | 2 +- modules/github_integration/config/locales/crowdin/az.yml | 2 +- modules/github_integration/config/locales/crowdin/bg.yml | 2 +- modules/github_integration/config/locales/crowdin/ca.yml | 2 +- modules/github_integration/config/locales/crowdin/cs.yml | 2 +- modules/github_integration/config/locales/crowdin/da.yml | 2 +- modules/github_integration/config/locales/crowdin/de.yml | 2 +- modules/github_integration/config/locales/crowdin/el.yml | 2 +- modules/github_integration/config/locales/crowdin/eo.yml | 2 +- modules/github_integration/config/locales/crowdin/es.yml | 2 +- modules/github_integration/config/locales/crowdin/et.yml | 2 +- modules/github_integration/config/locales/crowdin/fa.yml | 2 +- modules/github_integration/config/locales/crowdin/fi.yml | 2 +- modules/github_integration/config/locales/crowdin/fil.yml | 2 +- modules/github_integration/config/locales/crowdin/fr.yml | 2 +- modules/github_integration/config/locales/crowdin/he.yml | 2 +- modules/github_integration/config/locales/crowdin/hi.yml | 2 +- modules/github_integration/config/locales/crowdin/hr.yml | 2 +- modules/github_integration/config/locales/crowdin/hu.yml | 2 +- modules/github_integration/config/locales/crowdin/id.yml | 2 +- modules/github_integration/config/locales/crowdin/it.yml | 2 +- modules/github_integration/config/locales/crowdin/ja.yml | 2 +- modules/github_integration/config/locales/crowdin/js-af.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ar.yml | 2 +- modules/github_integration/config/locales/crowdin/js-az.yml | 2 +- modules/github_integration/config/locales/crowdin/js-bg.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ca.yml | 2 +- modules/github_integration/config/locales/crowdin/js-cs.yml | 2 +- modules/github_integration/config/locales/crowdin/js-da.yml | 2 +- modules/github_integration/config/locales/crowdin/js-de.yml | 2 +- modules/github_integration/config/locales/crowdin/js-el.yml | 2 +- modules/github_integration/config/locales/crowdin/js-eo.yml | 2 +- modules/github_integration/config/locales/crowdin/js-es.yml | 2 +- modules/github_integration/config/locales/crowdin/js-et.yml | 2 +- modules/github_integration/config/locales/crowdin/js-fa.yml | 2 +- modules/github_integration/config/locales/crowdin/js-fi.yml | 2 +- modules/github_integration/config/locales/crowdin/js-fil.yml | 2 +- modules/github_integration/config/locales/crowdin/js-fr.yml | 2 +- modules/github_integration/config/locales/crowdin/js-he.yml | 2 +- modules/github_integration/config/locales/crowdin/js-hi.yml | 2 +- modules/github_integration/config/locales/crowdin/js-hr.yml | 2 +- modules/github_integration/config/locales/crowdin/js-hu.yml | 2 +- modules/github_integration/config/locales/crowdin/js-id.yml | 2 +- modules/github_integration/config/locales/crowdin/js-it.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ja.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ko.yml | 2 +- modules/github_integration/config/locales/crowdin/js-lol.yml | 2 +- modules/github_integration/config/locales/crowdin/js-lt.yml | 2 +- modules/github_integration/config/locales/crowdin/js-lv.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ne.yml | 2 +- modules/github_integration/config/locales/crowdin/js-nl.yml | 2 +- modules/github_integration/config/locales/crowdin/js-no.yml | 2 +- modules/github_integration/config/locales/crowdin/js-pl.yml | 2 +- modules/github_integration/config/locales/crowdin/js-pt.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ro.yml | 2 +- modules/github_integration/config/locales/crowdin/js-ru.yml | 2 +- modules/github_integration/config/locales/crowdin/js-rw.yml | 2 +- modules/github_integration/config/locales/crowdin/js-si.yml | 2 +- modules/github_integration/config/locales/crowdin/js-sk.yml | 2 +- modules/github_integration/config/locales/crowdin/js-sl.yml | 2 +- modules/github_integration/config/locales/crowdin/js-sv.yml | 2 +- modules/github_integration/config/locales/crowdin/js-th.yml | 2 +- modules/github_integration/config/locales/crowdin/js-tr.yml | 2 +- modules/github_integration/config/locales/crowdin/js-uk.yml | 2 +- modules/github_integration/config/locales/crowdin/js-vi.yml | 2 +- modules/github_integration/config/locales/crowdin/js-zh-CN.yml | 2 +- modules/github_integration/config/locales/crowdin/js-zh-TW.yml | 2 +- modules/github_integration/config/locales/crowdin/ko.yml | 2 +- modules/github_integration/config/locales/crowdin/lol.yml | 2 +- modules/github_integration/config/locales/crowdin/lt.yml | 2 +- modules/github_integration/config/locales/crowdin/lv.yml | 2 +- modules/github_integration/config/locales/crowdin/ne.yml | 2 +- modules/github_integration/config/locales/crowdin/nl.yml | 2 +- modules/github_integration/config/locales/crowdin/no.yml | 2 +- modules/github_integration/config/locales/crowdin/pl.yml | 2 +- modules/github_integration/config/locales/crowdin/pt.yml | 2 +- modules/github_integration/config/locales/crowdin/ro.yml | 2 +- modules/github_integration/config/locales/crowdin/ru.yml | 2 +- modules/github_integration/config/locales/crowdin/rw.yml | 2 +- modules/github_integration/config/locales/crowdin/si.yml | 2 +- modules/github_integration/config/locales/crowdin/sk.yml | 2 +- modules/github_integration/config/locales/crowdin/sl.yml | 2 +- modules/github_integration/config/locales/crowdin/sv.yml | 2 +- modules/github_integration/config/locales/crowdin/th.yml | 2 +- modules/github_integration/config/locales/crowdin/tr.yml | 2 +- modules/github_integration/config/locales/crowdin/uk.yml | 2 +- modules/github_integration/config/locales/crowdin/vi.yml | 2 +- modules/github_integration/config/locales/crowdin/zh-CN.yml | 2 +- modules/github_integration/config/locales/crowdin/zh-TW.yml | 2 +- modules/github_integration/config/locales/de.yml | 2 +- modules/github_integration/config/locales/en.yml | 2 +- modules/github_integration/config/locales/js-en.yml | 2 +- .../module/git-actions-menu/git-actions-menu.component.ts | 2 +- .../module/git-actions-menu/git-actions-menu.directive.ts | 2 +- .../frontend/module/git-actions/git-actions.service.spec.ts | 2 +- .../frontend/module/git-actions/git-actions.service.ts | 2 +- .../frontend/module/github-tab/github-tab.component.ts | 2 +- .../frontend/module/hal/resources/github-check-run-resource.ts | 2 +- .../module/hal/resources/github-pull-request-resource.ts | 2 +- .../frontend/module/hal/resources/github-user-resource.ts | 2 +- modules/github_integration/frontend/module/main.ts | 2 +- .../frontend/module/pull-request/pull-request.component.sass | 2 +- .../frontend/module/pull-request/pull-request.component.ts | 2 +- .../frontend/module/tab-header/styles/tab-header.sass | 2 +- .../frontend/module/tab-header/tab-header.component.ts | 2 +- .../frontend/module/tab-prs/tab-prs.component.ts | 2 +- .../frontend/module/tab-prs/wp-github-prs.service.ts | 2 +- .../api/v3/github_pull_requests/github_check_run_representer.rb | 2 +- .../github_pull_request_collection_representer.rb | 2 +- .../v3/github_pull_requests/github_pull_request_representer.rb | 2 +- .../github_pull_requests_by_work_package_api.rb | 2 +- .../lib/api/v3/github_pull_requests/github_user_representer.rb | 2 +- .../github_integration/lib/open_project/github_integration.rb | 2 +- .../lib/open_project/github_integration/engine.rb | 2 +- .../lib/open_project/github_integration/hook_handler.rb | 2 +- .../lib/open_project/github_integration/notification_handler.rb | 2 +- .../github_integration/notification_handler/check_run.rb | 2 +- .../github_integration/notification_handler/helper.rb | 2 +- .../github_integration/notification_handler/issue_comment.rb | 2 +- .../github_integration/notification_handler/pull_request.rb | 2 +- .../lib/open_project/github_integration/services.rb | 2 +- .../github_integration/services/upsert_check_run.rb | 2 +- .../github_integration/services/upsert_github_user.rb | 2 +- .../github_integration/services/upsert_partial_pull_request.rb | 2 +- .../github_integration/services/upsert_pull_request.rb | 2 +- .../github_integration/lib/openproject-github_integration.rb | 2 +- .../spec/factories/github_check_run_factory.rb | 2 +- .../spec/factories/github_pull_request_factory.rb | 2 +- .../github_integration/spec/factories/github_user_factory.rb | 2 +- .../spec/features/work_package_github_tab_spec.rb | 2 +- .../github_pull_requests/github_check_run_representer_spec.rb | 2 +- .../github_pull_request_representer_spec.rb | 2 +- .../api/v3/github_pull_requests/github_user_representer_spec.rb | 2 +- .../github_integration/hook_handler_integration_spec.rb | 2 +- .../lib/open_project/github_integration/hook_handler_spec.rb | 2 +- .../github_integration/notification_handler/check_run_spec.rb | 2 +- .../github_integration/notification_handler/helper_spec.rb | 2 +- .../notification_handler/issue_comment_spec.rb | 2 +- .../notification_handler/pull_request_spec.rb | 2 +- .../github_integration/notification_handler_spec.rb | 2 +- .../github_integration/services/upsert_check_run_spec.rb | 2 +- .../github_integration/services/upsert_github_user_spec.rb | 2 +- .../services/upsert_partial_pull_request_spec.rb | 2 +- .../github_integration/services/upsert_pull_request_spec.rb | 2 +- modules/github_integration/spec/models/github_check_run_spec.rb | 2 +- .../github_integration/spec/models/github_pull_request_spec.rb | 2 +- modules/github_integration/spec/models/github_user_spec.rb | 2 +- modules/github_integration/spec/spec_helper.rb | 2 +- .../spec/support/pages/work_package_github_tab.rb | 2 +- .../github_integration/spec/support/webhook_fixture_helpers.rb | 2 +- .../spec/workers/cron/clear_old_pull_requests_job_spec.rb | 2 +- modules/grids/app/contracts/grids/base_contract.rb | 2 +- modules/grids/app/contracts/grids/create_contract.rb | 2 +- modules/grids/app/contracts/grids/delete_contract.rb | 2 +- modules/grids/app/contracts/grids/update_contract.rb | 2 +- .../controllers/api/v3/attachments/attachments_by_grid_api.rb | 2 +- modules/grids/app/controllers/api/v3/grids/create_form_api.rb | 2 +- modules/grids/app/controllers/api/v3/grids/grids_api.rb | 2 +- .../app/controllers/api/v3/grids/schemas/grid_schema_api.rb | 2 +- modules/grids/app/controllers/api/v3/grids/update_form_api.rb | 2 +- modules/grids/app/models/grids/grid.rb | 2 +- modules/grids/app/models/grids/widget.rb | 2 +- modules/grids/app/queries/grids/filters/grid_filter.rb | 2 +- modules/grids/app/queries/grids/filters/page_filter.rb | 2 +- modules/grids/app/queries/grids/filters/scope_filter.rb | 2 +- modules/grids/app/queries/grids/query.rb | 2 +- .../app/representers/api/v3/grids/create_form_representer.rb | 2 +- modules/grids/app/representers/api/v3/grids/form_representer.rb | 2 +- .../representers/api/v3/grids/grid_collection_representer.rb | 2 +- .../app/representers/api/v3/grids/grid_payload_representer.rb | 2 +- modules/grids/app/representers/api/v3/grids/grid_representer.rb | 2 +- .../api/v3/grids/schemas/grid_schema_representer.rb | 2 +- .../app/representers/api/v3/grids/update_form_representer.rb | 2 +- .../api/v3/grids/widgets/chart_options_representer.rb | 2 +- .../api/v3/grids/widgets/custom_text_options_representer.rb | 2 +- .../api/v3/grids/widgets/default_options_representer.rb | 2 +- .../api/v3/grids/widgets/query_options_representer.rb | 2 +- .../v3/grids/widgets/time_entry_calendar_options_representer.rb | 2 +- .../app/representers/api/v3/grids/widgets/widget_representer.rb | 2 +- modules/grids/app/services/grids/create_service.rb | 2 +- modules/grids/app/services/grids/delete_service.rb | 2 +- modules/grids/app/services/grids/set_attributes_service.rb | 2 +- modules/grids/app/services/grids/update_service.rb | 2 +- modules/grids/lib/grids/configuration.rb | 2 +- modules/grids/lib/grids/configuration/registration.rb | 2 +- modules/grids/lib/grids/configuration/widget_strategy.rb | 2 +- modules/grids/lib/grids/factory.rb | 2 +- modules/grids/spec/contracts/grids/create_contract_spec.rb | 2 +- modules/grids/spec/contracts/grids/delete_contract_spec.rb | 2 +- modules/grids/spec/contracts/grids/shared_examples.rb | 2 +- modules/grids/spec/contracts/grids/update_contract_spec.rb | 2 +- .../lib/api/v3/grids/grid_payload_representer_parsing_spec.rb | 2 +- .../spec/lib/api/v3/grids/grid_representer_rendering_spec.rb | 2 +- .../lib/api/v3/grids/schemas/grid_schema_representer_spec.rb | 2 +- modules/grids/spec/lib/api/v3/utilities/file_helper_spec.rb | 2 +- modules/grids/spec/models/grids/grid_spec.rb | 2 +- modules/grids/spec/models/grids/shared_model.rb | 2 +- modules/grids/spec/models/grids/widget_spec.rb | 2 +- .../requests/api/v3/grids/grids_create_form_resource_spec.rb | 2 +- modules/grids/spec/requests/api/v3/grids/grids_resource_spec.rb | 2 +- .../spec/requests/api/v3/grids/grids_schema_resource_spec.rb | 2 +- .../requests/api/v3/grids/grids_update_form_resource_spec.rb | 2 +- modules/grids/spec/services/grids/create_service_spec.rb | 2 +- .../grids/spec/services/grids/set_attributes_service_spec.rb | 2 +- modules/grids/spec/services/grids/update_service_spec.rb | 2 +- modules/grids/spec/support/pages/grid.rb | 2 +- .../app/workers/job_status/application_job_with_status.rb | 2 +- .../app/workers/job_status/cron/clear_old_job_status_job.rb | 2 +- modules/job_status/lib/api/v3/job_status/job_status_api.rb | 2 +- .../job_status/lib/api/v3/job_status/job_status_representer.rb | 2 +- modules/job_status/lib/open_project/job_status.rb | 2 +- modules/job_status/lib/open_project/job_status/engine.rb | 2 +- .../job_status/lib/open_project/job_status/event_listener.rb | 2 +- modules/job_status/lib/openproject-job_status.rb | 2 +- modules/job_status/spec/factories/delayed_job_status_factory.rb | 2 +- modules/job_status/spec/features/job_status_spec.rb | 2 +- .../job_status/spec/services/documents/update_service_spec.rb | 2 +- .../ldap_groups/app/workers/ldap_groups/synchronization_job.rb | 2 +- modules/ldap_groups/lib/tasks/ldap_groups.rake | 2 +- modules/meeting/app/contracts/meeting_contents/base_contract.rb | 2 +- .../meeting/app/contracts/meeting_contents/update_contract.rb | 2 +- modules/meeting/app/controllers/meeting_agendas_controller.rb | 2 +- modules/meeting/app/controllers/meeting_contents_controller.rb | 2 +- modules/meeting/app/controllers/meeting_minutes_controller.rb | 2 +- modules/meeting/app/controllers/meetings_controller.rb | 2 +- modules/meeting/app/helpers/meeting_contents_helper.rb | 2 +- modules/meeting/app/helpers/meetings_helper.rb | 2 +- modules/meeting/app/mailers/meeting_mailer.rb | 2 +- .../meeting/app/models/activities/meeting_activity_provider.rb | 2 +- modules/meeting/app/models/journal/meeting_content_journal.rb | 2 +- modules/meeting/app/models/journal/meeting_journal.rb | 2 +- modules/meeting/app/models/meeting.rb | 2 +- modules/meeting/app/models/meeting_agenda.rb | 2 +- modules/meeting/app/models/meeting_content.rb | 2 +- modules/meeting/app/models/meeting_minutes.rb | 2 +- modules/meeting/app/models/meeting_participant.rb | 2 +- .../app/services/meeting_contents/set_attributes_service.rb | 2 +- modules/meeting/app/services/meeting_contents/update_service.rb | 2 +- modules/meeting/app/views/meeting_contents/_form.html.erb | 2 +- modules/meeting/app/views/meeting_contents/_show.html.erb | 2 +- modules/meeting/app/views/meeting_contents/diff.html.erb | 2 +- modules/meeting/app/views/meeting_contents/history.html.erb | 2 +- modules/meeting/app/views/meeting_contents/show.html.erb | 2 +- .../app/views/meeting_mailer/content_for_review.html.erb | 2 +- .../app/views/meeting_mailer/content_for_review.text.erb | 2 +- modules/meeting/app/views/meetings/_form.html.erb | 2 +- modules/meeting/app/views/meetings/edit.html.erb | 2 +- modules/meeting/app/views/meetings/index.html.erb | 2 +- modules/meeting/app/views/meetings/new.html.erb | 2 +- modules/meeting/app/views/meetings/show.html.erb | 2 +- modules/meeting/config/locales/crowdin/af.yml | 2 +- modules/meeting/config/locales/crowdin/ar.yml | 2 +- modules/meeting/config/locales/crowdin/az.yml | 2 +- modules/meeting/config/locales/crowdin/bg.yml | 2 +- modules/meeting/config/locales/crowdin/ca.yml | 2 +- modules/meeting/config/locales/crowdin/cs.yml | 2 +- modules/meeting/config/locales/crowdin/da.yml | 2 +- modules/meeting/config/locales/crowdin/de.yml | 2 +- modules/meeting/config/locales/crowdin/el.yml | 2 +- modules/meeting/config/locales/crowdin/eo.yml | 2 +- modules/meeting/config/locales/crowdin/es.yml | 2 +- modules/meeting/config/locales/crowdin/et.yml | 2 +- modules/meeting/config/locales/crowdin/fa.yml | 2 +- modules/meeting/config/locales/crowdin/fi.yml | 2 +- modules/meeting/config/locales/crowdin/fil.yml | 2 +- modules/meeting/config/locales/crowdin/fr.yml | 2 +- modules/meeting/config/locales/crowdin/he.yml | 2 +- modules/meeting/config/locales/crowdin/hi.yml | 2 +- modules/meeting/config/locales/crowdin/hr.yml | 2 +- modules/meeting/config/locales/crowdin/hu.yml | 2 +- modules/meeting/config/locales/crowdin/id.yml | 2 +- modules/meeting/config/locales/crowdin/it.yml | 2 +- modules/meeting/config/locales/crowdin/ja.yml | 2 +- modules/meeting/config/locales/crowdin/ko.yml | 2 +- modules/meeting/config/locales/crowdin/lol.yml | 2 +- modules/meeting/config/locales/crowdin/lt.yml | 2 +- modules/meeting/config/locales/crowdin/lv.yml | 2 +- modules/meeting/config/locales/crowdin/ne.yml | 2 +- modules/meeting/config/locales/crowdin/nl.yml | 2 +- modules/meeting/config/locales/crowdin/no.yml | 2 +- modules/meeting/config/locales/crowdin/pl.yml | 2 +- modules/meeting/config/locales/crowdin/pt.yml | 2 +- modules/meeting/config/locales/crowdin/ro.yml | 2 +- modules/meeting/config/locales/crowdin/ru.yml | 2 +- modules/meeting/config/locales/crowdin/rw.yml | 2 +- modules/meeting/config/locales/crowdin/si.yml | 2 +- modules/meeting/config/locales/crowdin/sk.yml | 2 +- modules/meeting/config/locales/crowdin/sl.yml | 2 +- modules/meeting/config/locales/crowdin/sv.yml | 2 +- modules/meeting/config/locales/crowdin/th.yml | 2 +- modules/meeting/config/locales/crowdin/tr.yml | 2 +- modules/meeting/config/locales/crowdin/uk.yml | 2 +- modules/meeting/config/locales/crowdin/vi.yml | 2 +- modules/meeting/config/locales/crowdin/zh-CN.yml | 2 +- modules/meeting/config/locales/crowdin/zh-TW.yml | 2 +- modules/meeting/config/locales/en.yml | 2 +- modules/meeting/config/routes.rb | 2 +- .../20180323135408_to_v710_aggregated_meeting_migrations.rb | 2 +- .../api/v3/attachments/attachments_by_meeting_content_api.rb | 2 +- .../lib/api/v3/meeting_agendas/meeting_agenda_representer.rb | 2 +- .../lib/api/v3/meeting_contents/meeting_content_representer.rb | 2 +- .../lib/api/v3/meeting_minutes/meeting_minutes_representer.rb | 2 +- modules/meeting/lib/api/v3/meetings/meeting_contents_api.rb | 2 +- modules/meeting/lib/open_project/meeting.rb | 2 +- modules/meeting/lib/open_project/meeting/engine.rb | 2 +- .../meeting/lib/open_project/meeting/patches/project_patch.rb | 2 +- .../lib/open_project/meeting/patches/role_seeder_patch.rb | 2 +- .../lib/open_project/meeting/patches/setting_seeder_patch.rb | 2 +- .../lib/open_project/meeting/patches/textile_converter_patch.rb | 2 +- modules/meeting/lib/openproject-meeting.rb | 2 +- .../spec/contracts/meeting_contents/update_contract_spec.rb | 2 +- .../spec/controllers/meeting_contents_controller_spec.rb | 2 +- modules/meeting/spec/controllers/meetings_controller_spec.rb | 2 +- modules/meeting/spec/factories/meeting_agenda_factory.rb | 2 +- .../meeting/spec/factories/meeting_content_journal_factory.rb | 2 +- modules/meeting/spec/factories/meeting_factory.rb | 2 +- modules/meeting/spec/factories/meeting_journal_factory.rb | 2 +- modules/meeting/spec/factories/meeting_minutes_factory.rb | 2 +- modules/meeting/spec/factories/meeting_participant_factory.rb | 2 +- modules/meeting/spec/features/meetings_activity_spec.rb | 2 +- modules/meeting/spec/features/meetings_close_spec.rb | 2 +- modules/meeting/spec/features/meetings_copy_spec.rb | 2 +- modules/meeting/spec/features/meetings_delete_spec.rb | 2 +- modules/meeting/spec/features/meetings_index_spec.rb | 2 +- modules/meeting/spec/features/meetings_locking_spec.rb | 2 +- modules/meeting/spec/features/meetings_new_spec.rb | 2 +- modules/meeting/spec/features/meetings_participants_spec.rb | 2 +- modules/meeting/spec/features/meetings_search_spec.rb | 2 +- modules/meeting/spec/features/meetings_show_spec.rb | 2 +- .../meeting/spec/lib/open_project/markdown_formatting_spec.rb | 2 +- .../meeting/spec/lib/open_project/meeting/default_data_spec.rb | 2 +- modules/meeting/spec/mailers/meeting_mailer_spec.rb | 2 +- modules/meeting/spec/models/meeting_agenda_spec.rb | 2 +- modules/meeting/spec/models/meeting_minutes_spec.rb | 2 +- modules/meeting/spec/models/meeting_spec.rb | 2 +- modules/meeting/spec/models/permitted_params_spec.rb | 2 +- modules/meeting/spec/models/project/activity_spec.rb | 2 +- .../spec/requests/api/v3/attachments/meeting_agenda_spec.rb | 2 +- .../spec/requests/api/v3/attachments/meeting_minutes_spec.rb | 2 +- modules/meeting/spec/routing/previews_routing_spec.rb | 2 +- .../spec/services/meeting_contents/update_service_spec.rb | 2 +- modules/meeting/spec/spec_helper.rb | 2 +- modules/meeting/spec/support/pages/meetings/base.rb | 2 +- modules/meeting/spec/support/pages/meetings/edit.rb | 2 +- modules/meeting/spec/support/pages/meetings/index.rb | 2 +- modules/meeting/spec/support/pages/meetings/new.rb | 2 +- modules/meeting/spec/support/pages/meetings/show.rb | 2 +- modules/my_page/app/models/grids/my_page.rb | 2 +- modules/my_page/config/routes.rb | 2 +- modules/my_page/spec/contracts/grids/create_contract_spec.rb | 2 +- modules/my_page/spec/contracts/grids/shared_examples.rb | 2 +- modules/my_page/spec/contracts/grids/update_contract_spec.rb | 2 +- modules/my_page/spec/features/my/accountable_spec.rb | 2 +- modules/my_page/spec/features/my/assigned_to_me_spec.rb | 2 +- modules/my_page/spec/features/my/custom_text_spec.rb | 2 +- modules/my_page/spec/features/my/documents_spec.rb | 2 +- modules/my_page/spec/features/my/my_page_spec.rb | 2 +- modules/my_page/spec/features/my/news_spec.rb | 2 +- .../my_page/spec/features/my/time_entries_current_user_spec.rb | 2 +- modules/my_page/spec/features/my/work_package_table_spec.rb | 2 +- modules/my_page/spec/models/grids/my_page_spec.rb | 2 +- modules/my_page/spec/models/grids/shared_model.rb | 2 +- modules/my_page/spec/queries/grids/filters/scope_filter_spec.rb | 2 +- modules/my_page/spec/queries/grids/query_integration_spec.rb | 2 +- .../requests/api/v3/grids/grids_create_form_resource_spec.rb | 2 +- .../my_page/spec/requests/api/v3/grids/grids_resource_spec.rb | 2 +- .../requests/api/v3/grids/grids_update_form_resource_spec.rb | 2 +- modules/my_page/spec/support/pages/my/page.rb | 2 +- .../spec/controllers/providers_controller_spec.rb | 2 +- modules/openid_connect/spec/requests/openid_connect_spec.rb | 2 +- .../spec/routing/openid_connect/providers_controller_spec.rb | 2 +- modules/overviews/app/models/grids/overview.rb | 2 +- .../app/services/overviews/copy/widgets_dependent_service.rb | 2 +- modules/overviews/app/services/overviews/copy_service.rb | 2 +- modules/overviews/config/locales/en.seeders.bim.yml | 2 +- modules/overviews/config/locales/en.seeders.standard.yml | 2 +- modules/overviews/spec/contracts/grids/create_contract_spec.rb | 2 +- .../spec/controllers/overviews/overviews_controller_spec.rb | 2 +- .../spec/features/low_permissions_page_creation_spec.rb | 2 +- modules/overviews/spec/features/managing_overview_page_spec.rb | 2 +- modules/overviews/spec/features/navigation_spec.rb | 2 +- .../overviews/spec/requests/api/v3/grids/grids_resource_spec.rb | 2 +- .../overviews/spec/services/copy_service_integration_spec.rb | 2 +- modules/overviews/spec/support/pages/overview.rb | 2 +- .../app/controllers/export_card_configurations_controller.rb | 2 +- modules/pdf_export/app/models/export_card_configuration.rb | 2 +- .../app/views/export_card_configurations/_form.html.erb | 2 +- .../app/views/export_card_configurations/edit.html.erb | 2 +- .../app/views/export_card_configurations/index.html.erb | 2 +- .../app/views/export_card_configurations/new.html.erb | 2 +- modules/pdf_export/config/locales/crowdin/af.yml | 2 +- modules/pdf_export/config/locales/crowdin/ar.yml | 2 +- modules/pdf_export/config/locales/crowdin/az.yml | 2 +- modules/pdf_export/config/locales/crowdin/bg.yml | 2 +- modules/pdf_export/config/locales/crowdin/ca.yml | 2 +- modules/pdf_export/config/locales/crowdin/cs.yml | 2 +- modules/pdf_export/config/locales/crowdin/da.yml | 2 +- modules/pdf_export/config/locales/crowdin/de.yml | 2 +- modules/pdf_export/config/locales/crowdin/el.yml | 2 +- modules/pdf_export/config/locales/crowdin/eo.yml | 2 +- modules/pdf_export/config/locales/crowdin/es.yml | 2 +- modules/pdf_export/config/locales/crowdin/et.yml | 2 +- modules/pdf_export/config/locales/crowdin/fa.yml | 2 +- modules/pdf_export/config/locales/crowdin/fi.yml | 2 +- modules/pdf_export/config/locales/crowdin/fil.yml | 2 +- modules/pdf_export/config/locales/crowdin/fr.yml | 2 +- modules/pdf_export/config/locales/crowdin/he.yml | 2 +- modules/pdf_export/config/locales/crowdin/hi.yml | 2 +- modules/pdf_export/config/locales/crowdin/hr.yml | 2 +- modules/pdf_export/config/locales/crowdin/hu.yml | 2 +- modules/pdf_export/config/locales/crowdin/id.yml | 2 +- modules/pdf_export/config/locales/crowdin/it.yml | 2 +- modules/pdf_export/config/locales/crowdin/ja.yml | 2 +- modules/pdf_export/config/locales/crowdin/ko.yml | 2 +- modules/pdf_export/config/locales/crowdin/lol.yml | 2 +- modules/pdf_export/config/locales/crowdin/lt.yml | 2 +- modules/pdf_export/config/locales/crowdin/lv.yml | 2 +- modules/pdf_export/config/locales/crowdin/ne.yml | 2 +- modules/pdf_export/config/locales/crowdin/nl.yml | 2 +- modules/pdf_export/config/locales/crowdin/no.yml | 2 +- modules/pdf_export/config/locales/crowdin/pl.yml | 2 +- modules/pdf_export/config/locales/crowdin/pt.yml | 2 +- modules/pdf_export/config/locales/crowdin/ro.yml | 2 +- modules/pdf_export/config/locales/crowdin/ru.yml | 2 +- modules/pdf_export/config/locales/crowdin/rw.yml | 2 +- modules/pdf_export/config/locales/crowdin/si.yml | 2 +- modules/pdf_export/config/locales/crowdin/sk.yml | 2 +- modules/pdf_export/config/locales/crowdin/sl.yml | 2 +- modules/pdf_export/config/locales/crowdin/sv.yml | 2 +- modules/pdf_export/config/locales/crowdin/th.yml | 2 +- modules/pdf_export/config/locales/crowdin/tr.yml | 2 +- modules/pdf_export/config/locales/crowdin/uk.yml | 2 +- modules/pdf_export/config/locales/crowdin/vi.yml | 2 +- modules/pdf_export/config/locales/crowdin/zh-CN.yml | 2 +- modules/pdf_export/config/locales/crowdin/zh-TW.yml | 2 +- modules/pdf_export/config/locales/en.yml | 2 +- modules/pdf_export/config/routes.rb | 2 +- .../migrate/20140113132617_create_export_card_configuration.rb | 2 +- .../20140129103924_add_active_to_export_card_configurations.rb | 2 +- ...40207134248_add_description_to_export_card_configurations.rb | 2 +- modules/pdf_export/db/seeds/export_card_configurations.rb | 2 +- modules/pdf_export/lib/open_project/pdf_export.rb | 2 +- modules/pdf_export/lib/open_project/pdf_export/engine.rb | 2 +- modules/pdf_export/lib/open_project/pdf_export/exceptions.rb | 2 +- .../lib/open_project/pdf_export/export_card/card_element.rb | 2 +- .../lib/open_project/pdf_export/export_card/column_element.rb | 2 +- .../open_project/pdf_export/export_card/document_generator.rb | 2 +- .../lib/open_project/pdf_export/export_card/group_element.rb | 2 +- .../lib/open_project/pdf_export/export_card/row_element.rb | 2 +- modules/pdf_export/lib/openproject-pdf_export.rb | 2 +- .../controllers/export_card_configurations_controller_spec.rb | 2 +- modules/pdf_export/spec/export_card/document_generator_spec.rb | 2 +- .../spec/factories/export_card_configuration_factory.rb | 2 +- .../spec/features/export_card_configurations_admin_spec.rb | 2 +- modules/pdf_export/spec/spec_helper.rb | 2 +- modules/pdf_export/spec/views/edit.html.erb_spec.rb | 2 +- modules/pdf_export/spec/views/index.html.erb_spec.rb | 2 +- modules/pdf_export/spec/views/new.html.erb_spec.rb | 2 +- modules/reporting/app/controllers/cost_reports_controller.rb | 2 +- .../app/controllers/work_package_costlog_controller.rb | 2 +- modules/reporting/app/helpers/reporting_helper.rb | 2 +- modules/reporting/app/models/cost_query.rb | 2 +- modules/reporting/app/models/cost_query/cache.rb | 2 +- modules/reporting/app/models/cost_query/custom_field_mixin.rb | 2 +- modules/reporting/app/models/cost_query/filter.rb | 2 +- modules/reporting/app/models/cost_query/filter/activity_id.rb | 2 +- .../reporting/app/models/cost_query/filter/assigned_to_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/author_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/budget_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/category_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/cost_type_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/created_on.rb | 2 +- .../app/models/cost_query/filter/custom_field_entries.rb | 2 +- modules/reporting/app/models/cost_query/filter/due_date.rb | 2 +- modules/reporting/app/models/cost_query/filter/no_filter.rb | 2 +- .../reporting/app/models/cost_query/filter/overridden_costs.rb | 2 +- .../reporting/app/models/cost_query/filter/permission_filter.rb | 2 +- modules/reporting/app/models/cost_query/filter/priority_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/project_id.rb | 2 +- .../reporting/app/models/cost_query/filter/responsible_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/spent_on.rb | 2 +- modules/reporting/app/models/cost_query/filter/start_date.rb | 2 +- modules/reporting/app/models/cost_query/filter/status_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/subject.rb | 2 +- modules/reporting/app/models/cost_query/filter/tmonth.rb | 2 +- modules/reporting/app/models/cost_query/filter/tweek.rb | 2 +- modules/reporting/app/models/cost_query/filter/tyear.rb | 2 +- modules/reporting/app/models/cost_query/filter/type_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/updated_on.rb | 2 +- modules/reporting/app/models/cost_query/filter/user_id.rb | 2 +- modules/reporting/app/models/cost_query/filter/version_id.rb | 2 +- .../reporting/app/models/cost_query/filter/work_package_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by.rb | 2 +- modules/reporting/app/models/cost_query/group_by/activity_id.rb | 2 +- .../reporting/app/models/cost_query/group_by/assigned_to_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/author_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/base.rb | 2 +- modules/reporting/app/models/cost_query/group_by/budget_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/category_id.rb | 2 +- .../reporting/app/models/cost_query/group_by/cost_type_id.rb | 2 +- .../app/models/cost_query/group_by/custom_field_entries.rb | 2 +- modules/reporting/app/models/cost_query/group_by/priority_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/project_id.rb | 2 +- .../app/models/cost_query/group_by/ruby_aggregation.rb | 2 +- .../reporting/app/models/cost_query/group_by/singleton_value.rb | 2 +- modules/reporting/app/models/cost_query/group_by/spent_on.rb | 2 +- .../reporting/app/models/cost_query/group_by/sql_aggregation.rb | 2 +- modules/reporting/app/models/cost_query/group_by/status_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/tmonth.rb | 2 +- modules/reporting/app/models/cost_query/group_by/tweek.rb | 2 +- modules/reporting/app/models/cost_query/group_by/tyear.rb | 2 +- modules/reporting/app/models/cost_query/group_by/type_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/user_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/version_id.rb | 2 +- modules/reporting/app/models/cost_query/group_by/week.rb | 2 +- .../reporting/app/models/cost_query/group_by/work_package_id.rb | 2 +- modules/reporting/app/models/cost_query/operator.rb | 2 +- modules/reporting/app/models/cost_query/result.rb | 2 +- modules/reporting/app/models/cost_query/sql_statement.rb | 2 +- modules/reporting/app/models/cost_query/table.rb | 2 +- modules/reporting/app/models/entry.rb | 2 +- modules/reporting/app/views/cost_reports/_report_list.html.erb | 2 +- modules/reporting/app/views/cost_reports/_report_menu.html.erb | 2 +- modules/reporting/app/views/cost_reports/index.html.erb | 2 +- modules/reporting/config/locales/crowdin/af.yml | 2 +- modules/reporting/config/locales/crowdin/ar.yml | 2 +- modules/reporting/config/locales/crowdin/az.yml | 2 +- modules/reporting/config/locales/crowdin/bg.yml | 2 +- modules/reporting/config/locales/crowdin/ca.yml | 2 +- modules/reporting/config/locales/crowdin/cs.yml | 2 +- modules/reporting/config/locales/crowdin/da.yml | 2 +- modules/reporting/config/locales/crowdin/de.yml | 2 +- modules/reporting/config/locales/crowdin/el.yml | 2 +- modules/reporting/config/locales/crowdin/eo.yml | 2 +- modules/reporting/config/locales/crowdin/es.yml | 2 +- modules/reporting/config/locales/crowdin/et.yml | 2 +- modules/reporting/config/locales/crowdin/fa.yml | 2 +- modules/reporting/config/locales/crowdin/fi.yml | 2 +- modules/reporting/config/locales/crowdin/fil.yml | 2 +- modules/reporting/config/locales/crowdin/fr.yml | 2 +- modules/reporting/config/locales/crowdin/he.yml | 2 +- modules/reporting/config/locales/crowdin/hi.yml | 2 +- modules/reporting/config/locales/crowdin/hr.yml | 2 +- modules/reporting/config/locales/crowdin/hu.yml | 2 +- modules/reporting/config/locales/crowdin/id.yml | 2 +- modules/reporting/config/locales/crowdin/it.yml | 2 +- modules/reporting/config/locales/crowdin/ja.yml | 2 +- modules/reporting/config/locales/crowdin/js-af.yml | 2 +- modules/reporting/config/locales/crowdin/js-ar.yml | 2 +- modules/reporting/config/locales/crowdin/js-az.yml | 2 +- modules/reporting/config/locales/crowdin/js-bg.yml | 2 +- modules/reporting/config/locales/crowdin/js-ca.yml | 2 +- modules/reporting/config/locales/crowdin/js-cs.yml | 2 +- modules/reporting/config/locales/crowdin/js-da.yml | 2 +- modules/reporting/config/locales/crowdin/js-de.yml | 2 +- modules/reporting/config/locales/crowdin/js-el.yml | 2 +- modules/reporting/config/locales/crowdin/js-eo.yml | 2 +- modules/reporting/config/locales/crowdin/js-es.yml | 2 +- modules/reporting/config/locales/crowdin/js-et.yml | 2 +- modules/reporting/config/locales/crowdin/js-fa.yml | 2 +- modules/reporting/config/locales/crowdin/js-fi.yml | 2 +- modules/reporting/config/locales/crowdin/js-fil.yml | 2 +- modules/reporting/config/locales/crowdin/js-fr.yml | 2 +- modules/reporting/config/locales/crowdin/js-he.yml | 2 +- modules/reporting/config/locales/crowdin/js-hi.yml | 2 +- modules/reporting/config/locales/crowdin/js-hr.yml | 2 +- modules/reporting/config/locales/crowdin/js-hu.yml | 2 +- modules/reporting/config/locales/crowdin/js-id.yml | 2 +- modules/reporting/config/locales/crowdin/js-it.yml | 2 +- modules/reporting/config/locales/crowdin/js-ja.yml | 2 +- modules/reporting/config/locales/crowdin/js-ko.yml | 2 +- modules/reporting/config/locales/crowdin/js-lol.yml | 2 +- modules/reporting/config/locales/crowdin/js-lt.yml | 2 +- modules/reporting/config/locales/crowdin/js-lv.yml | 2 +- modules/reporting/config/locales/crowdin/js-ne.yml | 2 +- modules/reporting/config/locales/crowdin/js-nl.yml | 2 +- modules/reporting/config/locales/crowdin/js-no.yml | 2 +- modules/reporting/config/locales/crowdin/js-pl.yml | 2 +- modules/reporting/config/locales/crowdin/js-pt.yml | 2 +- modules/reporting/config/locales/crowdin/js-ro.yml | 2 +- modules/reporting/config/locales/crowdin/js-ru.yml | 2 +- modules/reporting/config/locales/crowdin/js-rw.yml | 2 +- modules/reporting/config/locales/crowdin/js-si.yml | 2 +- modules/reporting/config/locales/crowdin/js-sk.yml | 2 +- modules/reporting/config/locales/crowdin/js-sl.yml | 2 +- modules/reporting/config/locales/crowdin/js-sv.yml | 2 +- modules/reporting/config/locales/crowdin/js-th.yml | 2 +- modules/reporting/config/locales/crowdin/js-tr.yml | 2 +- modules/reporting/config/locales/crowdin/js-uk.yml | 2 +- modules/reporting/config/locales/crowdin/js-vi.yml | 2 +- modules/reporting/config/locales/crowdin/js-zh-CN.yml | 2 +- modules/reporting/config/locales/crowdin/js-zh-TW.yml | 2 +- modules/reporting/config/locales/crowdin/ko.yml | 2 +- modules/reporting/config/locales/crowdin/lol.yml | 2 +- modules/reporting/config/locales/crowdin/lt.yml | 2 +- modules/reporting/config/locales/crowdin/lv.yml | 2 +- modules/reporting/config/locales/crowdin/ne.yml | 2 +- modules/reporting/config/locales/crowdin/nl.yml | 2 +- modules/reporting/config/locales/crowdin/no.yml | 2 +- modules/reporting/config/locales/crowdin/pl.yml | 2 +- modules/reporting/config/locales/crowdin/pt.yml | 2 +- modules/reporting/config/locales/crowdin/ro.yml | 2 +- modules/reporting/config/locales/crowdin/ru.yml | 2 +- modules/reporting/config/locales/crowdin/rw.yml | 2 +- modules/reporting/config/locales/crowdin/si.yml | 2 +- modules/reporting/config/locales/crowdin/sk.yml | 2 +- modules/reporting/config/locales/crowdin/sl.yml | 2 +- modules/reporting/config/locales/crowdin/sv.yml | 2 +- modules/reporting/config/locales/crowdin/th.yml | 2 +- modules/reporting/config/locales/crowdin/tr.yml | 2 +- modules/reporting/config/locales/crowdin/uk.yml | 2 +- modules/reporting/config/locales/crowdin/vi.yml | 2 +- modules/reporting/config/locales/crowdin/zh-CN.yml | 2 +- modules/reporting/config/locales/crowdin/zh-TW.yml | 2 +- modules/reporting/config/locales/en.yml | 2 +- modules/reporting/config/locales/js-en.yml | 2 +- modules/reporting/config/routes.rb | 2 +- .../20180323130704_to_v710_aggregated_reporting_migrations.rb | 2 +- modules/reporting/lib/engine.rb | 2 +- modules/reporting/lib/open_project/reporting.rb | 2 +- modules/reporting/lib/open_project/reporting/engine.rb | 2 +- modules/reporting/lib/open_project/reporting/hooks.rb | 2 +- modules/reporting/lib/open_project/reporting/patches.rb | 2 +- .../lib/open_project/reporting/patches/big_decimal_patch.rb | 2 +- .../reporting/patches/custom_fields_controller_patch.rb | 2 +- .../reporting/patches/open_project/configuration_patch.rb | 2 +- .../lib/open_project/reporting/patches/role_seeder_patch.rb | 2 +- .../lib/open_project/reporting/patches/setting_seeder_patch.rb | 2 +- .../lib/open_project/reporting/patches/to_date_patch.rb | 2 +- modules/reporting/lib/openproject-reporting.rb | 2 +- modules/reporting/lib/report/chainable.rb | 2 +- modules/reporting/lib/report/filter.rb | 2 +- modules/reporting/lib/report/filter/base.rb | 2 +- modules/reporting/lib/report/filter/multi_choice.rb | 2 +- modules/reporting/lib/report/filter/no_filter.rb | 2 +- modules/reporting/lib/report/group_by.rb | 2 +- modules/reporting/lib/report/group_by/base.rb | 2 +- modules/reporting/lib/report/group_by/ruby_aggregation.rb | 2 +- modules/reporting/lib/report/group_by/singleton_value.rb | 2 +- modules/reporting/lib/report/group_by/sql_aggregation.rb | 2 +- modules/reporting/lib/report/inherited_attribute.rb | 2 +- modules/reporting/lib/report/operator.rb | 2 +- modules/reporting/lib/report/query_utils.rb | 2 +- modules/reporting/lib/report/result.rb | 2 +- modules/reporting/lib/report/sql_statement.rb | 2 +- modules/reporting/lib/report/table.rb | 2 +- modules/reporting/lib/report/transformer.rb | 2 +- modules/reporting/lib/report/validation.rb | 2 +- modules/reporting/lib/report/validation/dates.rb | 2 +- modules/reporting/lib/report/validation/integers.rb | 2 +- modules/reporting/lib/report/walker.rb | 2 +- modules/reporting/lib/widget/base.rb | 2 +- modules/reporting/lib/widget/controls.rb | 2 +- modules/reporting/lib/widget/controls/apply.rb | 2 +- modules/reporting/lib/widget/controls/clear.rb | 2 +- modules/reporting/lib/widget/controls/delete.rb | 2 +- modules/reporting/lib/widget/controls/query_name.rb | 2 +- modules/reporting/lib/widget/controls/save.rb | 2 +- modules/reporting/lib/widget/controls/save_as.rb | 2 +- modules/reporting/lib/widget/cost_types.rb | 2 +- modules/reporting/lib/widget/filters.rb | 2 +- modules/reporting/lib/widget/filters/base.rb | 2 +- modules/reporting/lib/widget/filters/date.rb | 2 +- modules/reporting/lib/widget/filters/heavy.rb | 2 +- modules/reporting/lib/widget/filters/label.rb | 2 +- modules/reporting/lib/widget/filters/multi_choice.rb | 2 +- modules/reporting/lib/widget/filters/multi_values.rb | 2 +- modules/reporting/lib/widget/filters/operators.rb | 2 +- modules/reporting/lib/widget/filters/option.rb | 2 +- modules/reporting/lib/widget/filters/remove_button.rb | 2 +- modules/reporting/lib/widget/filters/text_box.rb | 2 +- modules/reporting/lib/widget/group_bys.rb | 2 +- modules/reporting/lib/widget/reporting_widget.rb | 2 +- modules/reporting/lib/widget/settings.rb | 2 +- modules/reporting/lib/widget/settings/fieldset.rb | 2 +- modules/reporting/lib/widget/settings_patch.rb | 2 +- modules/reporting/lib/widget/table.rb | 2 +- modules/reporting/lib/widget/table/entry_table.rb | 2 +- modules/reporting/lib/widget/table/report_table.rb | 2 +- .../reporting/spec/controllers/cost_reports_controller_spec.rb | 2 +- .../reporting/spec/controllers/custom_fields_controller_spec.rb | 2 +- modules/reporting/spec/factories/cost_query_factory.rb | 2 +- modules/reporting/spec/features/custom_fields_spec.rb | 2 +- modules/reporting/spec/features/menu_spec.rb | 2 +- .../spec/features/support/components/cost_reports_base_table.rb | 2 +- modules/reporting/spec/features/top_menu_item_spec.rb | 2 +- modules/reporting/spec/features/update_cost_report_spec.rb | 2 +- modules/reporting/spec/features/update_entries_spec.rb | 2 +- modules/reporting/spec/helpers/reporting_helper_spec.rb | 2 +- modules/reporting/spec/lib/open_project/configuration_spec.rb | 2 +- .../spec/lib/open_project/reporting/default_data_spec.rb | 2 +- modules/reporting/spec/models/cost_query/cache_spec.rb | 2 +- modules/reporting/spec/models/cost_query/chaining_spec.rb | 2 +- modules/reporting/spec/models/cost_query/filter_spec.rb | 2 +- modules/reporting/spec/models/cost_query/group_by_spec.rb | 2 +- modules/reporting/spec/models/cost_query/integration_spec.rb | 2 +- modules/reporting/spec/models/cost_query/operator_spec.rb | 2 +- modules/reporting/spec/models/cost_query/result_spec.rb | 2 +- modules/reporting/spec/models/cost_query/validation_spec.rb | 2 +- modules/reporting/spec/models/cost_query/walker_spec.rb | 2 +- modules/reporting/spec/requests/custom_field_cache_spec.rb | 2 +- modules/reporting/spec/spec_helper.rb | 2 +- modules/reporting/spec/support/configuration_helper.rb | 2 +- modules/reporting/spec/support/custom_field_filter.rb | 2 +- modules/reporting/spec/support/plugin_spec_helper.rb | 2 +- modules/reporting/spec/support/query_helper.rb | 2 +- modules/team_planner/lib/open_project/team_planner.rb | 2 +- .../spec/contracts/views/create_contract_team_planner_spec.rb | 2 +- modules/team_planner/spec/features/query_handling_spec.rb | 2 +- modules/team_planner/spec/features/shared_context.rb | 2 +- .../features/team_planner_add_existing_work_packages_spec.rb | 2 +- modules/team_planner/spec/features/team_planner_create_spec.rb | 2 +- .../spec/features/team_planner_error_handling_spec.rb | 2 +- modules/team_planner/spec/features/team_planner_index_spec.rb | 2 +- modules/team_planner/spec/features/team_planner_menu_spec.rb | 2 +- .../spec/features/team_planner_project_include_spec.rb | 2 +- .../spec/features/team_planner_remove_event_spec.rb | 2 +- modules/team_planner/spec/features/team_planner_spec.rb | 2 +- .../team_planner/spec/features/team_planner_split_view_spec.rb | 2 +- modules/team_planner/spec/features/team_planner_upsale_spec.rb | 2 +- .../spec/features/team_planner_user_interaction_spec.rb | 2 +- .../team_planner/spec/features/team_planner_view_modes_spec.rb | 2 +- modules/team_planner/spec/permissions/view_team_planner_spec.rb | 2 +- modules/team_planner/spec/routing/team_planner_routing_spec.rb | 2 +- .../team_planner/spec/support/components/add_existing_pane.rb | 2 +- modules/team_planner/spec/support/pages/team_planner.rb | 2 +- .../two_factor_authentication/my/two_factor_devices_spec.rb | 2 +- .../two_factor_authentication/users/two_factor_devices_spec.rb | 2 +- .../app/controllers/webhooks/incoming/hooks_controller.rb | 2 +- modules/webhooks/app/workers/attachment_webhook_job.rb | 2 +- modules/webhooks/app/workers/project_webhook_job.rb | 2 +- modules/webhooks/app/workers/represented_webhook_job.rb | 2 +- modules/webhooks/app/workers/time_entry_webhook_job.rb | 2 +- modules/webhooks/app/workers/webhook_job.rb | 2 +- modules/webhooks/app/workers/work_package_webhook_job.rb | 2 +- modules/webhooks/config/routes.rb | 2 +- modules/webhooks/lib/open_project/webhooks.rb | 2 +- modules/webhooks/lib/open_project/webhooks/engine.rb | 2 +- modules/webhooks/lib/open_project/webhooks/hook.rb | 2 +- modules/webhooks/lib/openproject-webhooks.rb | 2 +- .../webhooks/spec/controllers/outgoing/admin_controller_spec.rb | 2 +- modules/webhooks/spec/controllers/webhooks_controller_spec.rb | 2 +- modules/webhooks/spec/factories/webhook_factory.rb | 2 +- modules/webhooks/spec/factories/webhook_log_factory.rb | 2 +- modules/webhooks/spec/lib/hook_spec.rb | 2 +- modules/webhooks/spec/lib/webhooks_spec.rb | 2 +- .../spec/routing/webhooks/outgoing/admin_controller_spec.rb | 2 +- modules/webhooks/spec/spec_helper.rb | 2 +- modules/webhooks/spec/workers/attachment_webhook_job_spec.rb | 2 +- modules/webhooks/spec/workers/project_webhook_job_spec.rb | 2 +- modules/webhooks/spec/workers/time_entry_webhook_job_spec.rb | 2 +- modules/webhooks/spec/workers/work_package_webhook_job_spec.rb | 2 +- .../spec/patches/work_packages_controller_patch_spec.rb | 2 +- packaging/conf/configuration.yml | 2 +- script/templates/database.travis.postgres.yml | 2 +- spec/cells/rails_cell_spec.rb | 2 +- spec/contracts/attachments/create_contract_spec.rb | 2 +- spec/contracts/attribute_help_texts/base_contract_spec.rb | 2 +- .../authentication/omniauth_auth_hash_contract_spec.rb | 2 +- spec/contracts/backups/create_contract_spec.rb | 2 +- spec/contracts/custom_actions/cu_contract_spec.rb | 2 +- spec/contracts/custom_fields/create_contract_spec.rb | 2 +- spec/contracts/custom_fields/update_contract_spec.rb | 2 +- spec/contracts/groups/create_contract_spec.rb | 2 +- spec/contracts/groups/shared_contract_examples.rb | 2 +- spec/contracts/groups/update_contract_spec.rb | 2 +- spec/contracts/members/create_contract_spec.rb | 2 +- spec/contracts/members/shared_contract_examples.rb | 2 +- spec/contracts/members/update_contract_spec.rb | 2 +- spec/contracts/messages/create_contract_spec.rb | 2 +- spec/contracts/messages/shared_contract_examples.rb | 2 +- spec/contracts/messages/update_contract_spec.rb | 2 +- spec/contracts/notifications/create_contract_spec.rb | 2 +- spec/contracts/placeholder_users/create_contract_spec.rb | 2 +- spec/contracts/placeholder_users/delete_contract_spec.rb | 2 +- spec/contracts/placeholder_users/shared_contract_examples.rb | 2 +- spec/contracts/placeholder_users/update_contract_spec.rb | 2 +- spec/contracts/projects/archive_contract_spec.rb | 2 +- spec/contracts/projects/base_contract_spec.rb | 2 +- spec/contracts/projects/create_contract_spec.rb | 2 +- spec/contracts/projects/delete_contract_spec.rb | 2 +- spec/contracts/projects/enabled_modules_contract_spec.rb | 2 +- spec/contracts/projects/shared_contract_examples.rb | 2 +- spec/contracts/projects/unarchive_contract_spec.rb | 2 +- spec/contracts/projects/update_contract_spec.rb | 2 +- spec/contracts/queries/update_contract_spec.rb | 2 +- spec/contracts/relations/create_contract_spec.rb | 2 +- spec/contracts/roles/create_contract_spec.rb | 2 +- spec/contracts/roles/shared_contract_examples.rb | 2 +- spec/contracts/roles/update_contract_spec.rb | 2 +- spec/contracts/settings/update_contract_spec.rb | 2 +- spec/contracts/user_preferences/params_contract_spec.rb | 2 +- spec/contracts/user_preferences/update_contract_spec.rb | 2 +- spec/contracts/users/create_contract_spec.rb | 2 +- spec/contracts/users/shared_contract_examples.rb | 2 +- spec/contracts/users/update_contract_spec.rb | 2 +- spec/contracts/versions/create_contract_spec.rb | 2 +- spec/contracts/versions/shared_contract_examples.rb | 2 +- spec/contracts/versions/update_contract_spec.rb | 2 +- .../contracts/views/create_contract_work_packages_table_spec.rb | 2 +- spec/contracts/views/shared_contract_examples.rb | 2 +- spec/contracts/views/update_contract_spec.rb | 2 +- spec/contracts/wiki_pages/create_contract_spec.rb | 2 +- spec/contracts/wiki_pages/shared_contract_examples.rb | 2 +- spec/contracts/work_packages/base_contract_spec.rb | 2 +- spec/contracts/work_packages/create_contract_spec.rb | 2 +- spec/contracts/work_packages/shared_base_contract.rb | 2 +- spec/controllers/account_controller_spec.rb | 2 +- spec/controllers/activities_controller_spec.rb | 2 +- .../admin/settings/authentication_controller_spec.rb | 2 +- .../admin/settings/projects_settings_controller_spec.rb | 2 +- spec/controllers/admin_controller_spec.rb | 2 +- spec/controllers/application_controller_spec.rb | 2 +- spec/controllers/auth_sources_controller_spec.rb | 2 +- spec/controllers/categories_controller_spec.rb | 2 +- spec/controllers/colors_controller_spec.rb | 2 +- spec/controllers/concerns/auth_source_slo_spec.rb | 2 +- spec/controllers/concerns/auth_source_sso_spec.rb | 2 +- spec/controllers/concerns/omniauth_login_spec.rb | 2 +- spec/controllers/concerns/user_invitation_spec.rb | 2 +- spec/controllers/custom_actions_controller_spec.rb | 2 +- spec/controllers/custom_fields_controller_spec.rb | 2 +- spec/controllers/custom_styles_controller_spec.rb | 2 +- spec/controllers/enterprises_controller_spec.rb | 2 +- spec/controllers/enumerations_controller.rb | 2 +- spec/controllers/enumerations_controller_spec.rb | 2 +- spec/controllers/forums_controller_spec.rb | 2 +- spec/controllers/groups_controller_spec.rb | 2 +- spec/controllers/homescreen_controller_spec.rb | 2 +- spec/controllers/journals_controller_spec.rb | 2 +- spec/controllers/ldap_auth_sources_controller_spec.rb | 2 +- spec/controllers/members_controller_spec.rb | 2 +- spec/controllers/messages_controller_spec.rb | 2 +- spec/controllers/my_controller_spec.rb | 2 +- spec/controllers/news/comments_controller_spec.rb | 2 +- spec/controllers/news_controller_spec.rb | 2 +- spec/controllers/oauth/applications_controller_spec.rb | 2 +- spec/controllers/oauth/grants_controller_spec.rb | 2 +- .../placeholder_users/memberships_controller_spec.rb | 2 +- spec/controllers/placeholder_users_controller_spec.rb | 2 +- spec/controllers/projects_controller_spec.rb | 2 +- spec/controllers/projects_settings_menu_controller_spec.rb | 2 +- spec/controllers/repositories_controller_spec.rb | 2 +- spec/controllers/roles_controller_spec.rb | 2 +- spec/controllers/search_controller_spec.rb | 2 +- spec/controllers/statuses_controller_spec.rb | 2 +- spec/controllers/sys_controller_spec.rb | 2 +- spec/controllers/types_controller_spec.rb | 2 +- spec/controllers/users/memberships_controller_spec.rb | 2 +- spec/controllers/users_controller_spec.rb | 2 +- spec/controllers/versions_controller_spec.rb | 2 +- spec/controllers/wiki_controller_spec.rb | 2 +- spec/controllers/wiki_menu_authentication_spec.rb | 2 +- spec/controllers/wiki_menu_items_controller_spec.rb | 2 +- .../controllers/work_packages/auto_completes_controller_spec.rb | 2 +- spec/controllers/work_packages/bulk_controller_spec.rb | 2 +- spec/controllers/work_packages/moves_controller_spec.rb | 2 +- spec/controllers/work_packages/reports_controller_spec.rb | 2 +- spec/controllers/work_packages_controller_spec.rb | 2 +- spec/controllers/workflows_controller_spec.rb | 2 +- spec/factories/attachment_factory.rb | 2 +- spec/factories/auth_source_factory.rb | 2 +- spec/factories/backup_factory.rb | 2 +- spec/factories/category_factory.rb | 2 +- spec/factories/changeset_factory.rb | 2 +- spec/factories/color_factory.rb | 2 +- spec/factories/comment_factory.rb | 2 +- spec/factories/custom_action_factory.rb | 2 +- spec/factories/custom_field_factory.rb | 2 +- spec/factories/custom_option_factory.rb | 2 +- spec/factories/custom_style_factory.rb | 2 +- spec/factories/custom_value_factory.rb | 2 +- spec/factories/design_color_factory.rb | 2 +- spec/factories/enumerations_factory.rb | 2 +- spec/factories/file_factory.rb | 2 +- spec/factories/forum_factory.rb | 2 +- spec/factories/global_role_factory.rb | 2 +- spec/factories/group_factory.rb | 2 +- spec/factories/group_user_factory.rb | 2 +- spec/factories/issue_priority_factory.rb | 2 +- spec/factories/journal/attachable_journal_factory.rb | 2 +- spec/factories/journal/attachment_journal_factory.rb | 2 +- spec/factories/journal/changeset_journal_factory.rb | 2 +- spec/factories/journal/customizable_journal_factory.rb | 2 +- spec/factories/journal/message_journal_factory.rb | 2 +- spec/factories/journal/news_journal_facctory.rb | 2 +- spec/factories/journal/wiki_content_journal_factory.rb | 2 +- spec/factories/journal/work_package_journal_factory.rb | 2 +- spec/factories/journal_factory.rb | 2 +- spec/factories/member_factory.rb | 2 +- spec/factories/member_role_factory.rb | 2 +- spec/factories/menu_item_factory.rb | 2 +- spec/factories/message_factory.rb | 2 +- spec/factories/news_factory.rb | 2 +- spec/factories/oauth_application_factory.rb | 2 +- spec/factories/placeholder_user_factory.rb | 2 +- spec/factories/principal_factory.rb | 2 +- spec/factories/project_factory.rb | 2 +- spec/factories/project_status.rb | 2 +- spec/factories/query_factory.rb | 2 +- spec/factories/relation_factory.rb | 2 +- spec/factories/repository_factory.rb | 2 +- spec/factories/role_factory.rb | 2 +- spec/factories/status_factory.rb | 2 +- spec/factories/token_factory.rb | 2 +- spec/factories/type_factory.rb | 2 +- spec/factories/user_factory.rb | 2 +- spec/factories/user_password_factory.rb | 2 +- spec/factories/user_preference_factory.rb | 2 +- spec/factories/user_session_factory.rb | 2 +- spec/factories/version_factory.rb | 2 +- spec/factories/view_factory.rb | 2 +- spec/factories/watcher_factory.rb | 2 +- spec/factories/wiki_content_factory.rb | 2 +- spec/factories/wiki_factory.rb | 2 +- spec/factories/wiki_page_factory.rb | 2 +- spec/factories/wiki_redirect_factory.rb | 2 +- spec/factories/work_package_custom_field_factory.rb | 2 +- spec/factories/work_package_factory.rb | 2 +- spec/factories/work_packags_export_factory.rb | 2 +- spec/factories/workflow_factory.rb | 2 +- .../accessibility/work_packages/work_package_query_spec.rb | 2 +- spec/features/activities/disabled_activity_spec.rb | 2 +- spec/features/activities/wiki_activity_spec.rb | 2 +- spec/features/admin/attribute_help_texts_spec.rb | 2 +- spec/features/admin/backup_spec.rb | 2 +- spec/features/admin/custom_fields/list_custom_field_spec.rb | 2 +- .../admin/custom_fields/multi_value_custom_fields_spec.rb | 2 +- spec/features/admin/enterprise/enterprise_spec.rb | 2 +- spec/features/admin/enterprise/enterprise_trial_spec.rb | 2 +- spec/features/admin/enterprise/token_domain_spec.rb | 2 +- spec/features/admin/enumerations_spec.rb | 2 +- spec/features/admin/menu_item_traversal_spec.rb | 2 +- spec/features/admin/oauth/oauth_applications_management_spec.rb | 2 +- spec/features/admin/settings_spec.rb | 2 +- spec/features/admin/test_mail_notification_spec.rb | 2 +- spec/features/attachments/attachments_spec.rb | 2 +- spec/features/auth/auth_source_sso_login_spec.rb | 2 +- spec/features/auth/auth_stages_spec.rb | 2 +- spec/features/auth/consent_auth_stage_spec.rb | 2 +- spec/features/auth/login_spec.rb | 2 +- spec/features/auth/logout_spec.rb | 2 +- spec/features/auth/lost_password_spec.rb | 2 +- spec/features/auth/omniauth_spec.rb | 2 +- spec/features/categories/categories_page.rb | 2 +- spec/features/categories/delete_spec.rb | 2 +- spec/features/colors/color_administration_spec.rb | 2 +- spec/features/custom_fields/activate_in_project_spec.rb | 2 +- spec/features/custom_fields/custom_fields_page.rb | 2 +- spec/features/forums/attachment_upload_spec.rb | 2 +- spec/features/forums/message_spec.rb | 2 +- spec/features/forums/sticky_spec.rb | 2 +- spec/features/global_roles/global_create_project_spec.rb | 2 +- spec/features/global_roles/global_role_assignment_spec.rb | 2 +- spec/features/global_roles/global_role_crud_spec.rb | 2 +- spec/features/global_roles/member_roles_spec.rb | 2 +- spec/features/global_roles/no_module_spec.rb | 2 +- spec/features/groups/group_memberships_spec.rb | 2 +- spec/features/groups/group_show_spec.rb | 2 +- spec/features/groups/groups_spec.rb | 2 +- spec/features/groups/membership_spec.rb | 2 +- spec/features/homescreen/index_spec.rb | 2 +- spec/features/homescreen/robots_spec.rb | 2 +- spec/features/localization_spec.rb | 2 +- spec/features/members/error_messages_spec.rb | 2 +- spec/features/members/invitation_spec.rb | 2 +- spec/features/members/membership_filter_spec.rb | 2 +- spec/features/members/membership_spec.rb | 2 +- spec/features/members/pagination_spec.rb | 2 +- spec/features/members/roles_spec.rb | 2 +- spec/features/menu_items/admin_menu_item_spec.rb | 2 +- spec/features/menu_items/help_menu_spec.rb | 2 +- spec/features/menu_items/menu_permissions_spec.rb | 2 +- spec/features/menu_items/query_menu_item_spec.rb | 2 +- spec/features/menu_items/quick_add_menu_spec.rb | 2 +- spec/features/menu_items/top_menu_item_spec.rb | 2 +- spec/features/menu_items/wiki_menu_item_spec.rb | 2 +- spec/features/news/creation_and_commenting_spec.rb | 2 +- spec/features/oauth/authorization_code_flow_spec.rb | 2 +- spec/features/oauth/pkce_spec.rb | 2 +- spec/features/onboarding/onboarding_tour_spec.rb | 2 +- spec/features/page_objects/notification.rb | 2 +- spec/features/placeholder_users/create_spec.rb | 2 +- spec/features/placeholder_users/delete_spec.rb | 2 +- spec/features/placeholder_users/edit_placeholder_users_spec.rb | 2 +- spec/features/placeholder_users/index_spec.rb | 2 +- .../placeholder_users/placeholder_user_memberships_spec.rb | 2 +- spec/features/projects/attribute_help_texts_spec.rb | 2 +- spec/features/projects/copy_spec.rb | 2 +- spec/features/projects/create_spec.rb | 2 +- spec/features/projects/destroy_spec.rb | 2 +- spec/features/projects/edit_settings_spec.rb | 2 +- spec/features/projects/export_spec.rb | 2 +- spec/features/projects/modules_spec.rb | 2 +- spec/features/projects/project_autocomplete_spec.rb | 2 +- spec/features/projects/project_status_administration_spec.rb | 2 +- spec/features/projects/projects_custom_fields_spec.rb | 2 +- spec/features/projects/projects_index_spec.rb | 2 +- spec/features/projects/projects_portfolio_spec.rb | 2 +- spec/features/projects/subproject_creation_spec.rb | 2 +- spec/features/projects/template_spec.rb | 2 +- spec/features/projects/work_package_type_mgmt_spec.rb | 2 +- spec/features/repositories/checkout_instructions_spec.rb | 2 +- spec/features/repositories/create_repository_spec.rb | 2 +- spec/features/repositories/repository_settings_page.rb | 2 +- spec/features/repositories/repository_settings_spec.rb | 2 +- spec/features/roles/create_spec.rb | 2 +- spec/features/search_spec.rb | 2 +- spec/features/security/expire_sessions_spec.rb | 2 +- spec/features/security/session_ttl_spec.rb | 2 +- spec/features/statuses/read_only_statuses_spec.rb | 2 +- spec/features/statuses/statuses_administration_spec.rb | 2 +- spec/features/support/components/attribute_help_text_modal.rb | 2 +- spec/features/support/components/danger_zone.rb | 2 +- spec/features/support/components/ng_select_autocomplete.rb | 2 +- spec/features/support/components/time_logging_modal.rb | 2 +- spec/features/support/components/ui_autocomplete.rb | 2 +- spec/features/support/work_package_table.rb | 2 +- spec/features/types/activate_in_project_spec.rb | 2 +- spec/features/types/crud_spec.rb | 2 +- spec/features/types/form_configuration_query_spec.rb | 2 +- spec/features/types/form_configuration_spec.rb | 2 +- spec/features/types/reset_form_configuration_spec.rb | 2 +- spec/features/users/brute_force_spec.rb | 2 +- spec/features/users/create_spec.rb | 2 +- spec/features/users/delete_spec.rb | 2 +- spec/features/users/edit_users_spec.rb | 2 +- spec/features/users/index_spec.rb | 2 +- spec/features/users/invitation_spec.rb | 2 +- spec/features/users/invite_user_modal/custom_fields_spec.rb | 2 +- spec/features/users/invite_user_modal/invite_user_modal_spec.rb | 2 +- .../permission_lacking_current_project_spec.rb | 2 +- spec/features/users/invite_user_modal/subproject_invite_spec.rb | 2 +- spec/features/users/my_spec.rb | 2 +- spec/features/users/password_change_spec.rb | 2 +- spec/features/users/self_registration_spec.rb | 2 +- spec/features/users/user_memberships_spec.rb | 2 +- spec/features/versions/create_spec.rb | 2 +- spec/features/versions/edit_spec.rb | 2 +- spec/features/versions/graph_spec.rb | 2 +- spec/features/versions/project_settings_index_spec.rb | 2 +- spec/features/watching/toggle_watching_spec.rb | 2 +- spec/features/wiki/adding_editing_history_spec.rb | 2 +- spec/features/wiki/attachment_upload_spec.rb | 2 +- spec/features/wiki/child_pages_spec.rb | 2 +- spec/features/wiki/edit_new_page_spec.rb | 2 +- spec/features/wiki/rename_spec.rb | 2 +- spec/features/wiki/wiki_page_navigation_spec.rb | 2 +- spec/features/wiki/wiki_unicode_spec.rb | 2 +- spec/features/work_package_show_spec.rb | 2 +- spec/features/work_packages/attribute_help_texts_spec.rb | 2 +- spec/features/work_packages/cards/wp_card_status_spec.rb | 2 +- spec/features/work_packages/copy_spec.rb | 2 +- .../custom_actions/custom_actions_me_value_spec.rb | 2 +- .../work_packages/custom_actions/custom_actions_spec.rb | 2 +- spec/features/work_packages/details/date_editor_spec.rb | 2 +- spec/features/work_packages/details/details_refreshing_spec.rb | 2 +- spec/features/work_packages/details/details_toolbar_spec.rb | 2 +- .../work_packages/details/markdown/description_editor_spec.rb | 2 +- spec/features/work_packages/details/markdown/todolist_spec.rb | 2 +- .../details/query_groups/relation_query_group_spec.rb | 2 +- .../details/relations/hierarchy_custom_fields_spec.rb | 2 +- .../work_packages/details/relations/hierarchy_milestone_spec.rb | 2 +- spec/features/work_packages/details/relations/hierarchy_spec.rb | 2 +- spec/features/work_packages/details/relations/relations_spec.rb | 2 +- .../work_packages/display_fields/date_field_display_spec.rb | 2 +- .../display_fields/estimated_hours_display_spec.rb | 2 +- .../work_packages/display_fields/spent_time_display_spec.rb | 2 +- .../switch_display_representations_spec.rb | 2 +- spec/features/work_packages/export_spec.rb | 2 +- spec/features/work_packages/index_sums_spec.rb | 2 +- spec/features/work_packages/navigation_spec.rb | 2 +- spec/features/work_packages/new/attributes_from_filter_spec.rb | 2 +- spec/features/work_packages/pagination_spec.rb | 2 +- .../project_include/project_include_shared_examples.rb | 2 +- spec/features/work_packages/reports_spec.rb | 2 +- spec/features/work_packages/scheduling/scheduling_mode_spec.rb | 2 +- spec/features/work_packages/select/select_card_view.spec.rb | 2 +- spec/features/work_packages/select/select_query_spec.rb | 2 +- .../work_packages/select/select_work_package_row_spec.rb | 2 +- spec/features/work_packages/select/select_wp_card_spec.rb | 2 +- spec/features/work_packages/shared_contexts.rb | 2 +- spec/features/work_packages/sorting/manual_sorting_spec.rb | 2 +- spec/features/work_packages/sorting/table_sorting_spec.rb | 2 +- .../work_packages/table/hierarchy/hierarchy_vs_grouping_spec.rb | 2 +- .../work_packages/table/queries/assignee_filter_spec.rb | 2 +- .../features/work_packages/table/queries/bool_cf_filter_spec.rb | 2 +- .../work_packages/table/queries/filter_pagination_spec.rb | 2 +- spec/features/work_packages/table/queries/filter_spec.rb | 2 +- spec/features/work_packages/table/queries/id_filter_spec.rb | 2 +- spec/features/work_packages/table/queries/me_filter_spec.rb | 2 +- spec/features/work_packages/table/queries/query_history_spec.rb | 2 +- .../work_packages/table/queries/query_menu_refresh_spec.rb | 2 +- spec/features/work_packages/table/queries/query_menu_spec.rb | 2 +- .../work_packages/table/queries/query_name_inline_edit_spec.rb | 2 +- .../work_packages/table/queries/responsible_filter_spec.rb | 2 +- .../features/work_packages/table/queries/subject_filter_spec.rb | 2 +- spec/features/work_packages/table/queries/summary_spec.rb | 2 +- .../features/work_packages/table/queries/user_cf_filter_spec.rb | 2 +- .../table/work_packages_table_project_include_spec.rb | 2 +- spec/features/work_packages/tabs/keep_tab_spec.rb | 2 +- spec/features/work_packages/timeline/timeline_dates_spec.rb | 2 +- spec/features/work_packages/timeline/timeline_hierarchy_spec.rb | 2 +- spec/features/work_packages/timeline/timeline_labels_spec.rb | 2 +- .../features/work_packages/timeline/timeline_navigation_spec.rb | 2 +- spec/features/work_packages/work_package_index_spec.rb | 2 +- spec/features/work_packages/work_package_workflow_form_spec.rb | 2 +- spec/features/work_packages/work_packages_page.rb | 2 +- spec/features/workflows/copy_spec.rb | 2 +- spec/features/wysiwyg/custom_css_classes_spec.rb | 2 +- spec/features/wysiwyg/html_encoding_spec.rb | 2 +- spec/features/wysiwyg/linking_spec.rb | 2 +- spec/features/wysiwyg/macros/attribute_macros_spec.rb | 2 +- spec/features/wysiwyg/macros/child_pages_spec.rb | 2 +- spec/features/wysiwyg/macros/code_block_macro_spec.rb | 2 +- spec/features/wysiwyg/macros/embedded_tables_spec.rb | 2 +- spec/features/wysiwyg/macros/quicklink_macros_spec.rb | 2 +- spec/features/wysiwyg/macros/work_package_button_spec.rb | 2 +- spec/features/wysiwyg/non_breaking_spaces_spec.rb | 2 +- spec/features/wysiwyg/paragraphs_in_lists_spec.rb | 2 +- spec/features/wysiwyg/tables_spec.rb | 2 +- spec/features/wysiwyg/user_mention_spec.rb | 2 +- spec/features/wysiwyg/work_package_linking_spec.rb | 2 +- spec/helpers/angular_helper_spec.rb | 2 +- spec/helpers/application_helper_spec.rb | 2 +- spec/helpers/custom_styles_helper_spec.rb | 2 +- spec/helpers/hook_helper_spec.rb | 2 +- spec/helpers/individual_principal_hooks_helper_spec.rb | 2 +- spec/helpers/no_results_helper_spec.rb | 2 +- spec/helpers/pagination_helper_spec.rb | 2 +- spec/helpers/projects_helper_spec.rb | 2 +- spec/helpers/removed_js_helpers_helper_spec.rb | 2 +- spec/helpers/search_helper_spec.rb | 2 +- spec/helpers/security_badge_helper_spec.rb | 2 +- spec/helpers/settings_helper_spec.rb | 2 +- spec/helpers/sort_helper_spec.rb | 2 +- spec/helpers/tabs_helper_spec.rb | 2 +- spec/helpers/text_formatting_helper_spec.rb | 2 +- spec/helpers/toolbar_helper_spec.rb | 2 +- spec/helpers/types_helper_spec.rb | 2 +- spec/helpers/users_helper_spec.rb | 2 +- spec/helpers/versions_helper_spec.rb | 2 +- spec/helpers/work_packages_filter_helper_spec.rb | 2 +- spec/helpers/work_packages_helper_spec.rb | 2 +- spec/lib/acts_as_journalized/journaled_spec.rb | 2 +- spec/lib/acts_as_list/acts_as_list_patch_spec.rb | 2 +- spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb | 2 +- spec/lib/api/decorators/aggregation_group_spec.rb | 2 +- spec/lib/api/decorators/formattable_spec.rb | 2 +- spec/lib/api/decorators/link_object_spec.rb | 2 +- spec/lib/api/utilities/page_size_helper_spec.rb | 2 +- spec/lib/api/utilities/property_name_converter_spec.rb | 2 +- spec/lib/api/utilities/resource_link_parser_spec.rb | 2 +- .../api/v3/actions/action_sql_respresenter_rendering_spec.rb | 2 +- .../api/v3/activities/activity_representer_rendering_spec.rb | 2 +- .../api/v3/attachments/attachment_metadata_representer_spec.rb | 2 +- spec/lib/api/v3/attachments/attachment_representer_spec.rb | 2 +- .../capabilities/capability_sql_representer_rendering_spec.rb | 2 +- .../capabilities/contexts/global_representer_rendering_spec.rb | 2 +- .../api/v3/categories/category_collection_representer_spec.rb | 2 +- spec/lib/api/v3/categories/category_representer_spec.rb | 2 +- spec/lib/api/v3/configuration/configuration_representer_spec.rb | 2 +- .../custom_action_execute_representer_parsing_spec.rb | 2 +- .../custom_actions/custom_action_representer_generation_spec.rb | 2 +- .../lib/api/v3/custom_options/custom_option_representer_spec.rb | 2 +- spec/lib/api/v3/formatter/txt_charset_spec.rb | 2 +- spec/lib/api/v3/groups/group_collection_representer_spec.rb | 2 +- spec/lib/api/v3/groups/group_representer_spec.rb | 2 +- .../api/v3/help_texts/help_text_collection_representer_spec.rb | 2 +- spec/lib/api/v3/help_texts/help_text_representer_spec.rb | 2 +- .../v3/memberships/membership_collection_representer_spec.rb | 2 +- .../api/v3/memberships/membership_payload_representer_spec.rb | 2 +- .../api/v3/memberships/membership_representer_rendering_spec.rb | 2 +- .../memberships/schemas/membership_schema_representer_spec.rb | 2 +- spec/lib/api/v3/news/news_representer_rendering_spec.rb | 2 +- .../notifications/notification_collection_representer_spec.rb | 2 +- .../v3/notifications/notification_representer_rendering_spec.rb | 2 +- .../placeholder_user_collection_representer_spec.rb | 2 +- .../placeholder_user_representer_rendering_spec.rb | 2 +- spec/lib/api/v3/posts/post_representer_rendering_spec.rb | 2 +- .../lib/api/v3/principals/principal_representer_factory_spec.rb | 2 +- spec/lib/api/v3/principals/principal_type_spec.rb | 2 +- .../api/v3/priorities/priority_collection_representer_spec.rb | 2 +- spec/lib/api/v3/priorities/priority_representer_spec.rb | 2 +- .../v3/projects/copy/project_copy_payload_representer_spec.rb | 2 +- .../v3/projects/copy/project_copy_schema_representer_spec.rb | 2 +- spec/lib/api/v3/projects/project_collection_representer_spec.rb | 2 +- .../api/v3/projects/project_payload_representer_parsing_spec.rb | 2 +- spec/lib/api/v3/projects/project_representer_rendering_spec.rb | 2 +- .../api/v3/projects/schemas/project_schema_representer_spec.rb | 2 +- .../v3/projects/statuses/status_representer_rendering_spec.rb | 2 +- .../queries/columns/query_property_column_representer_spec.rb | 2 +- .../columns/query_relation_of_type_column_representer_spec.rb | 2 +- .../columns/query_relation_to_type_column_representer_spec.rb | 2 +- .../queries/filters/query_filter_instance_representer_spec.rb | 2 +- .../lib/api/v3/queries/filters/query_filter_representer_spec.rb | 2 +- .../api/v3/queries/group_bys/query_group_by_representer_spec.rb | 2 +- .../api/v3/queries/operators/query_operator_representer_spec.rb | 2 +- spec/lib/api/v3/queries/query_representer_parsing_spec.rb | 2 +- spec/lib/api/v3/queries/query_representer_rendering_spec.rb | 2 +- .../all_principals_filter_dependency_representer_spec.rb | 2 +- .../schemas/blocks_filter_dependency_representer_spec.rb | 2 +- .../schemas/boolean_filter_dependency_representer_spec.rb | 2 +- .../schemas/category_filter_dependency_representer_spec.rb | 2 +- .../schemas/custom_option_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/date_filter_dependency_representer_spec.rb | 2 +- .../schemas/date_time_filter_dependency_representer_spec.rb | 2 +- .../schemas/duplicated_filter_dependency_representer_spec.rb | 2 +- .../schemas/duplicates_filter_dependency_representer_spec.rb | 2 +- .../schemas/filter_dependency_representer_factory_spec.rb | 2 +- .../queries/schemas/float_filter_dependency_representer_spec.rb | 2 +- .../schemas/follows_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/group_filter_dependency_representer_spec.rb | 2 +- .../v3/queries/schemas/id_filter_dependency_representer_spec.rb | 2 +- .../schemas/includes_filter_dependency_representer_spec.rb | 2 +- .../schemas/integer_filter_dependency_representer_spec.rb | 2 +- .../schemas/parent_filter_dependency_representer_spec.rb | 2 +- .../schemas/partof_filter_dependency_representer_spec.rb | 2 +- .../schemas/precedes_filter_dependency_representer_spec.rb | 2 +- .../schemas/priority_filter_dependency_representer_spec.rb | 2 +- .../schemas/project_filter_dependency_representer_spec.rb | 2 +- .../schemas/query_filter_instance_schema_representer_spec.rb | 2 +- .../lib/api/v3/queries/schemas/query_schema_representer_spec.rb | 2 +- .../schemas/relates_filter_dependency_representer_spec.rb | 2 +- .../schemas/required_filter_dependency_representer_spec.rb | 2 +- .../schemas/requires_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/role_filter_dependency_representer_spec.rb | 2 +- .../schemas/status_filter_dependency_representer_spec.rb | 2 +- .../schemas/subproject_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/text_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/type_filter_dependency_representer_spec.rb | 2 +- .../queries/schemas/user_filter_dependency_representer_spec.rb | 2 +- .../schemas/version_filter_dependency_representer_spec.rb | 2 +- .../api/v3/queries/sort_bys/query_sort_by_representer_spec.rb | 2 +- .../api/v3/relations/relation_collection_representer_spec.rb | 2 +- .../relations/relation_paginated_collection_representer_spec.rb | 2 +- spec/lib/api/v3/relations/relation_representer_spec.rb | 2 +- spec/lib/api/v3/repositories/revision_representer_spec.rb | 2 +- spec/lib/api/v3/root_representer_spec.rb | 2 +- spec/lib/api/v3/statuses/status_collection_representer_spec.rb | 2 +- spec/lib/api/v3/statuses/status_representer_spec.rb | 2 +- spec/lib/api/v3/support/api_v3_collection.rb | 2 +- spec/lib/api/v3/support/api_v3_digest.rb | 2 +- spec/lib/api/v3/support/api_v3_filter_dependency.rb | 2 +- spec/lib/api/v3/support/api_v3_formattable.rb | 2 +- spec/lib/api/v3/support/date_time_examples.rb | 2 +- spec/lib/api/v3/support/link_examples.rb | 2 +- spec/lib/api/v3/support/property_examples.rb | 2 +- spec/lib/api/v3/support/schema_examples.rb | 2 +- spec/lib/api/v3/types/type_representer_spec.rb | 2 +- .../notification_setting_representer_rendering_spec.rb | 2 +- .../user_preference_representer_parsing_spec.rb | 2 +- .../user_preference_representer_rendering_spec.rb | 2 +- .../api/v3/users/paginated_user_collection_representer_spec.rb | 2 +- spec/lib/api/v3/users/user_collection_representer_spec.rb | 2 +- spec/lib/api/v3/users/user_representer_spec.rb | 2 +- spec/lib/api/v3/utilities/custom_field_injector_spec.rb | 2 +- spec/lib/api/v3/utilities/date_time_formatter_spec.rb | 2 +- spec/lib/api/v3/utilities/path_helper_spec.rb | 2 +- spec/lib/api/v3/utilities/resource_link_generator_spec.rb | 2 +- .../api/v3/versions/schemas/version_schema_representer_spec.rb | 2 +- spec/lib/api/v3/versions/version_collection_representer_spec.rb | 2 +- spec/lib/api/v3/versions/version_representer_rendering_spec.rb | 2 +- spec/lib/api/v3/views/view_representer_rendering_spec.rb | 2 +- .../api/v3/wiki_pages/wiki_page_representer_rendering_spec.rb | 2 +- spec/lib/api/v3/work_packages/create_form_representer_spec.rb | 2 +- .../v3/work_packages/create_project_form_representer_spec.rb | 2 +- .../eager_loading/cache_checksum_integration_spec.rb | 2 +- .../eager_loading/cost_eager_loading_integration_spec.rb | 2 +- .../eager_loading/custom_actions_integration_spec.rb | 2 +- .../eager_loading/custom_value_integration_spec.rb | 2 +- .../work_packages/eager_loading/eager_loading_mock_wrapper.rb | 2 +- .../v3/work_packages/eager_loading/project_integration_spec.rb | 2 +- spec/lib/api/v3/work_packages/form_representer_spec.rb | 2 +- .../work_packages/schema/specific_work_package_schema_spec.rb | 2 +- .../v3/work_packages/schema/typed_work_package_schema_spec.rb | 2 +- .../schema/work_package_schema_representer_spec.rb | 2 +- .../schema/work_package_sums_schema_representer_spec.rb | 2 +- .../v3/work_packages/schema/work_package_sums_schema_spec.rb | 2 +- .../work_packages/work_package_collection_representer_spec.rb | 2 +- .../v3/work_packages/work_package_payload_representer_spec.rb | 2 +- spec/lib/api/v3/work_packages/work_package_representer_spec.rb | 2 +- .../api/v3/work_packages/work_package_sums_representer_spec.rb | 2 +- spec/lib/custom_field_form_builder_spec.rb | 2 +- spec/lib/database_spec.rb | 2 +- spec/lib/deprecated_alias_spec.rb | 2 +- spec/lib/i18n/pluralization_spec.rb | 2 +- spec/lib/journal_formatter/attachment_spec.rb | 2 +- spec/lib/journal_formatter/custom_field_spec.rb | 2 +- spec/lib/journal_formatter/diff_spec.rb | 2 +- spec/lib/journal_formatter/schedule_manually_spec.rb | 2 +- spec/lib/open_project/access_control/permission_spec.rb | 2 +- spec/lib/open_project/access_control_spec.rb | 2 +- .../authentication/strategies/warden/global_basic_auth_spec.rb | 2 +- spec/lib/open_project/changed_by_system_spec.rb | 2 +- spec/lib/open_project/configuration/helpers_spec.rb | 2 +- spec/lib/open_project/configuration_spec.rb | 2 +- spec/lib/open_project/content_type_detector_spec.rb | 2 +- spec/lib/open_project/enterprise_spec.rb | 2 +- .../lib/open_project/file_command_content_type_detector_spec.rb | 2 +- spec/lib/open_project/files_spec.rb | 2 +- spec/lib/open_project/footer_spec.rb | 2 +- spec/lib/open_project/form_tag_helper_spec.rb | 2 +- spec/lib/open_project/hook_spec.rb | 2 +- spec/lib/open_project/logging/log_extender_spec.rb | 2 +- spec/lib/open_project/mime_type_spec.rb | 2 +- spec/lib/open_project/notifications_spec.rb | 2 +- spec/lib/open_project/object_linking_spec.rb | 2 +- spec/lib/open_project/omni_auth/authorization_spec.rb | 2 +- spec/lib/open_project/passwords_spec.rb | 2 +- spec/lib/open_project/plugins/acts_as_op_engine_spec.rb | 2 +- spec/lib/open_project/plugins/module_handler_spec.rb | 2 +- spec/lib/open_project/scm/adapters/git_adapter_spec.rb | 2 +- spec/lib/open_project/scm/adapters/subversion_adapter_spec.rb | 2 +- spec/lib/open_project/scm/manager_spec.rb | 2 +- spec/lib/open_project/static_routing_spec.rb | 2 +- spec/lib/open_project/storage_spec.rb | 2 +- .../text_formatting/markdown/attribute_macros_spec.rb | 2 +- .../open_project/text_formatting/markdown/blockquote_spec.rb | 2 +- .../text_formatting/markdown/child_pages_macro_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/code_spec.rb | 2 +- .../text_formatting/markdown/embedded_table_macro_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/headings_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/images_spec.rb | 2 +- .../open_project/text_formatting/markdown/in_tool_links_spec.rb | 2 +- .../text_formatting/markdown/include_wiki_page_macro_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/lists_spec.rb | 2 +- .../text_formatting/markdown/markdown_formatting_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/mentions_spec.rb | 2 +- .../text_formatting/markdown/pandoc_wrapper_spec.rb | 2 +- .../open_project/text_formatting/markdown/paragraphs_spec.rb | 2 +- .../text_formatting/markdown/setting_variable_spec.rb | 2 +- spec/lib/open_project/text_formatting/markdown/tables_spec.rb | 2 +- .../lib/open_project/text_formatting/markdown/toc_macro_spec.rb | 2 +- .../text_formatting/markdown/user_provided_links_spec.rb | 2 +- .../text_formatting/markdown/work_package_buttons_macro_spec.rb | 2 +- spec/lib/open_project/text_formatting/plain_spec.rb | 2 +- spec/lib/open_project/text_formatting/text_formatting_spec.rb | 2 +- spec/lib/redmine/i18n_spec.rb | 2 +- spec/lib/redmine/unified_diff_spec.rb | 2 +- spec/lib/reminders/due_issues_reminder_spec.rb | 2 +- spec/lib/representable_spec.rb | 2 +- spec/lib/tabular_form_builder_spec.rb | 2 +- spec/mailers/announcement_mailer_spec.rb | 2 +- spec/mailers/digest_mailer_spec.rb | 2 +- spec/mailers/member_mailer_spec.rb | 2 +- spec/mailers/user_mailer_spec.rb | 2 +- spec/mailers/work_package_mailer_spec.rb | 2 +- spec/models/actions/scopes/default_spec.rb | 2 +- spec/models/activities/fetcher_integration_spec.rb | 2 +- spec/models/activities/work_package_activity_provider_spec.rb | 2 +- spec/models/attachment_spec.rb | 2 +- spec/models/attribute_help_text/work_package_spec.rb | 2 +- spec/models/capabilities/scopes/default_spec.rb | 2 +- spec/models/category_spec.rb | 2 +- spec/models/changeset_spec.rb | 2 +- spec/models/color_spec.rb | 2 +- spec/models/custom_action_spec.rb | 2 +- spec/models/custom_actions/actions/assigned_to_spec.rb | 2 +- spec/models/custom_actions/actions/custom_field_spec.rb | 2 +- spec/models/custom_actions/actions/date_spec.rb | 2 +- spec/models/custom_actions/actions/done_ratio_spec.rb | 2 +- spec/models/custom_actions/actions/due_date_spec.rb | 2 +- spec/models/custom_actions/actions/estimated_hours_spec.rb | 2 +- spec/models/custom_actions/actions/notify_spec.rb | 2 +- spec/models/custom_actions/actions/priority_spec.rb | 2 +- spec/models/custom_actions/actions/project_spec.rb | 2 +- spec/models/custom_actions/actions/responsible_spec.rb | 2 +- spec/models/custom_actions/actions/start_date_spec.rb | 2 +- spec/models/custom_actions/actions/status_spec.rb | 2 +- spec/models/custom_actions/actions/type_spec.rb | 2 +- spec/models/custom_actions/conditions/project_spec.rb | 2 +- spec/models/custom_actions/conditions/role_spec.rb | 2 +- spec/models/custom_actions/conditions/status_spec.rb | 2 +- spec/models/custom_actions/conditions/type_spec.rb | 2 +- spec/models/custom_actions/shared_expectations.rb | 2 +- spec/models/custom_field_spec.rb | 2 +- spec/models/custom_option_spec.rb | 2 +- spec/models/custom_value/bool_strategy_spec.rb | 2 +- spec/models/custom_value/date_strategy_spec.rb | 2 +- spec/models/custom_value/float_strategy_spec.rb | 2 +- spec/models/custom_value/format_strategy_spec.rb | 2 +- spec/models/custom_value/int_strategy_spec.rb | 2 +- spec/models/custom_value/list_strategy_integration_spec.rb | 2 +- spec/models/custom_value/list_strategy_spec.rb | 2 +- spec/models/custom_value/string_strategy_spec.rb | 2 +- spec/models/custom_value/user_strategy_spec.rb | 2 +- spec/models/custom_value/version_strategy_spec.rb | 2 +- spec/models/custom_value_spec.rb | 2 +- spec/models/deleted_user_spec.rb | 2 +- spec/models/enabled_module_spec.rb | 2 +- spec/models/forum_spec.rb | 2 +- spec/models/global_role_spec.rb | 2 +- spec/models/group_performance_spec.rb | 2 +- spec/models/group_spec.rb | 2 +- spec/models/issue_priority_spec.rb | 2 +- spec/models/journal/notification_configuration_spec.rb | 2 +- spec/models/journal_spec.rb | 2 +- spec/models/ldap_auth_source_spec.rb | 2 +- spec/models/mail_handler_spec.rb | 2 +- spec/models/member_spec.rb | 2 +- spec/models/members/roles_diff_spec.rb | 2 +- spec/models/members/scopes/not_locked_spec.rb | 2 +- spec/models/menu_item_spec.rb | 2 +- spec/models/menu_items/wiki_menu_item_spec.rb | 2 +- spec/models/messages/acts_as_journalized_spec.rb | 2 +- spec/models/messages_spec.rb | 2 +- spec/models/news_spec.rb | 2 +- spec/models/notification_settings/scopes/applicable_spec.rb | 2 +- spec/models/notification_spec.rb | 2 +- spec/models/notifications/scopes/reminder_mail_unsent_spec.rb | 2 +- .../models/notifications/scopes/unsent_reminders_before_spec.rb | 2 +- spec/models/notifications/scopes/visible_spec.rb | 2 +- spec/models/permitted_params_spec.rb | 2 +- spec/models/placeholder_users/placeholder_user_spec.rb | 2 +- spec/models/placeholder_users/scopes/visible_spec.rb | 2 +- spec/models/principal_spec.rb | 2 +- spec/models/principals/scopes/human_spec.rb | 2 +- spec/models/principals/scopes/like_spec.rb | 2 +- spec/models/principals/scopes/not_builtin_spec.rb | 2 +- spec/models/principals/scopes/ordered_by_name_spec.rb | 2 +- spec/models/principals/scopes/possible_assignee_spec.rb | 2 +- spec/models/principals/scopes/possible_member_spec.rb | 2 +- spec/models/principals/scopes/user_spec.rb | 2 +- spec/models/principals/scopes/visible_spec.rb | 2 +- spec/models/project_spec.rb | 2 +- spec/models/projects/activity_spec.rb | 2 +- spec/models/projects/allowed_to_scope_spec.rb | 2 +- spec/models/projects/customizable_spec.rb | 2 +- spec/models/projects/exporter/csv_integration_spec.rb | 2 +- spec/models/projects/exporter/exportable_project_context.rb | 2 +- spec/models/projects/reorder_nested_set_spec.rb | 2 +- spec/models/projects/status_spec.rb | 2 +- spec/models/projects/storage_spec.rb | 2 +- spec/models/queries/capabilities/capability_query_spec.rb | 2 +- spec/models/queries/capabilities/filters/action_filter_spec.rb | 2 +- spec/models/queries/capabilities/filters/context_filter_spec.rb | 2 +- spec/models/queries/capabilities/filters/id_filter_spec.rb | 2 +- .../queries/capabilities/filters/principal_id_filter_spec.rb | 2 +- spec/models/queries/filters/available_filters_spec.rb | 2 +- spec/models/queries/filters/base_spec.rb | 2 +- spec/models/queries/members/filters/blocked_filter_spec.rb | 2 +- spec/models/queries/members/filters/created_at_filter_spec.rb | 2 +- spec/models/queries/members/filters/group_filter_spec.rb | 2 +- spec/models/queries/members/filters/name_filter_spec.rb | 2 +- spec/models/queries/members/filters/principal_filter_spec.rb | 2 +- spec/models/queries/members/filters/project_filter_spec.rb | 2 +- spec/models/queries/members/filters/role_filter_spec.rb | 2 +- spec/models/queries/members/filters/status_filter_spec.rb | 2 +- spec/models/queries/members/filters/updated_at_filter_spec.rb | 2 +- spec/models/queries/news/filters/project_filter_spec.rb | 2 +- spec/models/queries/news/news_query_spec.rb | 2 +- spec/models/queries/notifications/filters/id_filter_spec.rb | 2 +- .../queries/notifications/filters/read_ian_filter_spec.rb | 2 +- spec/models/queries/notifications/notification_query_spec.rb | 2 +- .../queries/placeholder_users/placeholder_user_query_spec.rb | 2 +- .../queries/principals/principal_query_integrations_spec.rb | 2 +- spec/models/queries/projects/filters/active_filter_spec.rb | 2 +- spec/models/queries/projects/filters/created_at_filter_spec.rb | 2 +- .../models/queries/projects/filters/custom_field_filter_spec.rb | 2 +- .../queries/projects/filters/latest_activity_at_filter_spec.rb | 2 +- .../queries/projects/filters/name_and_identifier_filter_spec.rb | 2 +- spec/models/queries/projects/filters/parent_filter_spec.rb | 2 +- spec/models/queries/projects/filters/principal_filter_spec.rb | 2 +- .../queries/projects/filters/project_status_filter_spec.rb | 2 +- spec/models/queries/projects/filters/public_filter_spec.rb | 2 +- spec/models/queries/projects/filters/type_filter_spec.rb | 2 +- spec/models/queries/projects/filters/user_action_filter_spec.rb | 2 +- spec/models/queries/projects/filters/visible_filter_spec.rb | 2 +- .../queries/projects/orders/latest_activity_at_order_spec.rb | 2 +- .../queries/projects/orders/required_disk_space_order_spec.rb | 2 +- spec/models/queries/projects/project_query_spec.rb | 2 +- spec/models/queries/queries/filters/hidden_filter_spec.rb | 2 +- spec/models/queries/queries/filters/project_filter_spec.rb | 2 +- spec/models/queries/queries/filters/updated_at_filter_spec.rb | 2 +- spec/models/queries/queries/query_query_spec.rb | 2 +- spec/models/queries/relations/filters/from_filter_spec.rb | 2 +- spec/models/queries/relations/filters/involved_filter_spec.rb | 2 +- spec/models/queries/relations/filters/to_filter_spec.rb | 2 +- spec/models/queries/relations/relation_query_spec.rb | 2 +- spec/models/queries/roles/filters/grantable_filter_spec.rb | 2 +- spec/models/queries/roles/filters/unit_filter_spec.rb | 2 +- .../queries/users/filters/any_name_attribute_filter_spec.rb | 2 +- spec/models/queries/users/filters/group_filter_spec.rb | 2 +- spec/models/queries/users/filters/name_filter_spec.rb | 2 +- spec/models/queries/users/filters/status_filter_spec.rb | 2 +- spec/models/queries/users/user_query_spec.rb | 2 +- spec/models/queries/views/filters/type_filter_spec.rb | 2 +- .../queries/work_packages/columns/custom_field_column_spec.rb | 2 +- .../queries/work_packages/columns/property_column_spec.rb | 2 +- .../work_packages/columns/relation_of_type_column_spec.rb | 2 +- .../work_packages/columns/relation_to_type_column_spec.rb | 2 +- .../queries/work_packages/columns/shared_query_column_specs.rb | 2 +- .../queries/work_packages/columns/work_package_column_spec.rb | 2 +- .../queries/work_packages/filter/assigned_to_filter_spec.rb | 2 +- .../work_packages/filter/assignee_or_group_filter_spec.rb | 2 +- .../work_packages/filter/attachment_content_filter_spec.rb | 2 +- .../work_packages/filter/attachment_file_name_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/author_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/blocked_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/blocks_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/category_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/comment_filter_spec.rb | 2 +- .../queries/work_packages/filter/created_at_filter_spec.rb | 2 +- .../custom_fields/contains_text_custom_field_filter_spec.rb | 2 +- .../filter/custom_fields/custom_field_filter_spec.rb | 2 +- .../queries/work_packages/filter/dates_interval_filter_spec.rb | 2 +- .../queries/work_packages/filter/description_filter_spec.rb | 2 +- .../queries/work_packages/filter/done_ratio_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/due_date_filter_spec.rb | 2 +- .../queries/work_packages/filter/duplicated_filter_spec.rb | 2 +- .../queries/work_packages/filter/duplicates_filter_spec.rb | 2 +- .../queries/work_packages/filter/estimated_hours_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/follows_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/group_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/id_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/includes_filter_spec.rb | 2 +- .../queries/work_packages/filter/manual_sort_filter_spec.rb | 2 +- .../queries/work_packages/filter/milestone_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/parent_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/partof_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/precedes_filter_spec.rb | 2 +- .../queries/work_packages/filter/principal_loader_spec.rb | 2 +- .../models/queries/work_packages/filter/priority_filter_spec.rb | 2 +- .../work_packages/filter/project_filter_instance_spec.rb | 2 +- spec/models/queries/work_packages/filter/project_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/relates_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/required_filter_spec.rb | 2 +- .../models/queries/work_packages/filter/requires_filter_spec.rb | 2 +- .../queries/work_packages/filter/responsible_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/role_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/search_filter_spec.rb | 2 +- .../queries/work_packages/filter/start_date_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/status_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/subject_filter_spec.rb | 2 +- .../queries/work_packages/filter/subject_or_id_filter_spec.rb | 2 +- .../queries/work_packages/filter/subproject_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/type_filter_spec.rb | 2 +- .../queries/work_packages/filter/updated_at_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/version_filter_spec.rb | 2 +- spec/models/queries/work_packages/filter/watcher_filter_spec.rb | 2 +- spec/models/queries/work_packages/manual_sorting_spec.rb | 2 +- spec/models/query/default_query_spec.rb | 2 +- spec/models/query/results_cf_sorting_integration_spec.rb | 2 +- spec/models/query/results_spec.rb | 2 +- spec/models/query/results_subject_filter_integration_spec.rb | 2 +- spec/models/query/results_subproject_filter_integration_spec.rb | 2 +- spec/models/query/results_sums_integration_spec.rb | 2 +- spec/models/query/results_version_integration_spec.rb | 2 +- spec/models/query/scopes/visible_spec.rb | 2 +- spec/models/query/sort_criteria_spec.rb | 2 +- spec/models/query_spec.rb | 2 +- spec/models/relation_spec.rb | 2 +- spec/models/relations/scopes/visible_spec.rb | 2 +- spec/models/reports_services_spec.rb | 2 +- spec/models/repository/git_spec.rb | 2 +- spec/models/repository/subversion_spec.rb | 2 +- spec/models/role_spec.rb | 2 +- spec/models/sessions/active_record_sessions_spec.rb | 2 +- spec/models/sessions/sql_bypass_sessions_spec.rb | 2 +- spec/models/setting_spec.rb | 2 +- spec/models/status_spec.rb | 2 +- spec/models/system_user_spec.rb | 2 +- spec/models/token/base_token_spec.rb | 2 +- spec/models/token/hashed_token_spec.rb | 2 +- spec/models/type/attribute_groups_spec.rb | 2 +- spec/models/type_spec.rb | 2 +- spec/models/types/scopes/milestone_spec.rb | 2 +- spec/models/user_password_spec.rb | 2 +- spec/models/user_passwords/sha1_spec.rb | 2 +- spec/models/user_preference_spec.rb | 2 +- spec/models/user_spec.rb | 2 +- spec/models/users/allowed_scope_spec.rb | 2 +- spec/models/users/allowed_to_spec.rb | 2 +- spec/models/users/default_timezone_spec.rb | 2 +- spec/models/users/scopes/find_by_login_spec.rb | 2 +- spec/models/users/scopes/having_reminder_mail_to_send_spec.rb | 2 +- spec/models/users/scopes/newest_spec.rb | 2 +- spec/models/version_spec.rb | 2 +- spec/models/versions/scopes/rolled_up_spec.rb | 2 +- spec/models/versions/scopes/shared_with_spec.rb | 2 +- spec/models/watcher_spec.rb | 2 +- spec/models/wiki_content_spec.rb | 2 +- spec/models/wiki_page_spec.rb | 2 +- spec/models/wiki_redirect_spec.rb | 2 +- spec/models/wiki_spec.rb | 2 +- spec/models/work_package/aggregate_ancestors_spec.rb | 2 +- spec/models/work_package/ask_before_destruction_spec.rb | 2 +- spec/models/work_package/exporter/csv_integration_spec.rb | 2 +- spec/models/work_package/hooks_spec.rb | 2 +- spec/models/work_package/openproject_notifications_spec.rb | 2 +- spec/models/work_package/work_package_acts_as_event_spec.rb | 2 +- .../work_package/work_package_acts_as_journalized_spec.rb | 2 +- .../models/work_package/work_package_acts_as_searchable_spec.rb | 2 +- spec/models/work_package/work_package_acts_as_watchable_spec.rb | 2 +- spec/models/work_package/work_package_custom_actions_spec.rb | 2 +- spec/models/work_package/work_package_custom_fields_spec.rb | 2 +- .../work_package/work_package_multi_value_custom_fields_spec.rb | 2 +- spec/models/work_package/work_package_relations_spec.rb | 2 +- spec/models/work_package/work_package_scheduling_spec.rb | 2 +- spec/models/work_package/work_package_status_spec.rb | 2 +- spec/models/work_package/work_package_visibility_spec.rb | 2 +- spec/models/work_package_custom_field_spec.rb | 2 +- spec/models/work_package_spec.rb | 2 +- spec/models/work_packages/derived_dates_spec.rb | 2 +- spec/models/work_packages/scopes/for_scheduling_spec.rb | 2 +- spec/models/work_packages/spent_time_spec.rb | 2 +- spec/models/workflow_spec.rb | 2 +- spec/permissions/add_messages_spec.rb | 2 +- spec/permissions/copy_projects_spec.rb | 2 +- spec/permissions/delete_work_packages_spec.rb | 2 +- spec/permissions/edit_messages_spec.rb | 2 +- spec/permissions/edit_own_messages_spec.rb | 2 +- spec/permissions/edit_wiki_pages_spec.rb | 2 +- spec/permissions/export_work_packages_spec.rb | 2 +- spec/permissions/manage_forums_spec.rb | 2 +- spec/permissions/manage_news_spec.rb | 2 +- spec/permissions/manage_repositories_spec.rb | 2 +- spec/permissions/view_work_packages_spec.rb | 2 +- spec/permissions/work_packages_bulk_spec.rb | 2 +- spec/policies/query_policy_spec.rb | 2 +- spec/policies/redirect_policy_spec.rb | 2 +- spec/policies/work_package_policy_spec.rb | 2 +- spec/requests/api/v3/action_resource_spec.rb | 2 +- spec/requests/api/v3/activities_api_spec.rb | 2 +- .../requests/api/v3/activities_by_work_package_resource_spec.rb | 2 +- .../api/v3/attachments/attachment_resource_shared_examples.rb | 2 +- spec/requests/api/v3/attachments/forum_message_spec.rb | 2 +- spec/requests/api/v3/attachments/wiki_page_spec.rb | 2 +- spec/requests/api/v3/attachments/work_package_spec.rb | 2 +- spec/requests/api/v3/attachments/work_packages_export_spec.rb | 2 +- spec/requests/api/v3/attachments_spec.rb | 2 +- spec/requests/api/v3/authentication_spec.rb | 2 +- spec/requests/api/v3/backups/backups_api_spec.rb | 2 +- .../api/v3/capabilities/contexts/global_resource_spec.rb | 2 +- spec/requests/api/v3/capability_resource_spec.rb | 2 +- spec/requests/api/v3/category_resource_spec.rb | 2 +- spec/requests/api/v3/configuration_resource_spec.rb | 2 +- spec/requests/api/v3/cors_header_spec.rb | 2 +- spec/requests/api/v3/custom_actions/custom_actions_api_spec.rb | 2 +- .../api/v3/custom_options/custom_options_resource_spec.rb | 2 +- spec/requests/api/v3/groups/group_resource_spec.rb | 2 +- spec/requests/api/v3/help_texts/help_texts_resource_spec.rb | 2 +- spec/requests/api/v3/locale_spec.rb | 2 +- spec/requests/api/v3/membership_resources_spec.rb | 2 +- .../api/v3/memberships/available_projects_resource_spec.rb | 2 +- .../v3/memberships/schemas/membership_schema_resource_spec.rb | 2 +- spec/requests/api/v3/news_resource_spec.rb | 2 +- spec/requests/api/v3/posts_resource_spec.rb | 2 +- spec/requests/api/v3/principals/principals_resource_spec.rb | 2 +- spec/requests/api/v3/priority_resource_spec.rb | 2 +- spec/requests/api/v3/projects/available_assignees_api_spec.rb | 2 +- .../requests/api/v3/projects/available_parents_resource_spec.rb | 2 +- .../requests/api/v3/projects/available_responsibles_api_spec.rb | 2 +- spec/requests/api/v3/projects/create_resource_spec.rb | 2 +- spec/requests/api/v3/projects/delete_resource_spec.rb | 2 +- spec/requests/api/v3/projects/index_resource_spec.rb | 2 +- .../api/v3/projects/schemas/project_schema_resource_spec.rb | 2 +- spec/requests/api/v3/projects/show_resource_spec.rb | 2 +- .../api/v3/projects/statuses/project_status_resource_spec.rb | 2 +- spec/requests/api/v3/projects/update_resource_spec.rb | 2 +- spec/requests/api/v3/projects/version_resource_spec.rb | 2 +- .../api/v3/queries/columns/query_columns_resource_spec.rb | 2 +- spec/requests/api/v3/queries/create_query_spec.rb | 2 +- .../api/v3/queries/filters/query_filters_resource_spec.rb | 2 +- .../api/v3/queries/group_bys/query_group_bys_resource_spec.rb | 2 +- .../api/v3/queries/operators/query_operators_resource_spec.rb | 2 +- .../requests/api/v3/queries/queries_by_project_resource_spec.rb | 2 +- spec/requests/api/v3/queries/query_resource_spec.rb | 2 +- .../schemas/query_filter_instance_schema_resource_spec.rb | 2 +- .../v3/queries/schemas/query_project_schema_resource_spec.rb | 2 +- .../api/v3/queries/schemas/query_schema_resource_spec.rb | 2 +- .../api/v3/queries/sort_bys/query_sort_bys_resource_spec.rb | 2 +- spec/requests/api/v3/queries/update_query_spec.rb | 2 +- spec/requests/api/v3/rack_deflater_spec.rb | 2 +- spec/requests/api/v3/relations/relations_api_spec.rb | 2 +- spec/requests/api/v3/relations/relations_index_spec.rb | 2 +- spec/requests/api/v3/relations_resource_spec.rb | 2 +- spec/requests/api/v3/render_resource_spec.rb | 2 +- .../v3/repositories/revisions_by_work_package_resource_spec.rb | 2 +- spec/requests/api/v3/repositories/revisions_resource_spec.rb | 2 +- spec/requests/api/v3/role_resource_spec.rb | 2 +- spec/requests/api/v3/root_resource_spec.rb | 2 +- spec/requests/api/v3/status_resource_spec.rb | 2 +- spec/requests/api/v3/string_objects_resource_spec.rb | 2 +- spec/requests/api/v3/support/api_helper.rb | 2 +- spec/requests/api/v3/support/api_v3_collection_response.rb | 2 +- spec/requests/api/v3/support/authorization.rb | 2 +- spec/requests/api/v3/support/response_examples.rb | 2 +- spec/requests/api/v3/types/type_resource_spec.rb | 2 +- spec/requests/api/v3/types/types_by_project_resource_spec.rb | 2 +- spec/requests/api/v3/user/schemas/user_schema_resource_spec.rb | 2 +- spec/requests/api/v3/user/user_resource_spec.rb | 2 +- spec/requests/api/v3/user/userlock_resource_spec.rb | 2 +- .../api/v3/user_preferences/user_preferences_resource_spec.rb | 2 +- spec/requests/api/v3/version_resource_spec.rb | 2 +- .../api/v3/versions/available_projects_resource_spec.rb | 2 +- spec/requests/api/v3/versions/project_resource_spec.rb | 2 +- .../api/v3/versions/schemas/version_schema_resource_spec.rb | 2 +- spec/requests/api/v3/watcher_resource_spec.rb | 2 +- spec/requests/api/v3/wiki_pages_resource_spec.rb | 2 +- .../v3/work_packages/available_projects_on_create_api_spec.rb | 2 +- .../api/v3/work_packages/available_projects_on_edit_api_spec.rb | 2 +- .../api/v3/work_packages/available_relation_candidates_spec.rb | 2 +- spec/requests/api/v3/work_packages/create_resource_spec.rb | 2 +- spec/requests/api/v3/work_packages/delete_resource_spec.rb | 2 +- spec/requests/api/v3/work_packages/dependent_errors_spec.rb | 2 +- .../v3/work_packages/form/work_package_form_resource_spec.rb | 2 +- spec/requests/api/v3/work_packages/index_resource_spec.rb | 2 +- spec/requests/api/v3/work_packages/show_resource_spec.rb | 2 +- spec/requests/api/v3/work_packages/update_resource_spec.rb | 2 +- .../api/v3/work_packages/work_packages_schemas_resource_spec.rb | 2 +- spec/requests/auth/auth_source_sso_spec.rb | 2 +- spec/requests/auth/oauth_login_csp_spec.rb | 2 +- spec/requests/auth/token_based_access_spec.rb | 2 +- spec/requests/oauth/client_credentials_flow_spec.rb | 2 +- spec/routing/account_spec.rb | 2 +- spec/routing/activities_spec.rb | 2 +- spec/routing/admin/incoming_mails_spec.rb | 2 +- spec/routing/admin/mail_notifications_spec.rb | 2 +- spec/routing/admin_spec.rb | 2 +- spec/routing/attachments_spec.rb | 2 +- spec/routing/attribute_help_text_spec.rb | 2 +- spec/routing/categories_spec.rb | 2 +- spec/routing/custom_actions_spec.rb | 2 +- spec/routing/enterprise_routing_spec.rb | 2 +- spec/routing/enumerations_spec.rb | 2 +- spec/routing/errors_routing_spec.rb | 2 +- spec/routing/forums_routing_spec.rb | 2 +- spec/routing/groups_spec.rb | 2 +- spec/routing/help_routing_spec.rb | 2 +- spec/routing/homescreen_spec.rb | 2 +- spec/routing/journals_spec.rb | 2 +- spec/routing/members_spec.rb | 2 +- spec/routing/messages_spec.rb | 2 +- spec/routing/my_spec.rb | 2 +- spec/routing/news_comments_spec.rb | 2 +- spec/routing/news_spec.rb | 2 +- spec/routing/old_issue_2_wp_spec.rb | 2 +- spec/routing/project_routing_spec.rb | 2 +- spec/routing/project_settings_routing_spec.rb | 2 +- spec/routing/repositories_routing_spec.rb | 2 +- spec/routing/roles_spec.rb | 2 +- spec/routing/search_spec.rb | 2 +- spec/routing/settings_spec.rb | 2 +- spec/routing/short_uri_wp_spec.rb | 2 +- spec/routing/status_routing_spec.rb | 2 +- spec/routing/types_spec.rb | 2 +- spec/routing/user_memberships_routing_spec.rb | 2 +- spec/routing/users_routing_spec.rb | 2 +- spec/routing/versions_spec.rb | 2 +- spec/routing/watchers_spec.rb | 2 +- spec/routing/wiki_routing_spec.rb | 2 +- spec/routing/work_package/auto_completes_routing_spec.rb | 2 +- spec/routing/work_package/reports_routing_spec.rb | 2 +- spec/routing/work_package_bulk_spec.rb | 2 +- spec/routing/work_packages_spec.rb | 2 +- spec/routing/workflows_spec.rb | 2 +- spec/security/active_support_to_json_spec.rb | 2 +- spec/seeders/demo_data_seeder_spec.rb | 2 +- spec/seeders/setting_seeder_spec.rb | 2 +- spec/services/add_work_package_note_service_spec.rb | 2 +- spec/services/api/v3/parse_query_params_service_spec.rb | 2 +- .../services/api/v3/update_query_from_v3_params_service_spec.rb | 2 +- .../work_package_collection_from_query_params_service_spec.rb | 2 +- .../api/v3/work_package_collection_from_query_service_spec.rb | 2 +- spec/services/authorization/enterprise_service_spec.rb | 2 +- spec/services/authorization/query_transformation_spec.rb | 2 +- spec/services/authorization/query_transformations_spec.rb | 2 +- spec/services/authorization/user_allowed_query_spec.rb | 2 +- spec/services/authorization/user_allowed_service_spec.rb | 2 +- spec/services/authorization/user_global_roles_query_spec.rb | 2 +- spec/services/authorization/user_project_roles_query_spec.rb | 2 +- spec/services/backups/create_service_spec.rb | 2 +- spec/services/base/base_callable_spec.rb | 2 +- spec/services/base_services/behaves_like_create_service.rb | 2 +- spec/services/base_services/behaves_like_delete_service.rb | 2 +- spec/services/base_services/behaves_like_update_service.rb | 2 +- spec/services/create_type_service_spec.rb | 2 +- spec/services/custom_actions/update_service_spec.rb | 2 +- .../services/custom_actions/update_work_package_service_spec.rb | 2 +- spec/services/custom_fields/create_service_spec.rb | 2 +- spec/services/custom_fields/set_attributes_service_spec.rb | 2 +- spec/services/custom_fields/update_service_spec.rb | 2 +- spec/services/groups/add_users_service_integration_spec.rb | 2 +- .../groups/cleanup_inherited_roles_service_integration_spec.rb | 2 +- spec/services/groups/set_attributes_service_spec.rb | 2 +- spec/services/groups/update_roles_service_integration_spec.rb | 2 +- spec/services/groups/update_service_spec.rb | 2 +- spec/services/members/cleanup_service_integration_spec.rb | 2 +- spec/services/members/create_service_spec.rb | 2 +- spec/services/members/delete_service_spec.rb | 2 +- spec/services/members/set_attributes_service_spec.rb | 2 +- spec/services/members/update_service_spec.rb | 2 +- spec/services/messages/create_service_spec.rb | 2 +- spec/services/messages/set_attributes_service_spec.rb | 2 +- spec/services/messages/update_service_spec.rb | 2 +- .../aggregated_journal_service_integration_spec.rb | 2 +- spec/services/notifications/create_from_journal_job_shared.rb | 2 +- .../notifications/create_from_model_service_comment_spec.rb | 2 +- .../notifications/create_from_model_service_message_spec.rb | 2 +- .../notifications/create_from_model_service_news_spec.rb | 2 +- .../notifications/create_from_model_service_wiki_spec.rb | 2 +- .../create_from_model_service_work_package_spec.rb | 2 +- spec/services/notifications/create_service_intergration_spec.rb | 2 +- spec/services/notifications/create_service_spec.rb | 2 +- .../notifications/mail_service_mentioned_integration_spec.rb | 2 +- spec/services/notifications/mail_service_spec.rb | 2 +- spec/services/notifications/mentioned_journals_shared.rb | 2 +- spec/services/notifications/set_attributes_service_spec.rb | 2 +- spec/services/placeholder_users/create_service_spec.rb | 2 +- spec/services/placeholder_users/delete_service_spec.rb | 2 +- spec/services/placeholder_users/set_attributes_service_spec.rb | 2 +- spec/services/placeholder_users/update_service_spec.rb | 2 +- .../replace_references_service_call_integration_spec.rb | 2 +- spec/services/projects/copy_service_integration_spec.rb | 2 +- spec/services/projects/create_service_spec.rb | 2 +- spec/services/projects/delete_service_spec.rb | 2 +- spec/services/projects/gantt_query_generator_service_spec.rb | 2 +- spec/services/projects/schedule_deletion_service_spec.rb | 2 +- .../projects/set_attributes_service_integration_spec.rb | 2 +- spec/services/projects/set_attributes_service_spec.rb | 2 +- spec/services/projects/update_service_integration_spec.rb | 2 +- spec/services/projects/update_service_spec.rb | 2 +- spec/services/queries/create_service_spec.rb | 2 +- spec/services/queries/filter_mappper_spec.rb | 2 +- spec/services/queries/update_from_params_service_spec.rb | 2 +- spec/services/queries/update_service_spec.rb | 2 +- spec/services/relations/create_service_spec.rb | 2 +- spec/services/relations/update_service_spec.rb | 2 +- spec/services/service_result_spec.rb | 2 +- spec/services/services/create_service_spec.rb | 2 +- spec/services/shared/service_context_integration_spec.rb | 2 +- spec/services/shared_type_service.rb | 2 +- spec/services/update_query_from_params_service_spec.rb | 2 +- spec/services/update_type_service_spec.rb | 2 +- .../user_preferences/update_service_integration_spec.rb | 2 +- spec/services/user_preferences/update_service_spec.rb | 2 +- spec/services/users/delete_service_integration_spec.rb | 2 +- spec/services/users/delete_service_spec.rb | 2 +- spec/services/users/login_service_spec.rb | 2 +- spec/services/users/set_attributes_service_integration_spec.rb | 2 +- spec/services/users/set_attributes_service_spec.rb | 2 +- spec/services/wiki_pages/copy_service_integration_spec.rb | 2 +- spec/services/wiki_pages/set_attributes_service_spec.rb | 2 +- spec/services/work_packages/copy_service_integration_spec.rb | 2 +- spec/services/work_packages/create_service_integration_spec.rb | 2 +- spec/services/work_packages/delete_service_integration_spec.rb | 2 +- spec/services/work_packages/delete_service_spec.rb | 2 +- spec/services/work_packages/set_attributes_service_spec.rb | 2 +- spec/services/work_packages/set_schedule_service_spec.rb | 2 +- spec/services/work_packages/update_ancestors_service_spec.rb | 2 +- spec/services/work_packages/update_service_integration_spec.rb | 2 +- spec/services/work_packages/update_service_spec.rb | 2 +- spec/services/workflows/bulk_update_service_integration_spec.rb | 2 +- spec/support/active_record_timestamps.rb | 2 +- spec/support/angular.rb | 2 +- spec/support/api/v3/shared_available_principals_examples.rb | 2 +- .../v3/work_packages/work_package_representer_eager_loading.rb | 2 +- spec/support/authentication_helpers.rb | 2 +- spec/support/carrierwave.rb | 2 +- spec/support/clear_notification_subscriptions.rb | 2 +- spec/support/components/admin/type_configuration_form.rb | 2 +- spec/support/components/common/modal.rb | 2 +- spec/support/components/common/sidemenu.rb | 2 +- spec/support/components/confirmation_dialog.rb | 2 +- spec/support/components/html_title.rb | 2 +- spec/support/components/menu/dropdown.rb | 2 +- spec/support/components/menu/quick_add_menu.rb | 2 +- spec/support/components/password_confirmation_dialog.rb | 2 +- spec/support/components/project_include_component.rb | 2 +- spec/support/components/projects/top_menu.rb | 2 +- spec/support/components/table_pagination.rb | 2 +- spec/support/components/timelines/configuration_modal.rb | 2 +- spec/support/components/timelines/timeline_row.rb | 2 +- spec/support/components/users/invite_user_modal.rb | 2 +- spec/support/components/work_packages/activities.rb | 2 +- spec/support/components/work_packages/columns.rb | 2 +- spec/support/components/work_packages/context_menu.rb | 2 +- spec/support/components/work_packages/destroy_modal.rb | 2 +- spec/support/components/work_packages/display_representation.rb | 2 +- spec/support/components/work_packages/filters.rb | 2 +- spec/support/components/work_packages/group_by.rb | 2 +- spec/support/components/work_packages/hierarchies.rb | 2 +- spec/support/components/work_packages/query_menu.rb | 2 +- spec/support/components/work_packages/query_title.rb | 2 +- spec/support/components/work_packages/relations.rb | 2 +- spec/support/components/work_packages/settings_menu.rb | 2 +- spec/support/components/work_packages/sort_by.rb | 2 +- .../components/work_packages/table_configuration/filters.rb | 2 +- .../work_packages/table_configuration/graph_general.rb | 2 +- .../work_packages/table_configuration/highlighting.rb | 2 +- .../components/work_packages/table_configuration_modal.rb | 2 +- spec/support/enterprise_token_helper.rb | 2 +- spec/support/file_helpers.rb | 2 +- spec/support/flash.rb | 2 +- spec/support/identical_ext.rb | 2 +- spec/support/local_storage_cleanup.rb | 2 +- spec/support/matchers/be_html_eql.rb | 2 +- spec/support/matchers/has_conditional_selector.rb | 2 +- spec/support/matchers/has_focus_on.rb | 2 +- spec/support/matchers/raise_if_found.rb | 2 +- spec/support/noop_contract.rb | 2 +- spec/support/onboarding_helper.rb | 2 +- spec/support/pages/admin/custom_actions/edit.rb | 2 +- spec/support/pages/admin/custom_actions/form.rb | 2 +- spec/support/pages/admin/custom_actions/index.rb | 2 +- spec/support/pages/admin/custom_actions/new.rb | 2 +- spec/support/pages/admin/individual_principals/edit.rb | 2 +- spec/support/pages/admin/placeholder_users/index.rb | 2 +- spec/support/pages/admin/users/edit.rb | 2 +- spec/support/pages/admin/users/index.rb | 2 +- spec/support/pages/custom_fields.rb | 2 +- spec/support/pages/form_filler.rb | 2 +- spec/support/pages/groups.rb | 2 +- spec/support/pages/home.rb | 2 +- spec/support/pages/members.rb | 2 +- spec/support/pages/messages/base.rb | 2 +- spec/support/pages/messages/create.rb | 2 +- spec/support/pages/messages/index.rb | 2 +- spec/support/pages/messages/show.rb | 2 +- spec/support/pages/my/notifications.rb | 2 +- spec/support/pages/my/password_page.rb | 2 +- spec/support/pages/my/reminders.rb | 2 +- spec/support/pages/new_placeholder_user.rb | 2 +- spec/support/pages/new_user.rb | 2 +- spec/support/pages/notifications/center.rb | 2 +- spec/support/pages/notifications/settings.rb | 2 +- spec/support/pages/notifications/split_screen.rb | 2 +- spec/support/pages/page.rb | 2 +- spec/support/pages/projects/destroy.rb | 2 +- spec/support/pages/projects/index.rb | 2 +- spec/support/pages/projects/settings.rb | 2 +- spec/support/pages/reminders/settings.rb | 2 +- spec/support/pages/types/index.rb | 2 +- spec/support/pages/work_packages/abstract_work_package.rb | 2 +- .../support/pages/work_packages/abstract_work_package_create.rb | 2 +- .../work_packages/concerns/work_package_by_button_creator.rb | 2 +- .../support/pages/work_packages/embedded_work_packages_table.rb | 2 +- spec/support/pages/work_packages/full_work_package.rb | 2 +- spec/support/pages/work_packages/full_work_package_create.rb | 2 +- spec/support/pages/work_packages/split_work_package.rb | 2 +- spec/support/pages/work_packages/split_work_package_create.rb | 2 +- spec/support/pages/work_packages/work_package_card.rb | 2 +- spec/support/pages/work_packages/work_package_cards.rb | 2 +- spec/support/pages/work_packages/work_packages_table.rb | 2 +- spec/support/pages/work_packages/work_packages_timeline.rb | 2 +- spec/support/permission_specs.rb | 2 +- spec/support/puffing_billy_proxy.rb | 2 +- spec/support/queries/filters/shared_filter_examples.rb | 2 +- spec/support/queries/shared_get_individual_query_examples.rb | 2 +- spec/support/repository_helpers.rb | 2 +- spec/support/roles.rb | 2 +- spec/support/rspec_expect_it.rb | 2 +- spec/support/schedule_reminder_mails.rb | 2 +- spec/support/selector_helpers.rb | 2 +- spec/support/shared/acts_as_attachable.rb | 2 +- spec/support/shared/acts_as_watchable.rb | 2 +- spec/support/shared/as_user.rb | 2 +- spec/support/shared/become_member.rb | 2 +- spec/support/shared/clear_cache.rb | 2 +- spec/support/shared/drag_and_drop_helper_spec.rb | 2 +- spec/support/shared/forms_html.rb | 2 +- spec/support/shared/loading_indicator_saveguard.rb | 2 +- spec/support/shared/permissions.rb | 2 +- spec/support/shared/rake.rb | 2 +- spec/support/shared/scroll_into_view_helpers.rb | 2 +- spec/support/shared/selenium_workarounds.rb | 2 +- spec/support/shared/with_config.rb | 2 +- spec/support/shared/with_direct_uploads.rb | 2 +- spec/support/shared/with_ee.rb | 2 +- spec/support/shared/with_settings.rb | 2 +- spec/support/shared_let.rb | 2 +- spec/support/tempdir.rb | 2 +- spec/support/webmock.rb | 2 +- spec/support/work_packages.rb | 2 +- spec/support/work_packages/work_package_cards.rb | 2 +- spec/tasks/backup_specs.rb | 2 +- spec/views/account/login.html.erb_spec.rb | 2 +- spec/views/account/register.html.erb_spec.rb | 2 +- spec/views/admin/enterprises/_current.html.erb_spec.rb | 2 +- spec/views/admin/settings/authentication/show.html.erb_spec.rb | 2 +- spec/views/common/validation_error.html.erb_spec.rb | 2 +- spec/views/custom_styles/show.html.erb_spec.rb | 2 +- spec/views/layouts/admin.html.erb_spec.rb | 2 +- spec/views/layouts/base.html.erb_spec.rb | 2 +- spec/views/projects/settings/general/show.html.erb_spec.rb | 2 +- spec/views/repositories/stats.html.erb_spec.rb | 2 +- spec/views/users/edit.html.erb_spec.rb | 2 +- spec/views/users/index.html.erb_spec.rb | 2 +- spec/views/users/show.html.erb_spec.rb | 2 +- spec/views/wiki/new.html.erb_spec.rb | 2 +- spec/views/work_package/auto_complete/index_spec.rb | 2 +- spec/workers/application_job_spec.rb | 2 +- .../attachments/cleanup_uncontainered_job_integration_spec.rb | 2 +- spec/workers/backup_job_spec.rb | 2 +- spec/workers/copy_project_job_spec.rb | 2 +- spec/workers/extract_fulltext_job_spec.rb | 2 +- spec/workers/journals/completed_job_spec.rb | 2 +- spec/workers/mails/member_created_job_spec.rb | 2 +- spec/workers/mails/member_updated_job_spec.rb | 2 +- spec/workers/mails/reminder_job_spec.rb | 2 +- spec/workers/mails/shared/member_job.rb | 2 +- spec/workers/mails/shared/watcher_job.rb | 2 +- spec/workers/mails/watcher_added_job_spec.rb | 2 +- spec/workers/mails/watcher_removed_job_spec.rb | 2 +- spec/workers/notifications/group_member_altered_job_spec.rb | 2 +- spec/workers/notifications/schedule_reminder_mails_job_spec.rb | 2 +- spec/workers/notifications/workflow_job_spec.rb | 2 +- spec/workers/principals/delete_job_integration_spec.rb | 2 +- spec/workers/projects/reorder_children_job_integration_spec.rb | 2 +- spec/workers/scm/create_local_repository_job_spec.rb | 2 +- spec/workers/user_job_spec.rb | 2 +- .../work_packages/exports/export_job_integration_spec.rb | 2 +- spec/workers/work_packages/exports/export_job_spec.rb | 2 +- spec_legacy/fixtures/attachments.yml | 2 +- spec_legacy/fixtures/categories.yml | 2 +- spec_legacy/fixtures/changes.yml | 2 +- spec_legacy/fixtures/changesets.yml | 2 +- spec_legacy/fixtures/comments.yml | 2 +- spec_legacy/fixtures/custom_fields.yml | 2 +- spec_legacy/fixtures/custom_fields_projects.yml | 2 +- spec_legacy/fixtures/custom_fields_types.yml | 2 +- spec_legacy/fixtures/custom_options.yml | 2 +- spec_legacy/fixtures/custom_values.yml | 2 +- spec_legacy/fixtures/enabled_modules.yml | 2 +- spec_legacy/fixtures/enumerations.yml | 2 +- spec_legacy/fixtures/files/060719210727_source.rb | 2 +- spec_legacy/fixtures/forums.yml | 2 +- spec_legacy/fixtures/group_users.yml | 2 +- spec_legacy/fixtures/member_roles.yml | 2 +- spec_legacy/fixtures/members.yml | 2 +- spec_legacy/fixtures/menu_items.yml | 2 +- spec_legacy/fixtures/messages.yml | 2 +- spec_legacy/fixtures/news.yml | 2 +- spec_legacy/fixtures/projects.yml | 2 +- spec_legacy/fixtures/projects_types.yml | 2 +- spec_legacy/fixtures/queries.yml | 2 +- spec_legacy/fixtures/relations.yml | 2 +- spec_legacy/fixtures/repositories.yml | 2 +- spec_legacy/fixtures/role_permissions.yml | 2 +- spec_legacy/fixtures/roles.yml | 2 +- spec_legacy/fixtures/statuses.yml | 2 +- spec_legacy/fixtures/time_entries.yml | 2 +- spec_legacy/fixtures/tokens.yml | 2 +- spec_legacy/fixtures/types.yml | 2 +- spec_legacy/fixtures/user_passwords.yml | 2 +- spec_legacy/fixtures/users.yml | 2 +- spec_legacy/fixtures/versions.yml | 2 +- spec_legacy/fixtures/watchers.yml | 2 +- spec_legacy/fixtures/wiki_contents.yml | 2 +- spec_legacy/fixtures/wiki_pages.yml | 2 +- spec_legacy/fixtures/wikis.yml | 2 +- spec_legacy/fixtures/work_packages.yml | 2 +- spec_legacy/fixtures/workflows.yml | 2 +- spec_legacy/functional/roles_controller_spec.rb | 2 +- spec_legacy/functional/wiki_controller_spec.rb | 2 +- spec_legacy/functional/workflows_controller_spec.rb | 2 +- spec_legacy/legacy_spec_helper.rb | 2 +- spec_legacy/support/legacy_assertions.rb | 2 +- spec_legacy/support/legacy_file_helpers.rb | 2 +- spec_legacy/unit/comment_spec.rb | 2 +- spec_legacy/unit/custom_value_spec.rb | 2 +- spec_legacy/unit/enumeration_spec.rb | 2 +- spec_legacy/unit/helpers/sort_helper_spec.rb | 2 +- spec_legacy/unit/lib/redmine/i18n_spec.rb | 2 +- spec_legacy/unit/lib/redmine/menu_manager/mapper_spec.rb | 2 +- spec_legacy/unit/lib/redmine/menu_manager/menu_helper_spec.rb | 2 +- spec_legacy/unit/lib/redmine/menu_manager/menu_item_spec.rb | 2 +- spec_legacy/unit/lib/redmine/plugin_spec.rb | 2 +- spec_legacy/unit/lib/redmine/unified_diff_spec.rb | 2 +- spec_legacy/unit/lib/redmine_spec.rb | 2 +- spec_legacy/unit/mail_handler_spec.rb | 2 +- spec_legacy/unit/project_spec.rb | 2 +- spec_legacy/unit/role_spec.rb | 2 +- spec_legacy/unit/search_spec.rb | 2 +- spec_legacy/unit/user_spec.rb | 2 +- spec_legacy/unit/version_spec.rb | 2 +- spec_legacy/unit/wiki_page_spec.rb | 2 +- 6168 files changed, 6168 insertions(+), 6168 deletions(-) diff --git a/.gitignore b/.gitignore index 902ce45be0..ccb45a8b17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/COPYRIGHT b/COPYRIGHT index 6d4c802edc..0635c33b83 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,6 +1,6 @@ OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/COPYRIGHT_short b/COPYRIGHT_short index 75d677bc38..1ea2cdaa17 100644 --- a/COPYRIGHT_short +++ b/COPYRIGHT_short @@ -1,5 +1,5 @@ OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/Gemfile b/Gemfile index 0194fd7f63..a3b4dfa60c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/Rakefile b/Rakefile index 7d137a36e1..421db02e37 100755 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ #!/usr/bin/env rake #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/cells/versions/row_cell.rb b/app/cells/versions/row_cell.rb index f00bd00896..e7d750b604 100644 --- a/app/cells/versions/row_cell.rb +++ b/app/cells/versions/row_cell.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/admin_only_contract.rb b/app/contracts/admin_only_contract.rb index f2d55cec89..ab61700400 100644 --- a/app/contracts/admin_only_contract.rb +++ b/app/contracts/admin_only_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attachments/create_contract.rb b/app/contracts/attachments/create_contract.rb index 8dccd8fb01..ae94dbd695 100644 --- a/app/contracts/attachments/create_contract.rb +++ b/app/contracts/attachments/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attachments/delete_contract.rb b/app/contracts/attachments/delete_contract.rb index 0384be7d6f..2fa81b5e69 100644 --- a/app/contracts/attachments/delete_contract.rb +++ b/app/contracts/attachments/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attachments/prepare_upload_contract.rb b/app/contracts/attachments/prepare_upload_contract.rb index fee24e5156..184b542698 100644 --- a/app/contracts/attachments/prepare_upload_contract.rb +++ b/app/contracts/attachments/prepare_upload_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attachments/validate_replacements.rb b/app/contracts/attachments/validate_replacements.rb index c2b6aa3d4e..f98910bf66 100644 --- a/app/contracts/attachments/validate_replacements.rb +++ b/app/contracts/attachments/validate_replacements.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attribute_help_texts/base_contract.rb b/app/contracts/attribute_help_texts/base_contract.rb index c0dc3dae7f..4c71668352 100644 --- a/app/contracts/attribute_help_texts/base_contract.rb +++ b/app/contracts/attribute_help_texts/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attribute_help_texts/create_contract.rb b/app/contracts/attribute_help_texts/create_contract.rb index 8618103b9c..a9d5d3908e 100644 --- a/app/contracts/attribute_help_texts/create_contract.rb +++ b/app/contracts/attribute_help_texts/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/attribute_help_texts/update_contract.rb b/app/contracts/attribute_help_texts/update_contract.rb index 0a5c4e416a..5750ba25ea 100644 --- a/app/contracts/attribute_help_texts/update_contract.rb +++ b/app/contracts/attribute_help_texts/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/authentication/omniauth_auth_hash_contract.rb b/app/contracts/authentication/omniauth_auth_hash_contract.rb index 05d977d0c6..6d01e91088 100644 --- a/app/contracts/authentication/omniauth_auth_hash_contract.rb +++ b/app/contracts/authentication/omniauth_auth_hash_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/backups/create_contract.rb b/app/contracts/backups/create_contract.rb index 41c4f8c7ab..c9167c91c1 100644 --- a/app/contracts/backups/create_contract.rb +++ b/app/contracts/backups/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/base_contract.rb b/app/contracts/base_contract.rb index 0588682088..00e1964f10 100644 --- a/app/contracts/base_contract.rb +++ b/app/contracts/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/concerns/assignable_custom_field_values.rb b/app/contracts/concerns/assignable_custom_field_values.rb index 95d4538602..e4e09fd81b 100644 --- a/app/contracts/concerns/assignable_custom_field_values.rb +++ b/app/contracts/concerns/assignable_custom_field_values.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/concerns/requires_admin_guard.rb b/app/contracts/concerns/requires_admin_guard.rb index 9271d75e3e..cc35f3956c 100644 --- a/app/contracts/concerns/requires_admin_guard.rb +++ b/app/contracts/concerns/requires_admin_guard.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/concerns/requires_enterprise_guard.rb b/app/contracts/concerns/requires_enterprise_guard.rb index 9ec8b0b010..a297763bcb 100644 --- a/app/contracts/concerns/requires_enterprise_guard.rb +++ b/app/contracts/concerns/requires_enterprise_guard.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/concerns/single_table_inheritance_model_contract.rb b/app/contracts/concerns/single_table_inheritance_model_contract.rb index bb7d723f4e..f21862c8ca 100644 --- a/app/contracts/concerns/single_table_inheritance_model_contract.rb +++ b/app/contracts/concerns/single_table_inheritance_model_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/concerns/unchanged_project.rb b/app/contracts/concerns/unchanged_project.rb index 1b44c09c9e..71cdb7d7a9 100644 --- a/app/contracts/concerns/unchanged_project.rb +++ b/app/contracts/concerns/unchanged_project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/custom_actions/cu_contract.rb b/app/contracts/custom_actions/cu_contract.rb index ef988b6ac3..8ba8fb2c10 100644 --- a/app/contracts/custom_actions/cu_contract.rb +++ b/app/contracts/custom_actions/cu_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/custom_actions/execute_contract.rb b/app/contracts/custom_actions/execute_contract.rb index 14ecd251d3..7f3c0b61e8 100644 --- a/app/contracts/custom_actions/execute_contract.rb +++ b/app/contracts/custom_actions/execute_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/custom_fields/base_contract.rb b/app/contracts/custom_fields/base_contract.rb index 315e7b93b7..4bb1c0125f 100644 --- a/app/contracts/custom_fields/base_contract.rb +++ b/app/contracts/custom_fields/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/custom_fields/create_contract.rb b/app/contracts/custom_fields/create_contract.rb index 506f6b9dc9..47ac493349 100644 --- a/app/contracts/custom_fields/create_contract.rb +++ b/app/contracts/custom_fields/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/custom_fields/update_contract.rb b/app/contracts/custom_fields/update_contract.rb index 5a41c1264f..ad9c02766e 100644 --- a/app/contracts/custom_fields/update_contract.rb +++ b/app/contracts/custom_fields/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/delete_contract.rb b/app/contracts/delete_contract.rb index 0f1f09dc5b..a15627d5ac 100644 --- a/app/contracts/delete_contract.rb +++ b/app/contracts/delete_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/empty_contract.rb b/app/contracts/empty_contract.rb index 9c5c34c35e..24062c0bcd 100644 --- a/app/contracts/empty_contract.rb +++ b/app/contracts/empty_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/groups/base_contract.rb b/app/contracts/groups/base_contract.rb index d320c63fd5..133b021bf9 100644 --- a/app/contracts/groups/base_contract.rb +++ b/app/contracts/groups/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/groups/create_contract.rb b/app/contracts/groups/create_contract.rb index 18fe75e59b..4f9801adea 100644 --- a/app/contracts/groups/create_contract.rb +++ b/app/contracts/groups/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/groups/delete_contract.rb b/app/contracts/groups/delete_contract.rb index a013f09af9..8d073e26bd 100644 --- a/app/contracts/groups/delete_contract.rb +++ b/app/contracts/groups/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/groups/update_contract.rb b/app/contracts/groups/update_contract.rb index cd3b674433..6d51325a4e 100644 --- a/app/contracts/groups/update_contract.rb +++ b/app/contracts/groups/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/journals/update_contract.rb b/app/contracts/journals/update_contract.rb index ecae9844bf..a49b480649 100644 --- a/app/contracts/journals/update_contract.rb +++ b/app/contracts/journals/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/members/base_contract.rb b/app/contracts/members/base_contract.rb index 131d5a95ec..0a8dd52c4b 100644 --- a/app/contracts/members/base_contract.rb +++ b/app/contracts/members/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/members/create_contract.rb b/app/contracts/members/create_contract.rb index e358624d79..e078a32235 100644 --- a/app/contracts/members/create_contract.rb +++ b/app/contracts/members/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/members/delete_contract.rb b/app/contracts/members/delete_contract.rb index 7fe3ad0663..6b113e4ee1 100644 --- a/app/contracts/members/delete_contract.rb +++ b/app/contracts/members/delete_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/members/update_contract.rb b/app/contracts/members/update_contract.rb index 898a9d7c87..8595a8304a 100644 --- a/app/contracts/members/update_contract.rb +++ b/app/contracts/members/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/messages/base_contract.rb b/app/contracts/messages/base_contract.rb index 7cbc8fc8bc..f6980656dd 100644 --- a/app/contracts/messages/base_contract.rb +++ b/app/contracts/messages/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/messages/create_contract.rb b/app/contracts/messages/create_contract.rb index c8e4b99203..d163c2c917 100644 --- a/app/contracts/messages/create_contract.rb +++ b/app/contracts/messages/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/messages/update_contract.rb b/app/contracts/messages/update_contract.rb index 11d216f0eb..e8287b71e2 100644 --- a/app/contracts/messages/update_contract.rb +++ b/app/contracts/messages/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/model_contract.rb b/app/contracts/model_contract.rb index dab548fa1b..a01ab1c280 100644 --- a/app/contracts/model_contract.rb +++ b/app/contracts/model_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/notifications/create_contract.rb b/app/contracts/notifications/create_contract.rb index 3211d0fd11..7194bebbf6 100644 --- a/app/contracts/notifications/create_contract.rb +++ b/app/contracts/notifications/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/oauth/application_contract.rb b/app/contracts/oauth/application_contract.rb index 4ab65d3363..1d59aa7b34 100644 --- a/app/contracts/oauth/application_contract.rb +++ b/app/contracts/oauth/application_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/params_contract.rb b/app/contracts/params_contract.rb index 849b7d5d3b..18df7e2905 100644 --- a/app/contracts/params_contract.rb +++ b/app/contracts/params_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/placeholder_users/base_contract.rb b/app/contracts/placeholder_users/base_contract.rb index b655a8c458..767c73903f 100644 --- a/app/contracts/placeholder_users/base_contract.rb +++ b/app/contracts/placeholder_users/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/placeholder_users/create_contract.rb b/app/contracts/placeholder_users/create_contract.rb index 7f04b6ed93..71712ee662 100644 --- a/app/contracts/placeholder_users/create_contract.rb +++ b/app/contracts/placeholder_users/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/placeholder_users/delete_contract.rb b/app/contracts/placeholder_users/delete_contract.rb index 0e9e9838a6..c5038c6a03 100644 --- a/app/contracts/placeholder_users/delete_contract.rb +++ b/app/contracts/placeholder_users/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/placeholder_users/update_contract.rb b/app/contracts/placeholder_users/update_contract.rb index 3885700f2b..4090b308f8 100644 --- a/app/contracts/placeholder_users/update_contract.rb +++ b/app/contracts/placeholder_users/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/archive_contract.rb b/app/contracts/projects/archive_contract.rb index 2a3a90b80e..4843a5f489 100644 --- a/app/contracts/projects/archive_contract.rb +++ b/app/contracts/projects/archive_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/archiver.rb b/app/contracts/projects/archiver.rb index ee37738230..43ae58a213 100644 --- a/app/contracts/projects/archiver.rb +++ b/app/contracts/projects/archiver.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/base_contract.rb b/app/contracts/projects/base_contract.rb index ba0d6f2b12..fd456f01b6 100644 --- a/app/contracts/projects/base_contract.rb +++ b/app/contracts/projects/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/copy_contract.rb b/app/contracts/projects/copy_contract.rb index 6f067a2bdf..88f7d4ac0e 100644 --- a/app/contracts/projects/copy_contract.rb +++ b/app/contracts/projects/copy_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/create_contract.rb b/app/contracts/projects/create_contract.rb index 648587f803..05932fb28d 100644 --- a/app/contracts/projects/create_contract.rb +++ b/app/contracts/projects/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/delete_contract.rb b/app/contracts/projects/delete_contract.rb index 05b5a038fa..d9ad66e4b3 100644 --- a/app/contracts/projects/delete_contract.rb +++ b/app/contracts/projects/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/enabled_modules_contract.rb b/app/contracts/projects/enabled_modules_contract.rb index 12e2853294..3ac89fac5c 100644 --- a/app/contracts/projects/enabled_modules_contract.rb +++ b/app/contracts/projects/enabled_modules_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/unarchive_contract.rb b/app/contracts/projects/unarchive_contract.rb index e29b30ddc2..b2b601576b 100644 --- a/app/contracts/projects/unarchive_contract.rb +++ b/app/contracts/projects/unarchive_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/projects/update_contract.rb b/app/contracts/projects/update_contract.rb index c1a338757a..c90efb895d 100644 --- a/app/contracts/projects/update_contract.rb +++ b/app/contracts/projects/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/queries/base_contract.rb b/app/contracts/queries/base_contract.rb index ef972885e6..ae8fdcbe9b 100644 --- a/app/contracts/queries/base_contract.rb +++ b/app/contracts/queries/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/queries/copy_contract.rb b/app/contracts/queries/copy_contract.rb index 1988f71fb2..6822f0d2c9 100644 --- a/app/contracts/queries/copy_contract.rb +++ b/app/contracts/queries/copy_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/queries/create_contract.rb b/app/contracts/queries/create_contract.rb index a4014ae083..40d6987852 100644 --- a/app/contracts/queries/create_contract.rb +++ b/app/contracts/queries/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/queries/update_contract.rb b/app/contracts/queries/update_contract.rb index bb01f1c5a0..5454ef7ec1 100644 --- a/app/contracts/queries/update_contract.rb +++ b/app/contracts/queries/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/queries/update_form_contract.rb b/app/contracts/queries/update_form_contract.rb index d38e632cff..1cb153fac2 100644 --- a/app/contracts/queries/update_form_contract.rb +++ b/app/contracts/queries/update_form_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/relations/base_contract.rb b/app/contracts/relations/base_contract.rb index 7fa8ecc416..0191d9a389 100644 --- a/app/contracts/relations/base_contract.rb +++ b/app/contracts/relations/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/relations/create_contract.rb b/app/contracts/relations/create_contract.rb index 3b76b10594..437707a558 100644 --- a/app/contracts/relations/create_contract.rb +++ b/app/contracts/relations/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/relations/delete_contract.rb b/app/contracts/relations/delete_contract.rb index 41109e8e6e..f33c33d28f 100644 --- a/app/contracts/relations/delete_contract.rb +++ b/app/contracts/relations/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/relations/update_contract.rb b/app/contracts/relations/update_contract.rb index 578a451e1e..6a0ba43f42 100644 --- a/app/contracts/relations/update_contract.rb +++ b/app/contracts/relations/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/roles/base_contract.rb b/app/contracts/roles/base_contract.rb index 62d161aa19..6f109215eb 100644 --- a/app/contracts/roles/base_contract.rb +++ b/app/contracts/roles/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/roles/create_contract.rb b/app/contracts/roles/create_contract.rb index cccc8b57ae..2b98080dff 100644 --- a/app/contracts/roles/create_contract.rb +++ b/app/contracts/roles/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/roles/update_contract.rb b/app/contracts/roles/update_contract.rb index 08beee45ab..ee5731cb7d 100644 --- a/app/contracts/roles/update_contract.rb +++ b/app/contracts/roles/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/settings/update_contract.rb b/app/contracts/settings/update_contract.rb index 6865a9e521..87b8d7a5f3 100644 --- a/app/contracts/settings/update_contract.rb +++ b/app/contracts/settings/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/types/base_contract.rb b/app/contracts/types/base_contract.rb index 1b81019e49..3facf717a3 100644 --- a/app/contracts/types/base_contract.rb +++ b/app/contracts/types/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/user_preferences/base_contract.rb b/app/contracts/user_preferences/base_contract.rb index 6cbbb0e891..41ea889100 100644 --- a/app/contracts/user_preferences/base_contract.rb +++ b/app/contracts/user_preferences/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/user_preferences/params_contract.rb b/app/contracts/user_preferences/params_contract.rb index af1d95a1ff..681b0b617a 100644 --- a/app/contracts/user_preferences/params_contract.rb +++ b/app/contracts/user_preferences/params_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/user_preferences/update_contract.rb b/app/contracts/user_preferences/update_contract.rb index 481cc9ca2b..0a6ac457ad 100644 --- a/app/contracts/user_preferences/update_contract.rb +++ b/app/contracts/user_preferences/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/users/base_contract.rb b/app/contracts/users/base_contract.rb index e5779507db..8fb4bd9b4b 100644 --- a/app/contracts/users/base_contract.rb +++ b/app/contracts/users/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/users/create_contract.rb b/app/contracts/users/create_contract.rb index 1b4ddab137..489bd0cd05 100644 --- a/app/contracts/users/create_contract.rb +++ b/app/contracts/users/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/users/delete_contract.rb b/app/contracts/users/delete_contract.rb index e609d30909..34df307748 100644 --- a/app/contracts/users/delete_contract.rb +++ b/app/contracts/users/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/users/update_contract.rb b/app/contracts/users/update_contract.rb index f274f116e9..95d458c323 100644 --- a/app/contracts/users/update_contract.rb +++ b/app/contracts/users/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/versions/base_contract.rb b/app/contracts/versions/base_contract.rb index 21b6b67c9d..70c2cd8473 100644 --- a/app/contracts/versions/base_contract.rb +++ b/app/contracts/versions/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/versions/create_contract.rb b/app/contracts/versions/create_contract.rb index 1336bccd5f..871dea95d1 100644 --- a/app/contracts/versions/create_contract.rb +++ b/app/contracts/versions/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/versions/delete_contract.rb b/app/contracts/versions/delete_contract.rb index 8a44f60b19..1b8a73e31e 100644 --- a/app/contracts/versions/delete_contract.rb +++ b/app/contracts/versions/delete_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/versions/update_contract.rb b/app/contracts/versions/update_contract.rb index dddc4fff76..8a5ec4151c 100644 --- a/app/contracts/versions/update_contract.rb +++ b/app/contracts/versions/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/views/base_contract.rb b/app/contracts/views/base_contract.rb index f51f8ad224..61a57d32ef 100644 --- a/app/contracts/views/base_contract.rb +++ b/app/contracts/views/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/views/create_contract.rb b/app/contracts/views/create_contract.rb index 4a10d934e4..f5b7c9b013 100644 --- a/app/contracts/views/create_contract.rb +++ b/app/contracts/views/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/views/update_contract.rb b/app/contracts/views/update_contract.rb index cbd25d2230..892b1e1e33 100644 --- a/app/contracts/views/update_contract.rb +++ b/app/contracts/views/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/wiki_pages/base_contract.rb b/app/contracts/wiki_pages/base_contract.rb index 3ab5355b6b..a1db7a91e1 100644 --- a/app/contracts/wiki_pages/base_contract.rb +++ b/app/contracts/wiki_pages/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/wiki_pages/copy_contract.rb b/app/contracts/wiki_pages/copy_contract.rb index d278195ec0..c9ed822483 100644 --- a/app/contracts/wiki_pages/copy_contract.rb +++ b/app/contracts/wiki_pages/copy_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/wiki_pages/create_contract.rb b/app/contracts/wiki_pages/create_contract.rb index 2ca29044f0..6b8b204162 100644 --- a/app/contracts/wiki_pages/create_contract.rb +++ b/app/contracts/wiki_pages/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/wiki_pages/update_contract.rb b/app/contracts/wiki_pages/update_contract.rb index 086b737dfa..dc190e6081 100644 --- a/app/contracts/wiki_pages/update_contract.rb +++ b/app/contracts/wiki_pages/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/base_contract.rb b/app/contracts/work_packages/base_contract.rb index b4cd766d2c..5bd93663a1 100644 --- a/app/contracts/work_packages/base_contract.rb +++ b/app/contracts/work_packages/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/copy_project_contract.rb b/app/contracts/work_packages/copy_project_contract.rb index 5270a9cdef..db4f5e5d6b 100644 --- a/app/contracts/work_packages/copy_project_contract.rb +++ b/app/contracts/work_packages/copy_project_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/create_contract.rb b/app/contracts/work_packages/create_contract.rb index de2201f11e..f962347d0a 100644 --- a/app/contracts/work_packages/create_contract.rb +++ b/app/contracts/work_packages/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/create_note_contract.rb b/app/contracts/work_packages/create_note_contract.rb index e336e904b7..ac7e675485 100644 --- a/app/contracts/work_packages/create_note_contract.rb +++ b/app/contracts/work_packages/create_note_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/delete_contract.rb b/app/contracts/work_packages/delete_contract.rb index d408b31016..eb31dcf17d 100644 --- a/app/contracts/work_packages/delete_contract.rb +++ b/app/contracts/work_packages/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/skip_authorization_checks.rb b/app/contracts/work_packages/skip_authorization_checks.rb index ac2ef83f2c..1976a24870 100644 --- a/app/contracts/work_packages/skip_authorization_checks.rb +++ b/app/contracts/work_packages/skip_authorization_checks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/contracts/work_packages/update_contract.rb b/app/contracts/work_packages/update_contract.rb index b6bd58471c..beb50b9c99 100644 --- a/app/contracts/work_packages/update_contract.rb +++ b/app/contracts/work_packages/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index 80b852b5ad..f99d361514 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/activities_controller.rb b/app/controllers/activities_controller.rb index ea3ed610d9..6994cbc42b 100644 --- a/app/controllers/activities_controller.rb +++ b/app/controllers/activities_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/backups_controller.rb b/app/controllers/admin/backups_controller.rb index 042d8b8bde..497c4bc85d 100644 --- a/app/controllers/admin/backups_controller.rb +++ b/app/controllers/admin/backups_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/api_settings_controller.rb b/app/controllers/admin/settings/api_settings_controller.rb index 9514812bcd..1fb0d08618 100644 --- a/app/controllers/admin/settings/api_settings_controller.rb +++ b/app/controllers/admin/settings/api_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/attachments_settings_controller.rb b/app/controllers/admin/settings/attachments_settings_controller.rb index d340e26067..40d7331565 100644 --- a/app/controllers/admin/settings/attachments_settings_controller.rb +++ b/app/controllers/admin/settings/attachments_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/authentication_settings_controller.rb b/app/controllers/admin/settings/authentication_settings_controller.rb index dd39c396f1..1c662e8b06 100644 --- a/app/controllers/admin/settings/authentication_settings_controller.rb +++ b/app/controllers/admin/settings/authentication_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/display_settings_controller.rb b/app/controllers/admin/settings/display_settings_controller.rb index 75b5c257a9..c5242ada96 100644 --- a/app/controllers/admin/settings/display_settings_controller.rb +++ b/app/controllers/admin/settings/display_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/general_settings_controller.rb b/app/controllers/admin/settings/general_settings_controller.rb index 714bfb2b2b..d8e534aa31 100644 --- a/app/controllers/admin/settings/general_settings_controller.rb +++ b/app/controllers/admin/settings/general_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/incoming_mails_settings_controller.rb b/app/controllers/admin/settings/incoming_mails_settings_controller.rb index a46fada764..88d6f36bc4 100644 --- a/app/controllers/admin/settings/incoming_mails_settings_controller.rb +++ b/app/controllers/admin/settings/incoming_mails_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/mail_notifications_settings_controller.rb b/app/controllers/admin/settings/mail_notifications_settings_controller.rb index 68fa82bbb7..305baee12f 100644 --- a/app/controllers/admin/settings/mail_notifications_settings_controller.rb +++ b/app/controllers/admin/settings/mail_notifications_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/notifications_settings_controller.rb b/app/controllers/admin/settings/notifications_settings_controller.rb index 9869ba1cb0..c9de329fbf 100644 --- a/app/controllers/admin/settings/notifications_settings_controller.rb +++ b/app/controllers/admin/settings/notifications_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/projects_settings_controller.rb b/app/controllers/admin/settings/projects_settings_controller.rb index 9f7c4c581c..fa0c31e81d 100644 --- a/app/controllers/admin/settings/projects_settings_controller.rb +++ b/app/controllers/admin/settings/projects_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/repositories_settings_controller.rb b/app/controllers/admin/settings/repositories_settings_controller.rb index f8f145575a..04c8da87f3 100644 --- a/app/controllers/admin/settings/repositories_settings_controller.rb +++ b/app/controllers/admin/settings/repositories_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/users_settings_controller.rb b/app/controllers/admin/settings/users_settings_controller.rb index 7541d45ee6..e5a6b18a91 100644 --- a/app/controllers/admin/settings/users_settings_controller.rb +++ b/app/controllers/admin/settings/users_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings/work_packages_settings_controller.rb b/app/controllers/admin/settings/work_packages_settings_controller.rb index b01fd9e9f1..1b7736a23b 100644 --- a/app/controllers/admin/settings/work_packages_settings_controller.rb +++ b/app/controllers/admin/settings/work_packages_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin/settings_controller.rb b/app/controllers/admin/settings_controller.rb index 6f4b8b3273..0d643416e7 100644 --- a/app/controllers/admin/settings_controller.rb +++ b/app/controllers/admin/settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index fd6fec42e5..188ed48c22 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/angular_controller.rb b/app/controllers/angular_controller.rb index 5f8712e823..36b22c061e 100644 --- a/app/controllers/angular_controller.rb +++ b/app/controllers/angular_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/api_docs_controller.rb b/app/controllers/api_docs_controller.rb index 3197f17a49..e86c277759 100644 --- a/app/controllers/api_docs_controller.rb +++ b/app/controllers/api_docs_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 3de4ba826d..6c0e09624c 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/attribute_help_texts_controller.rb b/app/controllers/attribute_help_texts_controller.rb index 7d3e463d06..d143c925eb 100644 --- a/app/controllers/attribute_help_texts_controller.rb +++ b/app/controllers/attribute_help_texts_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/auth_sources_controller.rb b/app/controllers/auth_sources_controller.rb index c83a9616c1..b522cc726e 100644 --- a/app/controllers/auth_sources_controller.rb +++ b/app/controllers/auth_sources_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/categories_controller.rb b/app/controllers/categories_controller.rb index d426b30265..892bce0134 100644 --- a/app/controllers/categories_controller.rb +++ b/app/controllers/categories_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/colors_controller.rb b/app/controllers/colors_controller.rb index 03f35f16f7..4d9344c49e 100644 --- a/app/controllers/colors_controller.rb +++ b/app/controllers/colors_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/current_user.rb b/app/controllers/concerns/accounts/current_user.rb index 5c4e56f564..49d068af4d 100644 --- a/app/controllers/concerns/accounts/current_user.rb +++ b/app/controllers/concerns/accounts/current_user.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/omniauth_login.rb b/app/controllers/concerns/accounts/omniauth_login.rb index f693dc3522..ed3f0a6c55 100644 --- a/app/controllers/concerns/accounts/omniauth_login.rb +++ b/app/controllers/concerns/accounts/omniauth_login.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/redirect_after_login.rb b/app/controllers/concerns/accounts/redirect_after_login.rb index 9dc7bd5570..45a44db090 100644 --- a/app/controllers/concerns/accounts/redirect_after_login.rb +++ b/app/controllers/concerns/accounts/redirect_after_login.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/user_consent.rb b/app/controllers/concerns/accounts/user_consent.rb index ae6467e420..40ce563ca8 100644 --- a/app/controllers/concerns/accounts/user_consent.rb +++ b/app/controllers/concerns/accounts/user_consent.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/user_limits.rb b/app/controllers/concerns/accounts/user_limits.rb index 4bf343ddeb..e6675de6d9 100644 --- a/app/controllers/concerns/accounts/user_limits.rb +++ b/app/controllers/concerns/accounts/user_limits.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/accounts/user_password_change.rb b/app/controllers/concerns/accounts/user_password_change.rb index 0fce95224c..00e1e37b6f 100644 --- a/app/controllers/concerns/accounts/user_password_change.rb +++ b/app/controllers/concerns/accounts/user_password_change.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/attachable_service_call.rb b/app/controllers/concerns/attachable_service_call.rb index fc15bbab7d..bc1c3da2ed 100644 --- a/app/controllers/concerns/attachable_service_call.rb +++ b/app/controllers/concerns/attachable_service_call.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/layout.rb b/app/controllers/concerns/layout.rb index 0aef0e2411..7fb75715ac 100644 --- a/app/controllers/concerns/layout.rb +++ b/app/controllers/concerns/layout.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/password_confirmation.rb b/app/controllers/concerns/password_confirmation.rb index 5197b13415..8c6b23dcc9 100644 --- a/app/controllers/concerns/password_confirmation.rb +++ b/app/controllers/concerns/password_confirmation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/concerns/user_invitation.rb b/app/controllers/concerns/user_invitation.rb index 75da3f9c67..bdd6823095 100644 --- a/app/controllers/concerns/user_invitation.rb +++ b/app/controllers/concerns/user_invitation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/custom_actions_controller.rb b/app/controllers/custom_actions_controller.rb index a0554ef45d..e5c7c21039 100644 --- a/app/controllers/custom_actions_controller.rb +++ b/app/controllers/custom_actions_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb index 9c0bf8e6e3..3678e0487c 100644 --- a/app/controllers/custom_fields_controller.rb +++ b/app/controllers/custom_fields_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/custom_styles_controller.rb b/app/controllers/custom_styles_controller.rb index fba85e7aa4..70c023b491 100644 --- a/app/controllers/custom_styles_controller.rb +++ b/app/controllers/custom_styles_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/enterprises_controller.rb b/app/controllers/enterprises_controller.rb index 8bd8594898..1e2726c22c 100644 --- a/app/controllers/enterprises_controller.rb +++ b/app/controllers/enterprises_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/enumerations_controller.rb b/app/controllers/enumerations_controller.rb index b62accb440..b389c4ed6b 100644 --- a/app/controllers/enumerations_controller.rb +++ b/app/controllers/enumerations_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/forums_controller.rb b/app/controllers/forums_controller.rb index 239f19ce26..5a6e005639 100644 --- a/app/controllers/forums_controller.rb +++ b/app/controllers/forums_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index b10a69d167..45477671cb 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb index 36e34edd43..f654496dbd 100644 --- a/app/controllers/help_controller.rb +++ b/app/controllers/help_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/highlighting_controller.rb b/app/controllers/highlighting_controller.rb index 44edeb4e08..ef34323ef2 100644 --- a/app/controllers/highlighting_controller.rb +++ b/app/controllers/highlighting_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/homescreen_controller.rb b/app/controllers/homescreen_controller.rb index 4aac6589e2..dabdfa1080 100644 --- a/app/controllers/homescreen_controller.rb +++ b/app/controllers/homescreen_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/journals_controller.rb b/app/controllers/journals_controller.rb index 83eb97d875..5edbcedd18 100644 --- a/app/controllers/journals_controller.rb +++ b/app/controllers/journals_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/ldap_auth_sources_controller.rb b/app/controllers/ldap_auth_sources_controller.rb index 791e995e50..eaf0ff2b26 100644 --- a/app/controllers/ldap_auth_sources_controller.rb +++ b/app/controllers/ldap_auth_sources_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/members_controller.rb b/app/controllers/members_controller.rb index 8842fce1a7..5fcdb73ad3 100644 --- a/app/controllers/members_controller.rb +++ b/app/controllers/members_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb index 02fd5abb4d..e44a51c67f 100644 --- a/app/controllers/messages_controller.rb +++ b/app/controllers/messages_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/my_controller.rb b/app/controllers/my_controller.rb index eef49a10eb..7e26f407ee 100644 --- a/app/controllers/my_controller.rb +++ b/app/controllers/my_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/news/comments_controller.rb b/app/controllers/news/comments_controller.rb index a7dc7ac6d1..95d34eaa55 100644 --- a/app/controllers/news/comments_controller.rb +++ b/app/controllers/news/comments_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/news_controller.rb b/app/controllers/news_controller.rb index 7ff37ea824..26c15b0fb6 100644 --- a/app/controllers/news_controller.rb +++ b/app/controllers/news_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/oauth/applications_controller.rb b/app/controllers/oauth/applications_controller.rb index 440324e78e..000a4617fa 100644 --- a/app/controllers/oauth/applications_controller.rb +++ b/app/controllers/oauth/applications_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/oauth/auth_base_controller.rb b/app/controllers/oauth/auth_base_controller.rb index 5e10b1aa31..1947acabb4 100644 --- a/app/controllers/oauth/auth_base_controller.rb +++ b/app/controllers/oauth/auth_base_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/oauth/grants_controller.rb b/app/controllers/oauth/grants_controller.rb index 25f3901365..d2c1623c5e 100644 --- a/app/controllers/oauth/grants_controller.rb +++ b/app/controllers/oauth/grants_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/onboarding_controller.rb b/app/controllers/onboarding_controller.rb index 95da15c2dc..17ce52ccb9 100644 --- a/app/controllers/onboarding_controller.rb +++ b/app/controllers/onboarding_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/archive_controller.rb b/app/controllers/projects/archive_controller.rb index f61c80d293..eca5a76176 100644 --- a/app/controllers/projects/archive_controller.rb +++ b/app/controllers/projects/archive_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/identifier_controller.rb b/app/controllers/projects/identifier_controller.rb index 13f20819ec..2932dff05c 100644 --- a/app/controllers/projects/identifier_controller.rb +++ b/app/controllers/projects/identifier_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/categories_controller.rb b/app/controllers/projects/settings/categories_controller.rb index 998a3235cb..e9d50d748c 100644 --- a/app/controllers/projects/settings/categories_controller.rb +++ b/app/controllers/projects/settings/categories_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/custom_fields_controller.rb b/app/controllers/projects/settings/custom_fields_controller.rb index 85c6930a11..cde0fab36f 100644 --- a/app/controllers/projects/settings/custom_fields_controller.rb +++ b/app/controllers/projects/settings/custom_fields_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/general_controller.rb b/app/controllers/projects/settings/general_controller.rb index fad462b867..130b84d76f 100644 --- a/app/controllers/projects/settings/general_controller.rb +++ b/app/controllers/projects/settings/general_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/modules_controller.rb b/app/controllers/projects/settings/modules_controller.rb index 894c1b58a3..0949783bbe 100644 --- a/app/controllers/projects/settings/modules_controller.rb +++ b/app/controllers/projects/settings/modules_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/repository_controller.rb b/app/controllers/projects/settings/repository_controller.rb index e2339e4156..e76b01eb6f 100644 --- a/app/controllers/projects/settings/repository_controller.rb +++ b/app/controllers/projects/settings/repository_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/storage_controller.rb b/app/controllers/projects/settings/storage_controller.rb index 7314a4a3ff..6d583f0129 100644 --- a/app/controllers/projects/settings/storage_controller.rb +++ b/app/controllers/projects/settings/storage_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/types_controller.rb b/app/controllers/projects/settings/types_controller.rb index b7e6d05806..8a63f04b5a 100644 --- a/app/controllers/projects/settings/types_controller.rb +++ b/app/controllers/projects/settings/types_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings/versions_controller.rb b/app/controllers/projects/settings/versions_controller.rb index 0aec3d3590..f8a971622f 100644 --- a/app/controllers/projects/settings/versions_controller.rb +++ b/app/controllers/projects/settings/versions_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/settings_controller.rb b/app/controllers/projects/settings_controller.rb index 8f5f56d52b..dc1f832576 100644 --- a/app/controllers/projects/settings_controller.rb +++ b/app/controllers/projects/settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects/templated_controller.rb b/app/controllers/projects/templated_controller.rb index ef8a2cced3..6357a0552e 100644 --- a/app/controllers/projects/templated_controller.rb +++ b/app/controllers/projects/templated_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index 5393a2ac68..ae8a7789e7 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/repositories_controller.rb b/app/controllers/repositories_controller.rb index bf2706db17..5d4022f06b 100644 --- a/app/controllers/repositories_controller.rb +++ b/app/controllers/repositories_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb index 56f96bc841..125df1c82f 100644 --- a/app/controllers/roles_controller.rb +++ b/app/controllers/roles_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/search_controller.rb b/app/controllers/search_controller.rb index 389d5830b2..9972b6954d 100644 --- a/app/controllers/search_controller.rb +++ b/app/controllers/search_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/statuses_controller.rb b/app/controllers/statuses_controller.rb index b07d20d5c8..f6acf431a6 100644 --- a/app/controllers/statuses_controller.rb +++ b/app/controllers/statuses_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/sys_controller.rb b/app/controllers/sys_controller.rb index d7621076b1..a8a429928a 100644 --- a/app/controllers/sys_controller.rb +++ b/app/controllers/sys_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/types_controller.rb b/app/controllers/types_controller.rb index a78ce9aa37..51b0f07caf 100644 --- a/app/controllers/types_controller.rb +++ b/app/controllers/types_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/users/memberships_controller.rb b/app/controllers/users/memberships_controller.rb index a27f4fb68f..bb32c723ed 100644 --- a/app/controllers/users/memberships_controller.rb +++ b/app/controllers/users/memberships_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 3e6f4cc994..5ec5df6fa0 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/versions_controller.rb b/app/controllers/versions_controller.rb index a4d331018b..79e7fbd3a8 100644 --- a/app/controllers/versions_controller.rb +++ b/app/controllers/versions_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/watchers_controller.rb b/app/controllers/watchers_controller.rb index 9341c372e0..a16dba4abe 100644 --- a/app/controllers/watchers_controller.rb +++ b/app/controllers/watchers_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb index f5e1df2339..83900962c3 100644 --- a/app/controllers/wiki_controller.rb +++ b/app/controllers/wiki_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/wiki_menu_items_controller.rb b/app/controllers/wiki_menu_items_controller.rb index 9d86085a59..9d75b518cb 100644 --- a/app/controllers/wiki_menu_items_controller.rb +++ b/app/controllers/wiki_menu_items_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages/auto_completes_controller.rb b/app/controllers/work_packages/auto_completes_controller.rb index e53bfe0bd5..e5a98867b9 100644 --- a/app/controllers/work_packages/auto_completes_controller.rb +++ b/app/controllers/work_packages/auto_completes_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages/bulk_controller.rb b/app/controllers/work_packages/bulk_controller.rb index 7a7e6b6aaa..41910fbff3 100644 --- a/app/controllers/work_packages/bulk_controller.rb +++ b/app/controllers/work_packages/bulk_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages/flash_bulk_error.rb b/app/controllers/work_packages/flash_bulk_error.rb index 6437582e7a..c8206cb633 100644 --- a/app/controllers/work_packages/flash_bulk_error.rb +++ b/app/controllers/work_packages/flash_bulk_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages/moves_controller.rb b/app/controllers/work_packages/moves_controller.rb index 0a5dd214e1..681b369a43 100644 --- a/app/controllers/work_packages/moves_controller.rb +++ b/app/controllers/work_packages/moves_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages/reports_controller.rb b/app/controllers/work_packages/reports_controller.rb index 73fa9d9684..f971496433 100644 --- a/app/controllers/work_packages/reports_controller.rb +++ b/app/controllers/work_packages/reports_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/work_packages_controller.rb b/app/controllers/work_packages_controller.rb index 683654953c..3b03e56a7b 100644 --- a/app/controllers/work_packages_controller.rb +++ b/app/controllers/work_packages_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/controllers/workflows_controller.rb b/app/controllers/workflows_controller.rb index a12ee18646..71eb2b8a24 100644 --- a/app/controllers/workflows_controller.rb +++ b/app/controllers/workflows_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/accessibility_helper.rb b/app/helpers/accessibility_helper.rb index 5141e64ac4..540ba6c7bc 100644 --- a/app/helpers/accessibility_helper.rb +++ b/app/helpers/accessibility_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb index 77bc3e0fad..aa64a0053e 100644 --- a/app/helpers/admin_helper.rb +++ b/app/helpers/admin_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/angular_helper.rb b/app/helpers/angular_helper.rb index 091709e724..be0a00394f 100644 --- a/app/helpers/angular_helper.rb +++ b/app/helpers/angular_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 9f31426e61..31c0978f98 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/attachments_helper.rb b/app/helpers/attachments_helper.rb index 10c2f1ec95..2f232d1c84 100644 --- a/app/helpers/attachments_helper.rb +++ b/app/helpers/attachments_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/attribute_help_texts_helper.rb b/app/helpers/attribute_help_texts_helper.rb index b41f1f81f4..a9cdf050bb 100644 --- a/app/helpers/attribute_help_texts_helper.rb +++ b/app/helpers/attribute_help_texts_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/augmenting_helper.rb b/app/helpers/augmenting_helper.rb index 7716e9a5c2..a09b290245 100644 --- a/app/helpers/augmenting_helper.rb +++ b/app/helpers/augmenting_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/authentication_stage_path_helper.rb b/app/helpers/authentication_stage_path_helper.rb index 6fab5f62e5..a5154338a2 100644 --- a/app/helpers/authentication_stage_path_helper.rb +++ b/app/helpers/authentication_stage_path_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/avatar_helper.rb b/app/helpers/avatar_helper.rb index 1cf21f924e..b2ade90c9e 100644 --- a/app/helpers/avatar_helper.rb +++ b/app/helpers/avatar_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/backup_helper.rb b/app/helpers/backup_helper.rb index 40968d2682..bdbe46e1f2 100644 --- a/app/helpers/backup_helper.rb +++ b/app/helpers/backup_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/breadcrumb_helper.rb b/app/helpers/breadcrumb_helper.rb index 07408297f8..d1f344c52e 100644 --- a/app/helpers/breadcrumb_helper.rb +++ b/app/helpers/breadcrumb_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/calendars_helper.rb b/app/helpers/calendars_helper.rb index ce7b8e7af2..479f94112e 100644 --- a/app/helpers/calendars_helper.rb +++ b/app/helpers/calendars_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/colors_helper.rb b/app/helpers/colors_helper.rb index 4ea67ffe91..53e7946104 100644 --- a/app/helpers/colors_helper.rb +++ b/app/helpers/colors_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/content_for_helper.rb b/app/helpers/content_for_helper.rb index 6fa79f8c31..51b9fcd01a 100644 --- a/app/helpers/content_for_helper.rb +++ b/app/helpers/content_for_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index 3aff71dff4..c53496f3ab 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/custom_styles_helper.rb b/app/helpers/custom_styles_helper.rb index 4f32f8da66..6d1a7313f6 100644 --- a/app/helpers/custom_styles_helper.rb +++ b/app/helpers/custom_styles_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/error_message_helper.rb b/app/helpers/error_message_helper.rb index be3997e6b1..80494d9517 100644 --- a/app/helpers/error_message_helper.rb +++ b/app/helpers/error_message_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/errors_helper.rb b/app/helpers/errors_helper.rb index 82d3efc0b7..70963ccbd1 100644 --- a/app/helpers/errors_helper.rb +++ b/app/helpers/errors_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/frontend_asset_helper.rb b/app/helpers/frontend_asset_helper.rb index ba9c87a0c5..6a3374482c 100644 --- a/app/helpers/frontend_asset_helper.rb +++ b/app/helpers/frontend_asset_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/groups_helper.rb b/app/helpers/groups_helper.rb index 2a7ede9422..0e4ba79c4f 100644 --- a/app/helpers/groups_helper.rb +++ b/app/helpers/groups_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/hide_sections_helper.rb b/app/helpers/hide_sections_helper.rb index 2ec81f3ebc..4f4ed21a72 100644 --- a/app/helpers/hide_sections_helper.rb +++ b/app/helpers/hide_sections_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/homescreen_helper.rb b/app/helpers/homescreen_helper.rb index 1e048699e8..f89ad87576 100644 --- a/app/helpers/homescreen_helper.rb +++ b/app/helpers/homescreen_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/icons_helper.rb b/app/helpers/icons_helper.rb index 5c94b717a0..391a6d0b22 100644 --- a/app/helpers/icons_helper.rb +++ b/app/helpers/icons_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/individual_principal_hooks_helper.rb b/app/helpers/individual_principal_hooks_helper.rb index 3fc6b9ef4e..71a9747647 100644 --- a/app/helpers/individual_principal_hooks_helper.rb +++ b/app/helpers/individual_principal_hooks_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/mail_digest_helper.rb b/app/helpers/mail_digest_helper.rb index e0886169cf..5915252dfe 100644 --- a/app/helpers/mail_digest_helper.rb +++ b/app/helpers/mail_digest_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/mail_notification_helper.rb b/app/helpers/mail_notification_helper.rb index 577356108e..cb9c9c9244 100644 --- a/app/helpers/mail_notification_helper.rb +++ b/app/helpers/mail_notification_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/members_helper.rb b/app/helpers/members_helper.rb index 9788bbecb8..6a90a5e6e3 100644 --- a/app/helpers/members_helper.rb +++ b/app/helpers/members_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/messages_helper.rb b/app/helpers/messages_helper.rb index fd66327bb6..6a2dbf3401 100644 --- a/app/helpers/messages_helper.rb +++ b/app/helpers/messages_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/meta_tags_helper.rb b/app/helpers/meta_tags_helper.rb index 50ec18a6d1..ee5b8cc60d 100644 --- a/app/helpers/meta_tags_helper.rb +++ b/app/helpers/meta_tags_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/no_results_helper.rb b/app/helpers/no_results_helper.rb index eeaf4d6b58..e355c2d06d 100644 --- a/app/helpers/no_results_helper.rb +++ b/app/helpers/no_results_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/oauth_helper.rb b/app/helpers/oauth_helper.rb index 6bccf51099..c6bbfb8733 100644 --- a/app/helpers/oauth_helper.rb +++ b/app/helpers/oauth_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/omniauth_helper.rb b/app/helpers/omniauth_helper.rb index 69dffefbb4..159639074b 100644 --- a/app/helpers/omniauth_helper.rb +++ b/app/helpers/omniauth_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/pagination_helper.rb b/app/helpers/pagination_helper.rb index c85364f036..f788fcac3d 100644 --- a/app/helpers/pagination_helper.rb +++ b/app/helpers/pagination_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/password_helper.rb b/app/helpers/password_helper.rb index ed21938e92..51bedcf75b 100644 --- a/app/helpers/password_helper.rb +++ b/app/helpers/password_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/placeholder_users_helper.rb b/app/helpers/placeholder_users_helper.rb index be30db369d..54dda2f11d 100644 --- a/app/helpers/placeholder_users_helper.rb +++ b/app/helpers/placeholder_users_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/project_status_helper.rb b/app/helpers/project_status_helper.rb index da40c5ee1c..70a1acef25 100644 --- a/app/helpers/project_status_helper.rb +++ b/app/helpers/project_status_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb index 54e497f3ac..16fe8d02de 100644 --- a/app/helpers/projects_helper.rb +++ b/app/helpers/projects_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/queries_helper.rb b/app/helpers/queries_helper.rb index 877433f46b..34c2b0e9e0 100644 --- a/app/helpers/queries_helper.rb +++ b/app/helpers/queries_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/relations_helper.rb b/app/helpers/relations_helper.rb index 523356191c..84d8992fa3 100644 --- a/app/helpers/relations_helper.rb +++ b/app/helpers/relations_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/removed_js_helpers_helper.rb b/app/helpers/removed_js_helpers_helper.rb index 3118bcdf7c..570aa5065a 100644 --- a/app/helpers/removed_js_helpers_helper.rb +++ b/app/helpers/removed_js_helpers_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/reorder_links_helper.rb b/app/helpers/reorder_links_helper.rb index 1cb378daff..4980a6f423 100644 --- a/app/helpers/reorder_links_helper.rb +++ b/app/helpers/reorder_links_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/reports_helper.rb b/app/helpers/reports_helper.rb index a1f3b5e118..57fc8e065d 100644 --- a/app/helpers/reports_helper.rb +++ b/app/helpers/reports_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/repositories_helper.rb b/app/helpers/repositories_helper.rb index a921dcc92d..964fa3f42c 100644 --- a/app/helpers/repositories_helper.rb +++ b/app/helpers/repositories_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/roles_helper.rb b/app/helpers/roles_helper.rb index c40a0551e7..a85e97a5f5 100644 --- a/app/helpers/roles_helper.rb +++ b/app/helpers/roles_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/search_helper.rb b/app/helpers/search_helper.rb index 1119c21721..7167d16f53 100644 --- a/app/helpers/search_helper.rb +++ b/app/helpers/search_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/security_badge_helper.rb b/app/helpers/security_badge_helper.rb index 6bbe050271..1dc990f337 100644 --- a/app/helpers/security_badge_helper.rb +++ b/app/helpers/security_badge_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/settings_helper.rb b/app/helpers/settings_helper.rb index 14ddcec441..8a2bf60ec3 100644 --- a/app/helpers/settings_helper.rb +++ b/app/helpers/settings_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/sort_helper.rb b/app/helpers/sort_helper.rb index 6a75b9c6a7..54379e736e 100644 --- a/app/helpers/sort_helper.rb +++ b/app/helpers/sort_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/static_links_helper.rb b/app/helpers/static_links_helper.rb index 5ed0621a55..4800468470 100644 --- a/app/helpers/static_links_helper.rb +++ b/app/helpers/static_links_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/tabs_helper.rb b/app/helpers/tabs_helper.rb index e580af4460..e0bc68d219 100644 --- a/app/helpers/tabs_helper.rb +++ b/app/helpers/tabs_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/text_formatting_helper.rb b/app/helpers/text_formatting_helper.rb index 89976a335e..20662a339e 100644 --- a/app/helpers/text_formatting_helper.rb +++ b/app/helpers/text_formatting_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/tooltip_helper.rb b/app/helpers/tooltip_helper.rb index 4a8eeb38c3..f8b9529829 100644 --- a/app/helpers/tooltip_helper.rb +++ b/app/helpers/tooltip_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/types_helper.rb b/app/helpers/types_helper.rb index 969957177b..97a96a595a 100644 --- a/app/helpers/types_helper.rb +++ b/app/helpers/types_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/user_consent_helper.rb b/app/helpers/user_consent_helper.rb index 8ee589d8cb..62c082c039 100644 --- a/app/helpers/user_consent_helper.rb +++ b/app/helpers/user_consent_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb index dc4547001f..ce29f8e824 100644 --- a/app/helpers/users_helper.rb +++ b/app/helpers/users_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/versions_helper.rb b/app/helpers/versions_helper.rb index 7ec419d7ba..0136d6cb93 100644 --- a/app/helpers/versions_helper.rb +++ b/app/helpers/versions_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/warning_bar_helper.rb b/app/helpers/warning_bar_helper.rb index f4f4745f14..133b7b49ea 100644 --- a/app/helpers/warning_bar_helper.rb +++ b/app/helpers/warning_bar_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/watchers_helper.rb b/app/helpers/watchers_helper.rb index bec45e1c87..926d02c5d9 100644 --- a/app/helpers/watchers_helper.rb +++ b/app/helpers/watchers_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/wiki_helper.rb b/app/helpers/wiki_helper.rb index 6eaae43dbf..4f633679a3 100644 --- a/app/helpers/wiki_helper.rb +++ b/app/helpers/wiki_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/work_packages_filter_helper.rb b/app/helpers/work_packages_filter_helper.rb index 456e0b8961..2c5bf910f5 100644 --- a/app/helpers/work_packages_filter_helper.rb +++ b/app/helpers/work_packages_filter_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/helpers/work_packages_helper.rb b/app/helpers/work_packages_helper.rb index 8f5949f75e..5ba4ac75da 100644 --- a/app/helpers/work_packages_helper.rb +++ b/app/helpers/work_packages_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/announcement_mailer.rb b/app/mailers/announcement_mailer.rb index eff3674045..ce7304a102 100644 --- a/app/mailers/announcement_mailer.rb +++ b/app/mailers/announcement_mailer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index 76320a4b69..8ac0894cc5 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/digest_mailer.rb b/app/mailers/digest_mailer.rb index 9eb56880d5..dbf2988cee 100644 --- a/app/mailers/digest_mailer.rb +++ b/app/mailers/digest_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/member_mailer.rb b/app/mailers/member_mailer.rb index 8e77c02dcd..98c87b3858 100644 --- a/app/mailers/member_mailer.rb +++ b/app/mailers/member_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/project_mailer.rb b/app/mailers/project_mailer.rb index 2a57a73a73..e0ed62e1e8 100644 --- a/app/mailers/project_mailer.rb +++ b/app/mailers/project_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index 6f34d0ce7e..dfebda3e50 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/mailers/work_package_mailer.rb b/app/mailers/work_package_mailer.rb index c5f3476ba1..5ef82dadaf 100644 --- a/app/mailers/work_package_mailer.rb +++ b/app/mailers/work_package_mailer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/action.rb b/app/models/action.rb index c0efd5bcca..0d28bb31b1 100644 --- a/app/models/action.rb +++ b/app/models/action.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/actions/scopes/default.rb b/app/models/actions/scopes/default.rb index dadd91e0d1..381ec6c2db 100644 --- a/app/models/actions/scopes/default.rb +++ b/app/models/actions/scopes/default.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/base_activity_provider.rb b/app/models/activities/base_activity_provider.rb index f4d808fa32..66501a110a 100644 --- a/app/models/activities/base_activity_provider.rb +++ b/app/models/activities/base_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/changeset_activity_provider.rb b/app/models/activities/changeset_activity_provider.rb index cdca139388..48858f5915 100644 --- a/app/models/activities/changeset_activity_provider.rb +++ b/app/models/activities/changeset_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/fetcher.rb b/app/models/activities/fetcher.rb index 5591db1e83..29df40c35b 100644 --- a/app/models/activities/fetcher.rb +++ b/app/models/activities/fetcher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/message_activity_provider.rb b/app/models/activities/message_activity_provider.rb index 665e12244d..7ccf0a8d84 100644 --- a/app/models/activities/message_activity_provider.rb +++ b/app/models/activities/message_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/news_activity_provider.rb b/app/models/activities/news_activity_provider.rb index 68adc6382b..494bbe8a49 100644 --- a/app/models/activities/news_activity_provider.rb +++ b/app/models/activities/news_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/wiki_content_activity_provider.rb b/app/models/activities/wiki_content_activity_provider.rb index 564b09d656..5f1ff8e82d 100644 --- a/app/models/activities/wiki_content_activity_provider.rb +++ b/app/models/activities/wiki_content_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/activities/work_package_activity_provider.rb b/app/models/activities/work_package_activity_provider.rb index 6ce7ce5b12..eaaf7dc62f 100644 --- a/app/models/activities/work_package_activity_provider.rb +++ b/app/models/activities/work_package_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/associations/groupable.rb b/app/models/associations/groupable.rb index 760510a787..a552c28703 100644 --- a/app/models/associations/groupable.rb +++ b/app/models/associations/groupable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/attachment.rb b/app/models/attachment.rb index db409e877c..34581acada 100644 --- a/app/models/attachment.rb +++ b/app/models/attachment.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/attribute_help_text.rb b/app/models/attribute_help_text.rb index 7f83375242..135fefed80 100644 --- a/app/models/attribute_help_text.rb +++ b/app/models/attribute_help_text.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/attribute_help_text/project.rb b/app/models/attribute_help_text/project.rb index 0475539ce7..032a83997e 100644 --- a/app/models/attribute_help_text/project.rb +++ b/app/models/attribute_help_text/project.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/attribute_help_text/work_package.rb b/app/models/attribute_help_text/work_package.rb index b9122246b5..fe8f77ac37 100644 --- a/app/models/attribute_help_text/work_package.rb +++ b/app/models/attribute_help_text/work_package.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/auth_source.rb b/app/models/auth_source.rb index a79dc3b9a9..981a46a335 100644 --- a/app/models/auth_source.rb +++ b/app/models/auth_source.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/capabilities/scopes/default.rb b/app/models/capabilities/scopes/default.rb index c05fec3584..322b081644 100644 --- a/app/models/capabilities/scopes/default.rb +++ b/app/models/capabilities/scopes/default.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/capability.rb b/app/models/capability.rb index 08ae4745ee..c3380ac2ad 100644 --- a/app/models/capability.rb +++ b/app/models/capability.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/category.rb b/app/models/category.rb index 4add5c4c80..90ad0cb424 100644 --- a/app/models/category.rb +++ b/app/models/category.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/change.rb b/app/models/change.rb index d510654d70..b9a2410458 100644 --- a/app/models/change.rb +++ b/app/models/change.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/changeset.rb b/app/models/changeset.rb index 75c87bc5d9..f53a3b52c2 100644 --- a/app/models/changeset.rb +++ b/app/models/changeset.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/color.rb b/app/models/color.rb index e52312aceb..e73172d645 100644 --- a/app/models/color.rb +++ b/app/models/color.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/comment.rb b/app/models/comment.rb index 66505f0175..82d1b208ec 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/concerns/tableless.rb b/app/models/concerns/tableless.rb index 1670631066..7861b206d6 100644 --- a/app/models/concerns/tableless.rb +++ b/app/models/concerns/tableless.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/concerns/virtual_attribute.rb b/app/models/concerns/virtual_attribute.rb index c0963f7e9f..94311dff79 100644 --- a/app/models/concerns/virtual_attribute.rb +++ b/app/models/concerns/virtual_attribute.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_action.rb b/app/models/custom_action.rb index 376989f1f6..ec81b31749 100644 --- a/app/models/custom_action.rb +++ b/app/models/custom_action.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/assigned_to.rb b/app/models/custom_actions/actions/assigned_to.rb index 03f2a23800..9a372c1cfd 100644 --- a/app/models/custom_actions/actions/assigned_to.rb +++ b/app/models/custom_actions/actions/assigned_to.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/base.rb b/app/models/custom_actions/actions/base.rb index c8ea5f3dd8..aa9a37a659 100644 --- a/app/models/custom_actions/actions/base.rb +++ b/app/models/custom_actions/actions/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/custom_field.rb b/app/models/custom_actions/actions/custom_field.rb index 54860b9f1c..57dcee4bb1 100644 --- a/app/models/custom_actions/actions/custom_field.rb +++ b/app/models/custom_actions/actions/custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/date.rb b/app/models/custom_actions/actions/date.rb index 202429ae35..35360f37c3 100644 --- a/app/models/custom_actions/actions/date.rb +++ b/app/models/custom_actions/actions/date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/done_ratio.rb b/app/models/custom_actions/actions/done_ratio.rb index 8fc1260ed9..17b3c4cfda 100644 --- a/app/models/custom_actions/actions/done_ratio.rb +++ b/app/models/custom_actions/actions/done_ratio.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/due_date.rb b/app/models/custom_actions/actions/due_date.rb index e9b2e4bce0..1c17c147c6 100644 --- a/app/models/custom_actions/actions/due_date.rb +++ b/app/models/custom_actions/actions/due_date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/estimated_hours.rb b/app/models/custom_actions/actions/estimated_hours.rb index 3181eea94c..4dbdce9424 100644 --- a/app/models/custom_actions/actions/estimated_hours.rb +++ b/app/models/custom_actions/actions/estimated_hours.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/inexistent.rb b/app/models/custom_actions/actions/inexistent.rb index 2c18d6eb9f..d7405c9106 100644 --- a/app/models/custom_actions/actions/inexistent.rb +++ b/app/models/custom_actions/actions/inexistent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/notify.rb b/app/models/custom_actions/actions/notify.rb index 2257ddb917..58f3849a87 100644 --- a/app/models/custom_actions/actions/notify.rb +++ b/app/models/custom_actions/actions/notify.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/priority.rb b/app/models/custom_actions/actions/priority.rb index 9d07261b3b..cde6c05749 100644 --- a/app/models/custom_actions/actions/priority.rb +++ b/app/models/custom_actions/actions/priority.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/project.rb b/app/models/custom_actions/actions/project.rb index 8b9fed62bb..13536846ea 100644 --- a/app/models/custom_actions/actions/project.rb +++ b/app/models/custom_actions/actions/project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/responsible.rb b/app/models/custom_actions/actions/responsible.rb index 80ab70d43b..db3ed6625f 100644 --- a/app/models/custom_actions/actions/responsible.rb +++ b/app/models/custom_actions/actions/responsible.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/serializer.rb b/app/models/custom_actions/actions/serializer.rb index 680d7ca2ff..ba8445e92d 100644 --- a/app/models/custom_actions/actions/serializer.rb +++ b/app/models/custom_actions/actions/serializer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/start_date.rb b/app/models/custom_actions/actions/start_date.rb index 27b73ffe08..fb9d50941c 100644 --- a/app/models/custom_actions/actions/start_date.rb +++ b/app/models/custom_actions/actions/start_date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/status.rb b/app/models/custom_actions/actions/status.rb index d0ee63768f..a9f516c4d4 100644 --- a/app/models/custom_actions/actions/status.rb +++ b/app/models/custom_actions/actions/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/associated.rb b/app/models/custom_actions/actions/strategies/associated.rb index a8fa8f418b..c4065a054e 100644 --- a/app/models/custom_actions/actions/strategies/associated.rb +++ b/app/models/custom_actions/actions/strategies/associated.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/associated_custom_field.rb b/app/models/custom_actions/actions/strategies/associated_custom_field.rb index 4faa9d1a8c..0cdd2a3538 100644 --- a/app/models/custom_actions/actions/strategies/associated_custom_field.rb +++ b/app/models/custom_actions/actions/strategies/associated_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/custom_field.rb b/app/models/custom_actions/actions/strategies/custom_field.rb index dfb27899cc..de1c4f6a00 100644 --- a/app/models/custom_actions/actions/strategies/custom_field.rb +++ b/app/models/custom_actions/actions/strategies/custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/date.rb b/app/models/custom_actions/actions/strategies/date.rb index 4953e749e7..d6f3478854 100644 --- a/app/models/custom_actions/actions/strategies/date.rb +++ b/app/models/custom_actions/actions/strategies/date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/date_property.rb b/app/models/custom_actions/actions/strategies/date_property.rb index 06735eeb5e..62ad08dc8a 100644 --- a/app/models/custom_actions/actions/strategies/date_property.rb +++ b/app/models/custom_actions/actions/strategies/date_property.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/float.rb b/app/models/custom_actions/actions/strategies/float.rb index 4bf1040d24..2dfcee9f8e 100644 --- a/app/models/custom_actions/actions/strategies/float.rb +++ b/app/models/custom_actions/actions/strategies/float.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/integer.rb b/app/models/custom_actions/actions/strategies/integer.rb index 25640755e9..787b32b3ed 100644 --- a/app/models/custom_actions/actions/strategies/integer.rb +++ b/app/models/custom_actions/actions/strategies/integer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/me_associated.rb b/app/models/custom_actions/actions/strategies/me_associated.rb index 1f298880aa..c82e1373da 100644 --- a/app/models/custom_actions/actions/strategies/me_associated.rb +++ b/app/models/custom_actions/actions/strategies/me_associated.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/string.rb b/app/models/custom_actions/actions/strategies/string.rb index 316215b242..1bdd09d290 100644 --- a/app/models/custom_actions/actions/strategies/string.rb +++ b/app/models/custom_actions/actions/strategies/string.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/text.rb b/app/models/custom_actions/actions/strategies/text.rb index f843e9577c..2e8d8cf2b1 100644 --- a/app/models/custom_actions/actions/strategies/text.rb +++ b/app/models/custom_actions/actions/strategies/text.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/user_custom_field.rb b/app/models/custom_actions/actions/strategies/user_custom_field.rb index 7c265238cc..2ffc8f5bf6 100644 --- a/app/models/custom_actions/actions/strategies/user_custom_field.rb +++ b/app/models/custom_actions/actions/strategies/user_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/validate_in_range.rb b/app/models/custom_actions/actions/strategies/validate_in_range.rb index d067d596bc..886aabb20f 100644 --- a/app/models/custom_actions/actions/strategies/validate_in_range.rb +++ b/app/models/custom_actions/actions/strategies/validate_in_range.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/strategies/values_to_string.rb b/app/models/custom_actions/actions/strategies/values_to_string.rb index fd4992af3d..c0efc4d7b8 100644 --- a/app/models/custom_actions/actions/strategies/values_to_string.rb +++ b/app/models/custom_actions/actions/strategies/values_to_string.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/actions/type.rb b/app/models/custom_actions/actions/type.rb index 8d520aa1f0..044cbb27e2 100644 --- a/app/models/custom_actions/actions/type.rb +++ b/app/models/custom_actions/actions/type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/base.rb b/app/models/custom_actions/conditions/base.rb index a94177cdeb..ff5ee3ca2b 100644 --- a/app/models/custom_actions/conditions/base.rb +++ b/app/models/custom_actions/conditions/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/inexistent.rb b/app/models/custom_actions/conditions/inexistent.rb index 6e7c7a3585..823d806d52 100644 --- a/app/models/custom_actions/conditions/inexistent.rb +++ b/app/models/custom_actions/conditions/inexistent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/project.rb b/app/models/custom_actions/conditions/project.rb index 239a9f71a2..78e19d275b 100644 --- a/app/models/custom_actions/conditions/project.rb +++ b/app/models/custom_actions/conditions/project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/role.rb b/app/models/custom_actions/conditions/role.rb index ed0bcf1429..28843f953e 100644 --- a/app/models/custom_actions/conditions/role.rb +++ b/app/models/custom_actions/conditions/role.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/status.rb b/app/models/custom_actions/conditions/status.rb index b884a93926..f268b362c8 100644 --- a/app/models/custom_actions/conditions/status.rb +++ b/app/models/custom_actions/conditions/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/conditions/type.rb b/app/models/custom_actions/conditions/type.rb index 2b3082c355..ab6fec43a1 100644 --- a/app/models/custom_actions/conditions/type.rb +++ b/app/models/custom_actions/conditions/type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/register.rb b/app/models/custom_actions/register.rb index df38b5132f..e32a2ae1e8 100644 --- a/app/models/custom_actions/register.rb +++ b/app/models/custom_actions/register.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_actions/values_to_integer.rb b/app/models/custom_actions/values_to_integer.rb index e1594a841e..10a7ee5232 100644 --- a/app/models/custom_actions/values_to_integer.rb +++ b/app/models/custom_actions/values_to_integer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_field.rb b/app/models/custom_field.rb index df9330ca02..879e09c57b 100644 --- a/app/models/custom_field.rb +++ b/app/models/custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_field/order_statements.rb b/app/models/custom_field/order_statements.rb index 5e8b7238a3..bd64079e6d 100644 --- a/app/models/custom_field/order_statements.rb +++ b/app/models/custom_field/order_statements.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_option.rb b/app/models/custom_option.rb index 16e0aa9bd5..7aae742a21 100644 --- a/app/models/custom_option.rb +++ b/app/models/custom_option.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value.rb b/app/models/custom_value.rb index 38c48d65b6..7e3b5b18b6 100644 --- a/app/models/custom_value.rb +++ b/app/models/custom_value.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/ar_object_strategy.rb b/app/models/custom_value/ar_object_strategy.rb index c3de438ed8..5f65311ea5 100644 --- a/app/models/custom_value/ar_object_strategy.rb +++ b/app/models/custom_value/ar_object_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/bool_strategy.rb b/app/models/custom_value/bool_strategy.rb index 57d2d254ca..d8276ce190 100644 --- a/app/models/custom_value/bool_strategy.rb +++ b/app/models/custom_value/bool_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/date_strategy.rb b/app/models/custom_value/date_strategy.rb index 86668af325..78b2558c9c 100644 --- a/app/models/custom_value/date_strategy.rb +++ b/app/models/custom_value/date_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/empty_strategy.rb b/app/models/custom_value/empty_strategy.rb index 3a81c125d5..86a5c53110 100644 --- a/app/models/custom_value/empty_strategy.rb +++ b/app/models/custom_value/empty_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/float_strategy.rb b/app/models/custom_value/float_strategy.rb index 017f40e651..ca109b09f6 100644 --- a/app/models/custom_value/float_strategy.rb +++ b/app/models/custom_value/float_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/format_strategy.rb b/app/models/custom_value/format_strategy.rb index 45bf7a4a4c..150747f0fb 100644 --- a/app/models/custom_value/format_strategy.rb +++ b/app/models/custom_value/format_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/formattable_strategy.rb b/app/models/custom_value/formattable_strategy.rb index f88da7cda5..5627314143 100644 --- a/app/models/custom_value/formattable_strategy.rb +++ b/app/models/custom_value/formattable_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/int_strategy.rb b/app/models/custom_value/int_strategy.rb index 2cca9f3fec..8ea85a96b7 100644 --- a/app/models/custom_value/int_strategy.rb +++ b/app/models/custom_value/int_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/list_strategy.rb b/app/models/custom_value/list_strategy.rb index c3658b1812..6883af3701 100644 --- a/app/models/custom_value/list_strategy.rb +++ b/app/models/custom_value/list_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/string_strategy.rb b/app/models/custom_value/string_strategy.rb index 28efc60b42..825626c3c8 100644 --- a/app/models/custom_value/string_strategy.rb +++ b/app/models/custom_value/string_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/user_strategy.rb b/app/models/custom_value/user_strategy.rb index a13a0e4eb5..65f6b3f3bf 100644 --- a/app/models/custom_value/user_strategy.rb +++ b/app/models/custom_value/user_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/custom_value/version_strategy.rb b/app/models/custom_value/version_strategy.rb index 9e2006b524..7203cd9387 100644 --- a/app/models/custom_value/version_strategy.rb +++ b/app/models/custom_value/version_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/design_color.rb b/app/models/design_color.rb index a4e74b48a1..180daba73b 100644 --- a/app/models/design_color.rb +++ b/app/models/design_color.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/enabled_module.rb b/app/models/enabled_module.rb index 3436e0511c..d89183468c 100644 --- a/app/models/enabled_module.rb +++ b/app/models/enabled_module.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/enterprise_token.rb b/app/models/enterprise_token.rb index c57c3a1b86..8b569cc287 100644 --- a/app/models/enterprise_token.rb +++ b/app/models/enterprise_token.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/enumeration.rb b/app/models/enumeration.rb index e6f7aea774..26a7f0bf87 100644 --- a/app/models/enumeration.rb +++ b/app/models/enumeration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/exports/concerns/csv.rb b/app/models/exports/concerns/csv.rb index 5f74f17c7e..b7c5a8c9ae 100644 --- a/app/models/exports/concerns/csv.rb +++ b/app/models/exports/concerns/csv.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/exports/export_error.rb b/app/models/exports/export_error.rb index 079e00661a..8a64edab92 100644 --- a/app/models/exports/export_error.rb +++ b/app/models/exports/export_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/exports/exporter.rb b/app/models/exports/exporter.rb index 0bb350fde2..659df09e2e 100644 --- a/app/models/exports/exporter.rb +++ b/app/models/exports/exporter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/exports/register.rb b/app/models/exports/register.rb index 4758c9e7e1..f38dd83cec 100644 --- a/app/models/exports/register.rb +++ b/app/models/exports/register.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/exports/result.rb b/app/models/exports/result.rb index 58148ff4af..0dbe9e2184 100644 --- a/app/models/exports/result.rb +++ b/app/models/exports/result.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/forum.rb b/app/models/forum.rb index b1dd842d0a..a7ea5e2b03 100644 --- a/app/models/forum.rb +++ b/app/models/forum.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/global_role.rb b/app/models/global_role.rb index 145429bd5f..12d9497773 100644 --- a/app/models/global_role.rb +++ b/app/models/global_role.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/group.rb b/app/models/group.rb index 2d3f363bff..4a76eccf57 100644 --- a/app/models/group.rb +++ b/app/models/group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/group_custom_field.rb b/app/models/group_custom_field.rb index 4f0985c01a..bd4e770d8e 100644 --- a/app/models/group_custom_field.rb +++ b/app/models/group_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/group_user.rb b/app/models/group_user.rb index cadad828c5..0e601f8594 100644 --- a/app/models/group_user.rb +++ b/app/models/group_user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/groups/scopes/visible.rb b/app/models/groups/scopes/visible.rb index 1171cb84f3..85d72969d6 100644 --- a/app/models/groups/scopes/visible.rb +++ b/app/models/groups/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/issue_priority.rb b/app/models/issue_priority.rb index 76ace08d60..40d40bb4f3 100644 --- a/app/models/issue_priority.rb +++ b/app/models/issue_priority.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal.rb b/app/models/journal.rb index c80d279d30..32cca2af0b 100644 --- a/app/models/journal.rb +++ b/app/models/journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/associated_journal.rb b/app/models/journal/associated_journal.rb index 7b06b00dd1..45a6b0e9bc 100644 --- a/app/models/journal/associated_journal.rb +++ b/app/models/journal/associated_journal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/attachable_journal.rb b/app/models/journal/attachable_journal.rb index 5d4c15f3df..245642dd96 100644 --- a/app/models/journal/attachable_journal.rb +++ b/app/models/journal/attachable_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/attachment_journal.rb b/app/models/journal/attachment_journal.rb index 9f0c996cea..1fdb89151d 100644 --- a/app/models/journal/attachment_journal.rb +++ b/app/models/journal/attachment_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/base_journal.rb b/app/models/journal/base_journal.rb index 31e3a9b0be..5fa44ec872 100644 --- a/app/models/journal/base_journal.rb +++ b/app/models/journal/base_journal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/changeset_journal.rb b/app/models/journal/changeset_journal.rb index 1d6dbf5716..2cb83a6ac9 100644 --- a/app/models/journal/changeset_journal.rb +++ b/app/models/journal/changeset_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/customizable_journal.rb b/app/models/journal/customizable_journal.rb index c16649197b..c44d153053 100644 --- a/app/models/journal/customizable_journal.rb +++ b/app/models/journal/customizable_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/message_journal.rb b/app/models/journal/message_journal.rb index 1e7572c8b6..c41c70ec45 100644 --- a/app/models/journal/message_journal.rb +++ b/app/models/journal/message_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/news_journal.rb b/app/models/journal/news_journal.rb index 6d8c99d1c9..b22caf3dcf 100644 --- a/app/models/journal/news_journal.rb +++ b/app/models/journal/news_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/notification_configuration.rb b/app/models/journal/notification_configuration.rb index 5eff071eb2..95176750ac 100644 --- a/app/models/journal/notification_configuration.rb +++ b/app/models/journal/notification_configuration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/wiki_content_journal.rb b/app/models/journal/wiki_content_journal.rb index 4cc71dac52..46b60f2d98 100644 --- a/app/models/journal/wiki_content_journal.rb +++ b/app/models/journal/wiki_content_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/journal/work_package_journal.rb b/app/models/journal/work_package_journal.rb index 22d68bc19f..fd9516853f 100644 --- a/app/models/journal/work_package_journal.rb +++ b/app/models/journal/work_package_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/ldap_auth_source.rb b/app/models/ldap_auth_source.rb index 3c9fc01554..d8c7e50d3f 100644 --- a/app/models/ldap_auth_source.rb +++ b/app/models/ldap_auth_source.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index 81bcdc7bfe..5281885582 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/member.rb b/app/models/member.rb index e61807f30e..141632049c 100644 --- a/app/models/member.rb +++ b/app/models/member.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/member_role.rb b/app/models/member_role.rb index 7e47b3c269..342dab174a 100644 --- a/app/models/member_role.rb +++ b/app/models/member_role.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/roles_diff.rb b/app/models/members/roles_diff.rb index 01e93f981c..911ac94b0d 100644 --- a/app/models/members/roles_diff.rb +++ b/app/models/members/roles_diff.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/scopes/assignable.rb b/app/models/members/scopes/assignable.rb index 8698e13880..d3f1d174ef 100644 --- a/app/models/members/scopes/assignable.rb +++ b/app/models/members/scopes/assignable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/scopes/global.rb b/app/models/members/scopes/global.rb index 2f0b9d879a..e0913d7125 100644 --- a/app/models/members/scopes/global.rb +++ b/app/models/members/scopes/global.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/scopes/not_locked.rb b/app/models/members/scopes/not_locked.rb index cb36d3ede7..2e276557cf 100644 --- a/app/models/members/scopes/not_locked.rb +++ b/app/models/members/scopes/not_locked.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/scopes/of.rb b/app/models/members/scopes/of.rb index 2fd4808291..66d72baaa2 100644 --- a/app/models/members/scopes/of.rb +++ b/app/models/members/scopes/of.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/members/scopes/visible.rb b/app/models/members/scopes/visible.rb index f1de3cea34..6c4ab42c3e 100644 --- a/app/models/members/scopes/visible.rb +++ b/app/models/members/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/menu_item.rb b/app/models/menu_item.rb index 9d7dede8b4..d0acf595ef 100644 --- a/app/models/menu_item.rb +++ b/app/models/menu_item.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/menu_items/wiki_menu_item.rb b/app/models/menu_items/wiki_menu_item.rb index 744d5135a2..078413b027 100644 --- a/app/models/menu_items/wiki_menu_item.rb +++ b/app/models/menu_items/wiki_menu_item.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/message.rb b/app/models/message.rb index d3f82b9061..28b5b94f62 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/news.rb b/app/models/news.rb index 7c1911e7ba..62d1b34799 100644 --- a/app/models/news.rb +++ b/app/models/news.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notification_settings/scopes/applicable.rb b/app/models/notification_settings/scopes/applicable.rb index 84adcd306a..48bb9fdd6d 100644 --- a/app/models/notification_settings/scopes/applicable.rb +++ b/app/models/notification_settings/scopes/applicable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notifications/scopes/mail_alert_unsent.rb b/app/models/notifications/scopes/mail_alert_unsent.rb index 51289e81d3..71913a4a39 100644 --- a/app/models/notifications/scopes/mail_alert_unsent.rb +++ b/app/models/notifications/scopes/mail_alert_unsent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notifications/scopes/mail_reminder_unsent.rb b/app/models/notifications/scopes/mail_reminder_unsent.rb index c35daf0963..f62a7ec24e 100644 --- a/app/models/notifications/scopes/mail_reminder_unsent.rb +++ b/app/models/notifications/scopes/mail_reminder_unsent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notifications/scopes/recipient.rb b/app/models/notifications/scopes/recipient.rb index 93e45eedf6..f2147ed134 100644 --- a/app/models/notifications/scopes/recipient.rb +++ b/app/models/notifications/scopes/recipient.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notifications/scopes/unsent_reminders_before.rb b/app/models/notifications/scopes/unsent_reminders_before.rb index d557eb9fd0..a5cf36699c 100644 --- a/app/models/notifications/scopes/unsent_reminders_before.rb +++ b/app/models/notifications/scopes/unsent_reminders_before.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/notifications/scopes/visible.rb b/app/models/notifications/scopes/visible.rb index 6e36c6a9d8..9cc0341061 100644 --- a/app/models/notifications/scopes/visible.rb +++ b/app/models/notifications/scopes/visible.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/ordered_work_package.rb b/app/models/ordered_work_package.rb index 3314ef451b..a80a44e9a8 100644 --- a/app/models/ordered_work_package.rb +++ b/app/models/ordered_work_package.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/permitted_params.rb b/app/models/permitted_params.rb index 2f76fb99fb..60efcf8388 100644 --- a/app/models/permitted_params.rb +++ b/app/models/permitted_params.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/placeholder_users/scopes/visible.rb b/app/models/placeholder_users/scopes/visible.rb index 056a28b478..d1d809da0e 100644 --- a/app/models/placeholder_users/scopes/visible.rb +++ b/app/models/placeholder_users/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principal.rb b/app/models/principal.rb index 4c0b97d678..a4f4cf9d9b 100644 --- a/app/models/principal.rb +++ b/app/models/principal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/human.rb b/app/models/principals/scopes/human.rb index 1990f9c225..b270636a14 100644 --- a/app/models/principals/scopes/human.rb +++ b/app/models/principals/scopes/human.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/like.rb b/app/models/principals/scopes/like.rb index 5e014407ee..8f841f189c 100644 --- a/app/models/principals/scopes/like.rb +++ b/app/models/principals/scopes/like.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/not_builtin.rb b/app/models/principals/scopes/not_builtin.rb index 198d7e7c21..21b76f0118 100644 --- a/app/models/principals/scopes/not_builtin.rb +++ b/app/models/principals/scopes/not_builtin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/ordered_by_name.rb b/app/models/principals/scopes/ordered_by_name.rb index 909207c964..9edc3cfde1 100644 --- a/app/models/principals/scopes/ordered_by_name.rb +++ b/app/models/principals/scopes/ordered_by_name.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/possible_assignee.rb b/app/models/principals/scopes/possible_assignee.rb index aad6538011..18b9223c9c 100644 --- a/app/models/principals/scopes/possible_assignee.rb +++ b/app/models/principals/scopes/possible_assignee.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/possible_member.rb b/app/models/principals/scopes/possible_member.rb index a762796b7e..1a62d73d76 100644 --- a/app/models/principals/scopes/possible_member.rb +++ b/app/models/principals/scopes/possible_member.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/status.rb b/app/models/principals/scopes/status.rb index 4ce50343ce..68d2da6917 100644 --- a/app/models/principals/scopes/status.rb +++ b/app/models/principals/scopes/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/user.rb b/app/models/principals/scopes/user.rb index 9659b2e5c0..0009e22dce 100644 --- a/app/models/principals/scopes/user.rb +++ b/app/models/principals/scopes/user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/principals/scopes/visible.rb b/app/models/principals/scopes/visible.rb index 38263d0fe1..522a8a21fe 100644 --- a/app/models/principals/scopes/visible.rb +++ b/app/models/principals/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/priority/inexistent_priority.rb b/app/models/priority/inexistent_priority.rb index cd50b9725e..22cea6ddc9 100644 --- a/app/models/priority/inexistent_priority.rb +++ b/app/models/priority/inexistent_priority.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/project.rb b/app/models/project.rb index 75125c1b71..f1f926968c 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/project_custom_field.rb b/app/models/project_custom_field.rb index a613adcc2d..ad3a7e98fc 100644 --- a/app/models/project_custom_field.rb +++ b/app/models/project_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/activity.rb b/app/models/projects/activity.rb index 699a62dcae..e65b975841 100644 --- a/app/models/projects/activity.rb +++ b/app/models/projects/activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/ancestors_from_root.rb b/app/models/projects/ancestors_from_root.rb index cefa2cafcf..8f3a0ca147 100644 --- a/app/models/projects/ancestors_from_root.rb +++ b/app/models/projects/ancestors_from_root.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/exports/csv.rb b/app/models/projects/exports/csv.rb index 2fb7990e63..11a47afc3e 100644 --- a/app/models/projects/exports/csv.rb +++ b/app/models/projects/exports/csv.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/exports/formatters/status.rb b/app/models/projects/exports/formatters/status.rb index 836b029325..0b39a7e126 100644 --- a/app/models/projects/exports/formatters/status.rb +++ b/app/models/projects/exports/formatters/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/exports/query_exporter.rb b/app/models/projects/exports/query_exporter.rb index 1b4ebf53e3..e6ebd3a455 100644 --- a/app/models/projects/exports/query_exporter.rb +++ b/app/models/projects/exports/query_exporter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/hierarchy.rb b/app/models/projects/hierarchy.rb index bbca557106..a476af029e 100644 --- a/app/models/projects/hierarchy.rb +++ b/app/models/projects/hierarchy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/status.rb b/app/models/projects/status.rb index 1bb77fb255..385ad0fc64 100644 --- a/app/models/projects/status.rb +++ b/app/models/projects/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/projects/storage.rb b/app/models/projects/storage.rb index 5e34eb48b1..b6144c4eb1 100644 --- a/app/models/projects/storage.rb +++ b/app/models/projects/storage.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/actions.rb b/app/models/queries/actions.rb index 2e9395d99a..449fd23083 100644 --- a/app/models/queries/actions.rb +++ b/app/models/queries/actions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/actions/action_query.rb b/app/models/queries/actions/action_query.rb index 8c0a565b3b..412dedfeaa 100644 --- a/app/models/queries/actions/action_query.rb +++ b/app/models/queries/actions/action_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/actions/filters/action_filter.rb b/app/models/queries/actions/filters/action_filter.rb index d4fc35b2f3..70c685140c 100644 --- a/app/models/queries/actions/filters/action_filter.rb +++ b/app/models/queries/actions/filters/action_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/actions/filters/id_filter.rb b/app/models/queries/actions/filters/id_filter.rb index 27a99badd9..ec679d7079 100644 --- a/app/models/queries/actions/filters/id_filter.rb +++ b/app/models/queries/actions/filters/id_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/base_query.rb b/app/models/queries/base_query.rb index c0356cac90..d40d133523 100644 --- a/app/models/queries/base_query.rb +++ b/app/models/queries/base_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities.rb b/app/models/queries/capabilities.rb index 7e45df29f3..f896bf9f5d 100644 --- a/app/models/queries/capabilities.rb +++ b/app/models/queries/capabilities.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/capability_query.rb b/app/models/queries/capabilities/capability_query.rb index a83bea2f5c..45a4ed952e 100644 --- a/app/models/queries/capabilities/capability_query.rb +++ b/app/models/queries/capabilities/capability_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/filters/action_filter.rb b/app/models/queries/capabilities/filters/action_filter.rb index dafb502c53..fb0e4187f6 100644 --- a/app/models/queries/capabilities/filters/action_filter.rb +++ b/app/models/queries/capabilities/filters/action_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/filters/capability_filter.rb b/app/models/queries/capabilities/filters/capability_filter.rb index 48e1d39fe3..6c24037a28 100644 --- a/app/models/queries/capabilities/filters/capability_filter.rb +++ b/app/models/queries/capabilities/filters/capability_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/filters/context_filter.rb b/app/models/queries/capabilities/filters/context_filter.rb index 14670e4d32..091026a54f 100644 --- a/app/models/queries/capabilities/filters/context_filter.rb +++ b/app/models/queries/capabilities/filters/context_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/filters/id_filter.rb b/app/models/queries/capabilities/filters/id_filter.rb index 541b35d757..9158337468 100644 --- a/app/models/queries/capabilities/filters/id_filter.rb +++ b/app/models/queries/capabilities/filters/id_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/filters/principal_id_filter.rb b/app/models/queries/capabilities/filters/principal_id_filter.rb index 9fa805f415..8c062cadb3 100644 --- a/app/models/queries/capabilities/filters/principal_id_filter.rb +++ b/app/models/queries/capabilities/filters/principal_id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/capabilities/orders/id_order.rb b/app/models/queries/capabilities/orders/id_order.rb index f987496696..676fa024c4 100644 --- a/app/models/queries/capabilities/orders/id_order.rb +++ b/app/models/queries/capabilities/orders/id_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/columns/base.rb b/app/models/queries/columns/base.rb index 8782816c27..df4114e282 100644 --- a/app/models/queries/columns/base.rb +++ b/app/models/queries/columns/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters.rb b/app/models/queries/filters.rb index ca3b4d7def..de01424354 100644 --- a/app/models/queries/filters.rb +++ b/app/models/queries/filters.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/available_filters.rb b/app/models/queries/filters/available_filters.rb index b4bc663efb..2a65b73f88 100644 --- a/app/models/queries/filters/available_filters.rb +++ b/app/models/queries/filters/available_filters.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/base.rb b/app/models/queries/filters/base.rb index fff4f02ad4..1b7fbba1cf 100644 --- a/app/models/queries/filters/base.rb +++ b/app/models/queries/filters/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/empty_filter.rb b/app/models/queries/filters/empty_filter.rb index 3887788359..2835ed9040 100644 --- a/app/models/queries/filters/empty_filter.rb +++ b/app/models/queries/filters/empty_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/me_value.rb b/app/models/queries/filters/me_value.rb index 2744ceaf72..59006a429e 100644 --- a/app/models/queries/filters/me_value.rb +++ b/app/models/queries/filters/me_value.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/not_existing_filter.rb b/app/models/queries/filters/not_existing_filter.rb index 76a10ec8c5..562d0b4a7e 100644 --- a/app/models/queries/filters/not_existing_filter.rb +++ b/app/models/queries/filters/not_existing_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/serializable.rb b/app/models/queries/filters/serializable.rb index a5334c7161..c0be22b353 100644 --- a/app/models/queries/filters/serializable.rb +++ b/app/models/queries/filters/serializable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/any_user_name_attribute_filter.rb b/app/models/queries/filters/shared/any_user_name_attribute_filter.rb index b80d83b4b1..4b4b4801ed 100644 --- a/app/models/queries/filters/shared/any_user_name_attribute_filter.rb +++ b/app/models/queries/filters/shared/any_user_name_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/boolean_filter.rb b/app/models/queries/filters/shared/boolean_filter.rb index b93675c630..065001791e 100644 --- a/app/models/queries/filters/shared/boolean_filter.rb +++ b/app/models/queries/filters/shared/boolean_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/custom_field_filter.rb b/app/models/queries/filters/shared/custom_field_filter.rb index db44d8058a..069edb2da1 100644 --- a/app/models/queries/filters/shared/custom_field_filter.rb +++ b/app/models/queries/filters/shared/custom_field_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/custom_fields/base.rb b/app/models/queries/filters/shared/custom_fields/base.rb index f0cdda52f8..c11ece908d 100644 --- a/app/models/queries/filters/shared/custom_fields/base.rb +++ b/app/models/queries/filters/shared/custom_fields/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/custom_fields/bool.rb b/app/models/queries/filters/shared/custom_fields/bool.rb index 4f9a9dee7d..f8b59d3ee8 100644 --- a/app/models/queries/filters/shared/custom_fields/bool.rb +++ b/app/models/queries/filters/shared/custom_fields/bool.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/custom_fields/list_optional.rb b/app/models/queries/filters/shared/custom_fields/list_optional.rb index d84ecb325f..b06ad01455 100644 --- a/app/models/queries/filters/shared/custom_fields/list_optional.rb +++ b/app/models/queries/filters/shared/custom_fields/list_optional.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/custom_fields/user.rb b/app/models/queries/filters/shared/custom_fields/user.rb index b896f04119..ba8f763480 100644 --- a/app/models/queries/filters/shared/custom_fields/user.rb +++ b/app/models/queries/filters/shared/custom_fields/user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/group_filter.rb b/app/models/queries/filters/shared/group_filter.rb index 827670eff5..0b16f6bf22 100644 --- a/app/models/queries/filters/shared/group_filter.rb +++ b/app/models/queries/filters/shared/group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/me_value_filter.rb b/app/models/queries/filters/shared/me_value_filter.rb index ac6828b373..03101435d8 100644 --- a/app/models/queries/filters/shared/me_value_filter.rb +++ b/app/models/queries/filters/shared/me_value_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/parsed_filter.rb b/app/models/queries/filters/shared/parsed_filter.rb index cba56d021f..72786d5eca 100644 --- a/app/models/queries/filters/shared/parsed_filter.rb +++ b/app/models/queries/filters/shared/parsed_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/project_filter.rb b/app/models/queries/filters/shared/project_filter.rb index c899bb7b35..f6db828a2a 100644 --- a/app/models/queries/filters/shared/project_filter.rb +++ b/app/models/queries/filters/shared/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/user_blocked_filter.rb b/app/models/queries/filters/shared/user_blocked_filter.rb index 79567c506d..221c998561 100644 --- a/app/models/queries/filters/shared/user_blocked_filter.rb +++ b/app/models/queries/filters/shared/user_blocked_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/user_name_filter.rb b/app/models/queries/filters/shared/user_name_filter.rb index 06f5992f00..8392403ff3 100644 --- a/app/models/queries/filters/shared/user_name_filter.rb +++ b/app/models/queries/filters/shared/user_name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/shared/user_status_filter.rb b/app/models/queries/filters/shared/user_status_filter.rb index e924cd5a8f..a7bfb41b19 100644 --- a/app/models/queries/filters/shared/user_status_filter.rb +++ b/app/models/queries/filters/shared/user_status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies.rb b/app/models/queries/filters/strategies.rb index a54f5fae92..19762d246f 100644 --- a/app/models/queries/filters/strategies.rb +++ b/app/models/queries/filters/strategies.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/base_strategy.rb b/app/models/queries/filters/strategies/base_strategy.rb index 4fa2ba3761..1f7ccda748 100644 --- a/app/models/queries/filters/strategies/base_strategy.rb +++ b/app/models/queries/filters/strategies/base_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/boolean_list.rb b/app/models/queries/filters/strategies/boolean_list.rb index 6a3dd39377..09ff87658c 100644 --- a/app/models/queries/filters/strategies/boolean_list.rb +++ b/app/models/queries/filters/strategies/boolean_list.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/boolean_list_strict.rb b/app/models/queries/filters/strategies/boolean_list_strict.rb index 223a3f671d..8044cd7797 100644 --- a/app/models/queries/filters/strategies/boolean_list_strict.rb +++ b/app/models/queries/filters/strategies/boolean_list_strict.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/cf_float.rb b/app/models/queries/filters/strategies/cf_float.rb index 89c6cbbad2..abcedb2657 100644 --- a/app/models/queries/filters/strategies/cf_float.rb +++ b/app/models/queries/filters/strategies/cf_float.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/cf_integer.rb b/app/models/queries/filters/strategies/cf_integer.rb index 559fd81f19..ec0f719edc 100644 --- a/app/models/queries/filters/strategies/cf_integer.rb +++ b/app/models/queries/filters/strategies/cf_integer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/cf_list_optional.rb b/app/models/queries/filters/strategies/cf_list_optional.rb index 506a58bd70..bfd0916b26 100644 --- a/app/models/queries/filters/strategies/cf_list_optional.rb +++ b/app/models/queries/filters/strategies/cf_list_optional.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/cf_numeric.rb b/app/models/queries/filters/strategies/cf_numeric.rb index 46fdc35941..31361bcc70 100644 --- a/app/models/queries/filters/strategies/cf_numeric.rb +++ b/app/models/queries/filters/strategies/cf_numeric.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/date.rb b/app/models/queries/filters/strategies/date.rb index c9b2dba24a..815044647b 100644 --- a/app/models/queries/filters/strategies/date.rb +++ b/app/models/queries/filters/strategies/date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/date_interval.rb b/app/models/queries/filters/strategies/date_interval.rb index 526e7d4d43..51146fbfd1 100644 --- a/app/models/queries/filters/strategies/date_interval.rb +++ b/app/models/queries/filters/strategies/date_interval.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/date_time_past.rb b/app/models/queries/filters/strategies/date_time_past.rb index 01f1171e18..cd53d1120e 100644 --- a/app/models/queries/filters/strategies/date_time_past.rb +++ b/app/models/queries/filters/strategies/date_time_past.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/empty_value.rb b/app/models/queries/filters/strategies/empty_value.rb index 7c18282a00..8eeb68eed0 100644 --- a/app/models/queries/filters/strategies/empty_value.rb +++ b/app/models/queries/filters/strategies/empty_value.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/float.rb b/app/models/queries/filters/strategies/float.rb index 569f05933d..c6d6e8b766 100644 --- a/app/models/queries/filters/strategies/float.rb +++ b/app/models/queries/filters/strategies/float.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/float_numeric.rb b/app/models/queries/filters/strategies/float_numeric.rb index 431a36e4dd..d97efc0f97 100644 --- a/app/models/queries/filters/strategies/float_numeric.rb +++ b/app/models/queries/filters/strategies/float_numeric.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/huge_list.rb b/app/models/queries/filters/strategies/huge_list.rb index 4bd1857022..30dfb82259 100644 --- a/app/models/queries/filters/strategies/huge_list.rb +++ b/app/models/queries/filters/strategies/huge_list.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/inexistent.rb b/app/models/queries/filters/strategies/inexistent.rb index 6b8ddc3757..42bc537635 100644 --- a/app/models/queries/filters/strategies/inexistent.rb +++ b/app/models/queries/filters/strategies/inexistent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/integer.rb b/app/models/queries/filters/strategies/integer.rb index 72c62998c9..a286a81f87 100644 --- a/app/models/queries/filters/strategies/integer.rb +++ b/app/models/queries/filters/strategies/integer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/integer_list.rb b/app/models/queries/filters/strategies/integer_list.rb index de27b07173..daf4c50348 100644 --- a/app/models/queries/filters/strategies/integer_list.rb +++ b/app/models/queries/filters/strategies/integer_list.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/integer_list_optional.rb b/app/models/queries/filters/strategies/integer_list_optional.rb index af01ed6f44..f216cf4db6 100644 --- a/app/models/queries/filters/strategies/integer_list_optional.rb +++ b/app/models/queries/filters/strategies/integer_list_optional.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/integer_numeric.rb b/app/models/queries/filters/strategies/integer_numeric.rb index cd06fe25bc..ea4c42b4c7 100644 --- a/app/models/queries/filters/strategies/integer_numeric.rb +++ b/app/models/queries/filters/strategies/integer_numeric.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/list.rb b/app/models/queries/filters/strategies/list.rb index a3ad4fdb9b..143fa229a8 100644 --- a/app/models/queries/filters/strategies/list.rb +++ b/app/models/queries/filters/strategies/list.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/list_all.rb b/app/models/queries/filters/strategies/list_all.rb index b1c9841171..e24f9adea7 100644 --- a/app/models/queries/filters/strategies/list_all.rb +++ b/app/models/queries/filters/strategies/list_all.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/list_optional.rb b/app/models/queries/filters/strategies/list_optional.rb index ebb905a6c4..d5ee5a832f 100644 --- a/app/models/queries/filters/strategies/list_optional.rb +++ b/app/models/queries/filters/strategies/list_optional.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/numeric.rb b/app/models/queries/filters/strategies/numeric.rb index c2dad64211..5630d614bb 100644 --- a/app/models/queries/filters/strategies/numeric.rb +++ b/app/models/queries/filters/strategies/numeric.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/relation.rb b/app/models/queries/filters/strategies/relation.rb index 79fa76fefe..97b8530c32 100644 --- a/app/models/queries/filters/strategies/relation.rb +++ b/app/models/queries/filters/strategies/relation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/search.rb b/app/models/queries/filters/strategies/search.rb index 183a6670d3..183428c41e 100644 --- a/app/models/queries/filters/strategies/search.rb +++ b/app/models/queries/filters/strategies/search.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/string.rb b/app/models/queries/filters/strategies/string.rb index 924a06bf12..92196d2760 100644 --- a/app/models/queries/filters/strategies/string.rb +++ b/app/models/queries/filters/strategies/string.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/text.rb b/app/models/queries/filters/strategies/text.rb index 651b5d2810..265bde9ecf 100644 --- a/app/models/queries/filters/strategies/text.rb +++ b/app/models/queries/filters/strategies/text.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/strategies/validations.rb b/app/models/queries/filters/strategies/validations.rb index 5f9b69c247..d6da2ba859 100644 --- a/app/models/queries/filters/strategies/validations.rb +++ b/app/models/queries/filters/strategies/validations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/filters/templated_value.rb b/app/models/queries/filters/templated_value.rb index 782912e181..568f62fc22 100644 --- a/app/models/queries/filters/templated_value.rb +++ b/app/models/queries/filters/templated_value.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/group_bys/available_group_bys.rb b/app/models/queries/group_bys/available_group_bys.rb index b1a0184f0f..6eaafa2a97 100644 --- a/app/models/queries/group_bys/available_group_bys.rb +++ b/app/models/queries/group_bys/available_group_bys.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/group_bys/base.rb b/app/models/queries/group_bys/base.rb index 89b79e6537..9c4a59719c 100644 --- a/app/models/queries/group_bys/base.rb +++ b/app/models/queries/group_bys/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/group_bys/not_existing_group_by.rb b/app/models/queries/group_bys/not_existing_group_by.rb index 86d2b4c7ff..9965dbb23f 100644 --- a/app/models/queries/group_bys/not_existing_group_by.rb +++ b/app/models/queries/group_bys/not_existing_group_by.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/groups.rb b/app/models/queries/groups.rb index 47838a119d..e16ef214b8 100644 --- a/app/models/queries/groups.rb +++ b/app/models/queries/groups.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/groups/group_query.rb b/app/models/queries/groups/group_query.rb index 02eb86df1b..4f62ac2642 100644 --- a/app/models/queries/groups/group_query.rb +++ b/app/models/queries/groups/group_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/groups/orders/default_order.rb b/app/models/queries/groups/orders/default_order.rb index 60df2020b2..e883a86fe6 100644 --- a/app/models/queries/groups/orders/default_order.rb +++ b/app/models/queries/groups/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/individual_principals/orders/group_order.rb b/app/models/queries/individual_principals/orders/group_order.rb index 47caa1bb6e..8997016250 100644 --- a/app/models/queries/individual_principals/orders/group_order.rb +++ b/app/models/queries/individual_principals/orders/group_order.rb @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/individual_principals/orders/name_order.rb b/app/models/queries/individual_principals/orders/name_order.rb index 0dedc615e7..c6e1d1753f 100644 --- a/app/models/queries/individual_principals/orders/name_order.rb +++ b/app/models/queries/individual_principals/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members.rb b/app/models/queries/members.rb index b4af46c576..e15f716bca 100644 --- a/app/models/queries/members.rb +++ b/app/models/queries/members.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/any_name_attribute_filter.rb b/app/models/queries/members/filters/any_name_attribute_filter.rb index 8ed576cae7..a22e20f211 100644 --- a/app/models/queries/members/filters/any_name_attribute_filter.rb +++ b/app/models/queries/members/filters/any_name_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/blocked_filter.rb b/app/models/queries/members/filters/blocked_filter.rb index b89d88d37c..d5c2b5ddd2 100644 --- a/app/models/queries/members/filters/blocked_filter.rb +++ b/app/models/queries/members/filters/blocked_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/created_at_filter.rb b/app/models/queries/members/filters/created_at_filter.rb index e23951fdd5..1efedcb8aa 100644 --- a/app/models/queries/members/filters/created_at_filter.rb +++ b/app/models/queries/members/filters/created_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/group_filter.rb b/app/models/queries/members/filters/group_filter.rb index edb4ebca3d..0cc73bbe08 100644 --- a/app/models/queries/members/filters/group_filter.rb +++ b/app/models/queries/members/filters/group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/member_filter.rb b/app/models/queries/members/filters/member_filter.rb index 68e118971f..df57b7dc40 100644 --- a/app/models/queries/members/filters/member_filter.rb +++ b/app/models/queries/members/filters/member_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/name_filter.rb b/app/models/queries/members/filters/name_filter.rb index b1fb36d1c4..145f9db952 100644 --- a/app/models/queries/members/filters/name_filter.rb +++ b/app/models/queries/members/filters/name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/principal_filter.rb b/app/models/queries/members/filters/principal_filter.rb index e9a75e666a..6ed598f5b0 100644 --- a/app/models/queries/members/filters/principal_filter.rb +++ b/app/models/queries/members/filters/principal_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/project_filter.rb b/app/models/queries/members/filters/project_filter.rb index fa4b7fb4b8..d333f86a4e 100644 --- a/app/models/queries/members/filters/project_filter.rb +++ b/app/models/queries/members/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/role_filter.rb b/app/models/queries/members/filters/role_filter.rb index e863a4cac6..82bf93921f 100644 --- a/app/models/queries/members/filters/role_filter.rb +++ b/app/models/queries/members/filters/role_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/status_filter.rb b/app/models/queries/members/filters/status_filter.rb index 5e134c7f3c..d9003eedc1 100644 --- a/app/models/queries/members/filters/status_filter.rb +++ b/app/models/queries/members/filters/status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/filters/updated_at_filter.rb b/app/models/queries/members/filters/updated_at_filter.rb index b9b38842be..f1579ad80f 100644 --- a/app/models/queries/members/filters/updated_at_filter.rb +++ b/app/models/queries/members/filters/updated_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/member_query.rb b/app/models/queries/members/member_query.rb index 7ef0dbfdb0..21d75f17b9 100644 --- a/app/models/queries/members/member_query.rb +++ b/app/models/queries/members/member_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/orders/default_order.rb b/app/models/queries/members/orders/default_order.rb index 622056d77a..d870fc6094 100644 --- a/app/models/queries/members/orders/default_order.rb +++ b/app/models/queries/members/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/orders/email_order.rb b/app/models/queries/members/orders/email_order.rb index c967dc5493..47f396eea7 100644 --- a/app/models/queries/members/orders/email_order.rb +++ b/app/models/queries/members/orders/email_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/orders/name_order.rb b/app/models/queries/members/orders/name_order.rb index e2b81495d2..2cfe5e9cee 100644 --- a/app/models/queries/members/orders/name_order.rb +++ b/app/models/queries/members/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/members/orders/status_order.rb b/app/models/queries/members/orders/status_order.rb index 9127fb3d17..ffc8a9d2a6 100644 --- a/app/models/queries/members/orders/status_order.rb +++ b/app/models/queries/members/orders/status_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/news.rb b/app/models/queries/news.rb index 8da1231c0f..871b57bc9a 100644 --- a/app/models/queries/news.rb +++ b/app/models/queries/news.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/news/filters/news_filter.rb b/app/models/queries/news/filters/news_filter.rb index ef9fb1b7ac..62a6c16bac 100644 --- a/app/models/queries/news/filters/news_filter.rb +++ b/app/models/queries/news/filters/news_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/news/filters/project_filter.rb b/app/models/queries/news/filters/project_filter.rb index 7b78e14252..bb9df55df2 100644 --- a/app/models/queries/news/filters/project_filter.rb +++ b/app/models/queries/news/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/news/news_query.rb b/app/models/queries/news/news_query.rb index e3053678cf..3998b8adc9 100644 --- a/app/models/queries/news/news_query.rb +++ b/app/models/queries/news/news_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/news/orders/default_order.rb b/app/models/queries/news/orders/default_order.rb index ad86230139..02a42fe1ce 100644 --- a/app/models/queries/news/orders/default_order.rb +++ b/app/models/queries/news/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/id_filter.rb b/app/models/queries/notifications/filters/id_filter.rb index 28b7c081e5..61646f076a 100644 --- a/app/models/queries/notifications/filters/id_filter.rb +++ b/app/models/queries/notifications/filters/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/notification_filter.rb b/app/models/queries/notifications/filters/notification_filter.rb index a65c1ccb72..5f0f4b9aaa 100644 --- a/app/models/queries/notifications/filters/notification_filter.rb +++ b/app/models/queries/notifications/filters/notification_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/project_filter.rb b/app/models/queries/notifications/filters/project_filter.rb index e9762d7c51..fa0dcbf559 100644 --- a/app/models/queries/notifications/filters/project_filter.rb +++ b/app/models/queries/notifications/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/read_ian_filter.rb b/app/models/queries/notifications/filters/read_ian_filter.rb index 701d457770..013282b163 100644 --- a/app/models/queries/notifications/filters/read_ian_filter.rb +++ b/app/models/queries/notifications/filters/read_ian_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/reason_filter.rb b/app/models/queries/notifications/filters/reason_filter.rb index b667865f5f..2ae5514f69 100644 --- a/app/models/queries/notifications/filters/reason_filter.rb +++ b/app/models/queries/notifications/filters/reason_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/resource_id_filter.rb b/app/models/queries/notifications/filters/resource_id_filter.rb index 82345600c7..8dc5f36c32 100644 --- a/app/models/queries/notifications/filters/resource_id_filter.rb +++ b/app/models/queries/notifications/filters/resource_id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/filters/resource_type_filter.rb b/app/models/queries/notifications/filters/resource_type_filter.rb index 83541bfcaf..06cd886c8a 100644 --- a/app/models/queries/notifications/filters/resource_type_filter.rb +++ b/app/models/queries/notifications/filters/resource_type_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/group_bys/group_by_project.rb b/app/models/queries/notifications/group_bys/group_by_project.rb index ed3f2a4e2d..7115d029c5 100644 --- a/app/models/queries/notifications/group_bys/group_by_project.rb +++ b/app/models/queries/notifications/group_bys/group_by_project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/group_bys/group_by_reason.rb b/app/models/queries/notifications/group_bys/group_by_reason.rb index c09c9b87ab..f86acc354f 100644 --- a/app/models/queries/notifications/group_bys/group_by_reason.rb +++ b/app/models/queries/notifications/group_bys/group_by_reason.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/orders/default_order.rb b/app/models/queries/notifications/orders/default_order.rb index 06bff276e7..6132809c59 100644 --- a/app/models/queries/notifications/orders/default_order.rb +++ b/app/models/queries/notifications/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/orders/project_order.rb b/app/models/queries/notifications/orders/project_order.rb index 27712c4109..9c02d40952 100644 --- a/app/models/queries/notifications/orders/project_order.rb +++ b/app/models/queries/notifications/orders/project_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/orders/read_ian_order.rb b/app/models/queries/notifications/orders/read_ian_order.rb index 042fd7dd63..963025bc53 100644 --- a/app/models/queries/notifications/orders/read_ian_order.rb +++ b/app/models/queries/notifications/orders/read_ian_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/notifications/orders/reason_order.rb b/app/models/queries/notifications/orders/reason_order.rb index 26b6234ce8..99ac7c06ce 100644 --- a/app/models/queries/notifications/orders/reason_order.rb +++ b/app/models/queries/notifications/orders/reason_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators.rb b/app/models/queries/operators.rb index 0941728c57..db186ad9cb 100644 --- a/app/models/queries/operators.rb +++ b/app/models/queries/operators.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/ago.rb b/app/models/queries/operators/ago.rb index 6849ce3dee..759ca4961f 100644 --- a/app/models/queries/operators/ago.rb +++ b/app/models/queries/operators/ago.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/all.rb b/app/models/queries/operators/all.rb index ce4c0f2300..15a25e4176 100644 --- a/app/models/queries/operators/all.rb +++ b/app/models/queries/operators/all.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/all_and_non_blank.rb b/app/models/queries/operators/all_and_non_blank.rb index e1a91ff7f5..8b91b83ab8 100644 --- a/app/models/queries/operators/all_and_non_blank.rb +++ b/app/models/queries/operators/all_and_non_blank.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/base.rb b/app/models/queries/operators/base.rb index 68a750d60d..fd35f373c6 100644 --- a/app/models/queries/operators/base.rb +++ b/app/models/queries/operators/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/between_date.rb b/app/models/queries/operators/between_date.rb index 883b05e59b..49df904ec0 100644 --- a/app/models/queries/operators/between_date.rb +++ b/app/models/queries/operators/between_date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/between_date_time.rb b/app/models/queries/operators/between_date_time.rb index 9d79841d3e..2582533853 100644 --- a/app/models/queries/operators/between_date_time.rb +++ b/app/models/queries/operators/between_date_time.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/blocked.rb b/app/models/queries/operators/blocked.rb index 0587a0f623..0182aab0e7 100644 --- a/app/models/queries/operators/blocked.rb +++ b/app/models/queries/operators/blocked.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/blocks.rb b/app/models/queries/operators/blocks.rb index 7c25642e3b..5e66e8cf86 100644 --- a/app/models/queries/operators/blocks.rb +++ b/app/models/queries/operators/blocks.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/boolean_equals.rb b/app/models/queries/operators/boolean_equals.rb index 458547113a..976be40519 100644 --- a/app/models/queries/operators/boolean_equals.rb +++ b/app/models/queries/operators/boolean_equals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/boolean_equals_strict.rb b/app/models/queries/operators/boolean_equals_strict.rb index bc0af4b21b..dd0dd5501a 100644 --- a/app/models/queries/operators/boolean_equals_strict.rb +++ b/app/models/queries/operators/boolean_equals_strict.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/boolean_not_equals.rb b/app/models/queries/operators/boolean_not_equals.rb index 00a34698d2..b2f046d0d0 100644 --- a/app/models/queries/operators/boolean_not_equals.rb +++ b/app/models/queries/operators/boolean_not_equals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/casted_greater_or_equal.rb b/app/models/queries/operators/casted_greater_or_equal.rb index 67a732e391..08fea28176 100644 --- a/app/models/queries/operators/casted_greater_or_equal.rb +++ b/app/models/queries/operators/casted_greater_or_equal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/casted_less_or_equal.rb b/app/models/queries/operators/casted_less_or_equal.rb index 69a7ba3325..ea73d58b01 100644 --- a/app/models/queries/operators/casted_less_or_equal.rb +++ b/app/models/queries/operators/casted_less_or_equal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/children.rb b/app/models/queries/operators/children.rb index a863549305..1de9c8ae78 100644 --- a/app/models/queries/operators/children.rb +++ b/app/models/queries/operators/children.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/closed_work_packages.rb b/app/models/queries/operators/closed_work_packages.rb index 3e545b62e8..b12fdffca9 100644 --- a/app/models/queries/operators/closed_work_packages.rb +++ b/app/models/queries/operators/closed_work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/concerns/contains_all_values.rb b/app/models/queries/operators/concerns/contains_all_values.rb index fb905d0058..4839382468 100644 --- a/app/models/queries/operators/concerns/contains_all_values.rb +++ b/app/models/queries/operators/concerns/contains_all_values.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/contains.rb b/app/models/queries/operators/contains.rb index 2a5616639b..817bf02aca 100644 --- a/app/models/queries/operators/contains.rb +++ b/app/models/queries/operators/contains.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/date_range_clauses.rb b/app/models/queries/operators/date_range_clauses.rb index e5773b993c..4a26b98eac 100644 --- a/app/models/queries/operators/date_range_clauses.rb +++ b/app/models/queries/operators/date_range_clauses.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/datetime_range_clauses.rb b/app/models/queries/operators/datetime_range_clauses.rb index 2ea6b5d2ac..9e88568920 100644 --- a/app/models/queries/operators/datetime_range_clauses.rb +++ b/app/models/queries/operators/datetime_range_clauses.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/duplicated.rb b/app/models/queries/operators/duplicated.rb index d6ce17ab0f..2d673a5756 100644 --- a/app/models/queries/operators/duplicated.rb +++ b/app/models/queries/operators/duplicated.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/duplicates.rb b/app/models/queries/operators/duplicates.rb index 5881040ae4..6ecb5daf30 100644 --- a/app/models/queries/operators/duplicates.rb +++ b/app/models/queries/operators/duplicates.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/equals.rb b/app/models/queries/operators/equals.rb index 81553d284c..260a0fe221 100644 --- a/app/models/queries/operators/equals.rb +++ b/app/models/queries/operators/equals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/everywhere.rb b/app/models/queries/operators/everywhere.rb index 6bb7d45835..883e8d2d45 100644 --- a/app/models/queries/operators/everywhere.rb +++ b/app/models/queries/operators/everywhere.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/follows.rb b/app/models/queries/operators/follows.rb index c4b0ce6a4a..e7348e8844 100644 --- a/app/models/queries/operators/follows.rb +++ b/app/models/queries/operators/follows.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/greater_or_equal.rb b/app/models/queries/operators/greater_or_equal.rb index 8c4031457a..3dfb45a007 100644 --- a/app/models/queries/operators/greater_or_equal.rb +++ b/app/models/queries/operators/greater_or_equal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/in.rb b/app/models/queries/operators/in.rb index aa79017e38..ff03df0944 100644 --- a/app/models/queries/operators/in.rb +++ b/app/models/queries/operators/in.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/in_less_than.rb b/app/models/queries/operators/in_less_than.rb index 3c230f60a6..15bc81471b 100644 --- a/app/models/queries/operators/in_less_than.rb +++ b/app/models/queries/operators/in_less_than.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/in_more_than.rb b/app/models/queries/operators/in_more_than.rb index a5a637fe2f..120f40707a 100644 --- a/app/models/queries/operators/in_more_than.rb +++ b/app/models/queries/operators/in_more_than.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/includes.rb b/app/models/queries/operators/includes.rb index d10b3ff3f7..2d6ffc73c5 100644 --- a/app/models/queries/operators/includes.rb +++ b/app/models/queries/operators/includes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/less_or_equal.rb b/app/models/queries/operators/less_or_equal.rb index f2eb88a794..324b4c9038 100644 --- a/app/models/queries/operators/less_or_equal.rb +++ b/app/models/queries/operators/less_or_equal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/less_than_ago.rb b/app/models/queries/operators/less_than_ago.rb index 017a990689..ff6033ab1b 100644 --- a/app/models/queries/operators/less_than_ago.rb +++ b/app/models/queries/operators/less_than_ago.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/more_than_ago.rb b/app/models/queries/operators/more_than_ago.rb index f9cda1b29d..4ea4c8e601 100644 --- a/app/models/queries/operators/more_than_ago.rb +++ b/app/models/queries/operators/more_than_ago.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/none.rb b/app/models/queries/operators/none.rb index 296d8a90a3..114b2e575b 100644 --- a/app/models/queries/operators/none.rb +++ b/app/models/queries/operators/none.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/none_or_blank.rb b/app/models/queries/operators/none_or_blank.rb index fd1478de91..2e00aa2911 100644 --- a/app/models/queries/operators/none_or_blank.rb +++ b/app/models/queries/operators/none_or_blank.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/not_contains.rb b/app/models/queries/operators/not_contains.rb index 36ea3e0341..37a5df957b 100644 --- a/app/models/queries/operators/not_contains.rb +++ b/app/models/queries/operators/not_contains.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/not_equals.rb b/app/models/queries/operators/not_equals.rb index b466af7651..5f75a236dc 100644 --- a/app/models/queries/operators/not_equals.rb +++ b/app/models/queries/operators/not_equals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/on_date.rb b/app/models/queries/operators/on_date.rb index c058c7f6f7..437a06cdc2 100644 --- a/app/models/queries/operators/on_date.rb +++ b/app/models/queries/operators/on_date.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/on_date_time.rb b/app/models/queries/operators/on_date_time.rb index 20f9e1f036..1dba39b580 100644 --- a/app/models/queries/operators/on_date_time.rb +++ b/app/models/queries/operators/on_date_time.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/open_work_packages.rb b/app/models/queries/operators/open_work_packages.rb index 7603bd920a..331c98256e 100644 --- a/app/models/queries/operators/open_work_packages.rb +++ b/app/models/queries/operators/open_work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/ordered_work_packages.rb b/app/models/queries/operators/ordered_work_packages.rb index a55189da77..2e49222656 100644 --- a/app/models/queries/operators/ordered_work_packages.rb +++ b/app/models/queries/operators/ordered_work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/parent.rb b/app/models/queries/operators/parent.rb index 160de3f45b..9e8e66e330 100644 --- a/app/models/queries/operators/parent.rb +++ b/app/models/queries/operators/parent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/part_of.rb b/app/models/queries/operators/part_of.rb index 3d5ef14384..c81cf66689 100644 --- a/app/models/queries/operators/part_of.rb +++ b/app/models/queries/operators/part_of.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/precedes.rb b/app/models/queries/operators/precedes.rb index 551b647faa..92318698ec 100644 --- a/app/models/queries/operators/precedes.rb +++ b/app/models/queries/operators/precedes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/relates.rb b/app/models/queries/operators/relates.rb index 08803f036b..ce9ae039ce 100644 --- a/app/models/queries/operators/relates.rb +++ b/app/models/queries/operators/relates.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/required.rb b/app/models/queries/operators/required.rb index d26c83dcfb..99d65bbdd8 100644 --- a/app/models/queries/operators/required.rb +++ b/app/models/queries/operators/required.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/requires.rb b/app/models/queries/operators/requires.rb index c79b396d02..579d479448 100644 --- a/app/models/queries/operators/requires.rb +++ b/app/models/queries/operators/requires.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/this_week.rb b/app/models/queries/operators/this_week.rb index 895c441cfb..04417940c4 100644 --- a/app/models/queries/operators/this_week.rb +++ b/app/models/queries/operators/this_week.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/operators/today.rb b/app/models/queries/operators/today.rb index 439eecba08..4352d5655c 100644 --- a/app/models/queries/operators/today.rb +++ b/app/models/queries/operators/today.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/orders/available_orders.rb b/app/models/queries/orders/available_orders.rb index 60750c9c11..317bae3003 100644 --- a/app/models/queries/orders/available_orders.rb +++ b/app/models/queries/orders/available_orders.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/orders/base.rb b/app/models/queries/orders/base.rb index 20c7d07810..106057cdce 100644 --- a/app/models/queries/orders/base.rb +++ b/app/models/queries/orders/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/orders/not_existing_order.rb b/app/models/queries/orders/not_existing_order.rb index 482a996dbf..05d06ee7b9 100644 --- a/app/models/queries/orders/not_existing_order.rb +++ b/app/models/queries/orders/not_existing_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/filters/any_name_attribute_filter.rb b/app/models/queries/placeholder_users/filters/any_name_attribute_filter.rb index f9084b3ab6..e20395f2cd 100644 --- a/app/models/queries/placeholder_users/filters/any_name_attribute_filter.rb +++ b/app/models/queries/placeholder_users/filters/any_name_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/filters/group_filter.rb b/app/models/queries/placeholder_users/filters/group_filter.rb index 32d6f230ea..d2522b03a7 100644 --- a/app/models/queries/placeholder_users/filters/group_filter.rb +++ b/app/models/queries/placeholder_users/filters/group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/filters/name_filter.rb b/app/models/queries/placeholder_users/filters/name_filter.rb index 490da2184e..d04361de37 100644 --- a/app/models/queries/placeholder_users/filters/name_filter.rb +++ b/app/models/queries/placeholder_users/filters/name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/filters/placeholder_user_filter.rb b/app/models/queries/placeholder_users/filters/placeholder_user_filter.rb index 4ec3453d78..71810b9efd 100644 --- a/app/models/queries/placeholder_users/filters/placeholder_user_filter.rb +++ b/app/models/queries/placeholder_users/filters/placeholder_user_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/filters/status_filter.rb b/app/models/queries/placeholder_users/filters/status_filter.rb index be7d7b6172..28baf1dd1b 100644 --- a/app/models/queries/placeholder_users/filters/status_filter.rb +++ b/app/models/queries/placeholder_users/filters/status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/orders/default_order.rb b/app/models/queries/placeholder_users/orders/default_order.rb index 2f97bb316c..2d0ad4d54a 100644 --- a/app/models/queries/placeholder_users/orders/default_order.rb +++ b/app/models/queries/placeholder_users/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/orders/group_order.rb b/app/models/queries/placeholder_users/orders/group_order.rb index c8a4fee780..47939e66fd 100644 --- a/app/models/queries/placeholder_users/orders/group_order.rb +++ b/app/models/queries/placeholder_users/orders/group_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/placeholder_users/orders/name_order.rb b/app/models/queries/placeholder_users/orders/name_order.rb index 93cf6a2041..0986550b35 100644 --- a/app/models/queries/placeholder_users/orders/name_order.rb +++ b/app/models/queries/placeholder_users/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals.rb b/app/models/queries/principals.rb index 830ef614ca..9eb8adf777 100644 --- a/app/models/queries/principals.rb +++ b/app/models/queries/principals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/any_name_attribute_filter.rb b/app/models/queries/principals/filters/any_name_attribute_filter.rb index db127938e2..f2efc16254 100644 --- a/app/models/queries/principals/filters/any_name_attribute_filter.rb +++ b/app/models/queries/principals/filters/any_name_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/id_filter.rb b/app/models/queries/principals/filters/id_filter.rb index 2c28a14de8..c9a7d5f46e 100644 --- a/app/models/queries/principals/filters/id_filter.rb +++ b/app/models/queries/principals/filters/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/member_filter.rb b/app/models/queries/principals/filters/member_filter.rb index 69cdb3a037..1adbcfa50e 100644 --- a/app/models/queries/principals/filters/member_filter.rb +++ b/app/models/queries/principals/filters/member_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/name_filter.rb b/app/models/queries/principals/filters/name_filter.rb index 730b99576c..334d94ee52 100644 --- a/app/models/queries/principals/filters/name_filter.rb +++ b/app/models/queries/principals/filters/name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/principal_filter.rb b/app/models/queries/principals/filters/principal_filter.rb index 5aec25206b..260c88788b 100644 --- a/app/models/queries/principals/filters/principal_filter.rb +++ b/app/models/queries/principals/filters/principal_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/status_filter.rb b/app/models/queries/principals/filters/status_filter.rb index 14b9668657..0321a52fad 100644 --- a/app/models/queries/principals/filters/status_filter.rb +++ b/app/models/queries/principals/filters/status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/type_filter.rb b/app/models/queries/principals/filters/type_filter.rb index 51c8dc23fb..d4f8ad8e52 100644 --- a/app/models/queries/principals/filters/type_filter.rb +++ b/app/models/queries/principals/filters/type_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/filters/typeahead_filter.rb b/app/models/queries/principals/filters/typeahead_filter.rb index e8eba86b0c..bb5b37abda 100644 --- a/app/models/queries/principals/filters/typeahead_filter.rb +++ b/app/models/queries/principals/filters/typeahead_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/orders/name_order.rb b/app/models/queries/principals/orders/name_order.rb index 2d8311cffb..8237a1b652 100644 --- a/app/models/queries/principals/orders/name_order.rb +++ b/app/models/queries/principals/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/principals/principal_query.rb b/app/models/queries/principals/principal_query.rb index 8e57b924ef..a37aa62c3d 100644 --- a/app/models/queries/principals/principal_query.rb +++ b/app/models/queries/principals/principal_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects.rb b/app/models/queries/projects.rb index e54ff30d9e..55ac81a0c2 100644 --- a/app/models/queries/projects.rb +++ b/app/models/queries/projects.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/active_filter.rb b/app/models/queries/projects/filters/active_filter.rb index 8bfe2b8a39..f9113a05bd 100644 --- a/app/models/queries/projects/filters/active_filter.rb +++ b/app/models/queries/projects/filters/active_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/ancestor_filter.rb b/app/models/queries/projects/filters/ancestor_filter.rb index 6fffc41b4e..693109e161 100644 --- a/app/models/queries/projects/filters/ancestor_filter.rb +++ b/app/models/queries/projects/filters/ancestor_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/created_at_filter.rb b/app/models/queries/projects/filters/created_at_filter.rb index e08940e5f9..928385f17b 100644 --- a/app/models/queries/projects/filters/created_at_filter.rb +++ b/app/models/queries/projects/filters/created_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/custom_field_context.rb b/app/models/queries/projects/filters/custom_field_context.rb index 3e1423bc48..58cc43be60 100644 --- a/app/models/queries/projects/filters/custom_field_context.rb +++ b/app/models/queries/projects/filters/custom_field_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/custom_field_filter.rb b/app/models/queries/projects/filters/custom_field_filter.rb index 5bf10278fe..452113bada 100644 --- a/app/models/queries/projects/filters/custom_field_filter.rb +++ b/app/models/queries/projects/filters/custom_field_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/id_filter.rb b/app/models/queries/projects/filters/id_filter.rb index 4cf6e9201e..484755ffdd 100644 --- a/app/models/queries/projects/filters/id_filter.rb +++ b/app/models/queries/projects/filters/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/latest_activity_at_filter.rb b/app/models/queries/projects/filters/latest_activity_at_filter.rb index 532f865335..ea1168ec26 100644 --- a/app/models/queries/projects/filters/latest_activity_at_filter.rb +++ b/app/models/queries/projects/filters/latest_activity_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/name_and_identifier_filter.rb b/app/models/queries/projects/filters/name_and_identifier_filter.rb index 11e948eacd..83d4b0a1e3 100644 --- a/app/models/queries/projects/filters/name_and_identifier_filter.rb +++ b/app/models/queries/projects/filters/name_and_identifier_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/parent_filter.rb b/app/models/queries/projects/filters/parent_filter.rb index e839e2a2a5..dd78debe2f 100644 --- a/app/models/queries/projects/filters/parent_filter.rb +++ b/app/models/queries/projects/filters/parent_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/principal_filter.rb b/app/models/queries/projects/filters/principal_filter.rb index 75bf874286..eccffb6f61 100644 --- a/app/models/queries/projects/filters/principal_filter.rb +++ b/app/models/queries/projects/filters/principal_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/project_filter.rb b/app/models/queries/projects/filters/project_filter.rb index fe4cbe03f7..9aa5fdbde2 100644 --- a/app/models/queries/projects/filters/project_filter.rb +++ b/app/models/queries/projects/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/project_status_filter.rb b/app/models/queries/projects/filters/project_status_filter.rb index 33f65728fb..61351dbf87 100644 --- a/app/models/queries/projects/filters/project_status_filter.rb +++ b/app/models/queries/projects/filters/project_status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/public_filter.rb b/app/models/queries/projects/filters/public_filter.rb index 4122c32648..c510fe2082 100644 --- a/app/models/queries/projects/filters/public_filter.rb +++ b/app/models/queries/projects/filters/public_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/templated_filter.rb b/app/models/queries/projects/filters/templated_filter.rb index c27dd01001..e40e99383e 100644 --- a/app/models/queries/projects/filters/templated_filter.rb +++ b/app/models/queries/projects/filters/templated_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/type_filter.rb b/app/models/queries/projects/filters/type_filter.rb index 2fd93a23c1..361df0d882 100644 --- a/app/models/queries/projects/filters/type_filter.rb +++ b/app/models/queries/projects/filters/type_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/typeahead_filter.rb b/app/models/queries/projects/filters/typeahead_filter.rb index 8b6f7993f5..c8e92f1735 100644 --- a/app/models/queries/projects/filters/typeahead_filter.rb +++ b/app/models/queries/projects/filters/typeahead_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/user_action_filter.rb b/app/models/queries/projects/filters/user_action_filter.rb index 2deda4c567..050e28ead2 100644 --- a/app/models/queries/projects/filters/user_action_filter.rb +++ b/app/models/queries/projects/filters/user_action_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/filters/visible_filter.rb b/app/models/queries/projects/filters/visible_filter.rb index a84b58541f..8f61723c7e 100644 --- a/app/models/queries/projects/filters/visible_filter.rb +++ b/app/models/queries/projects/filters/visible_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/custom_field_order.rb b/app/models/queries/projects/orders/custom_field_order.rb index 1360e3c829..3231e0dd55 100644 --- a/app/models/queries/projects/orders/custom_field_order.rb +++ b/app/models/queries/projects/orders/custom_field_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/default_order.rb b/app/models/queries/projects/orders/default_order.rb index db1bd86570..a9895614f4 100644 --- a/app/models/queries/projects/orders/default_order.rb +++ b/app/models/queries/projects/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/latest_activity_at_order.rb b/app/models/queries/projects/orders/latest_activity_at_order.rb index 84a6098914..b8c63f9ae2 100644 --- a/app/models/queries/projects/orders/latest_activity_at_order.rb +++ b/app/models/queries/projects/orders/latest_activity_at_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/name_order.rb b/app/models/queries/projects/orders/name_order.rb index d2690358e2..9036bfe8ac 100644 --- a/app/models/queries/projects/orders/name_order.rb +++ b/app/models/queries/projects/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/project_status_order.rb b/app/models/queries/projects/orders/project_status_order.rb index a79c9513a6..b1aa370bdd 100644 --- a/app/models/queries/projects/orders/project_status_order.rb +++ b/app/models/queries/projects/orders/project_status_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/required_disk_space_order.rb b/app/models/queries/projects/orders/required_disk_space_order.rb index c7bf66d645..2eedbf6b5a 100644 --- a/app/models/queries/projects/orders/required_disk_space_order.rb +++ b/app/models/queries/projects/orders/required_disk_space_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/orders/typeahead_order.rb b/app/models/queries/projects/orders/typeahead_order.rb index 58551835d2..4cefc83650 100644 --- a/app/models/queries/projects/orders/typeahead_order.rb +++ b/app/models/queries/projects/orders/typeahead_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/projects/project_query.rb b/app/models/queries/projects/project_query.rb index c549a676b9..caf731fbcf 100644 --- a/app/models/queries/projects/project_query.rb +++ b/app/models/queries/projects/project_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries.rb b/app/models/queries/queries.rb index 20e34d96c6..bd21d32de1 100644 --- a/app/models/queries/queries.rb +++ b/app/models/queries/queries.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/hidden_filter.rb b/app/models/queries/queries/filters/hidden_filter.rb index 925fe5a15d..45c59f901b 100644 --- a/app/models/queries/queries/filters/hidden_filter.rb +++ b/app/models/queries/queries/filters/hidden_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/id_filter.rb b/app/models/queries/queries/filters/id_filter.rb index 727bc6dc9e..09719724c4 100644 --- a/app/models/queries/queries/filters/id_filter.rb +++ b/app/models/queries/queries/filters/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/project_filter.rb b/app/models/queries/queries/filters/project_filter.rb index 6231174ae1..a9f7aecc33 100644 --- a/app/models/queries/queries/filters/project_filter.rb +++ b/app/models/queries/queries/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/project_identifier_filter.rb b/app/models/queries/queries/filters/project_identifier_filter.rb index c2c3ecec1e..60708d059d 100644 --- a/app/models/queries/queries/filters/project_identifier_filter.rb +++ b/app/models/queries/queries/filters/project_identifier_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/query_filter.rb b/app/models/queries/queries/filters/query_filter.rb index 6d46e24b0e..3d8ef9bdbb 100644 --- a/app/models/queries/queries/filters/query_filter.rb +++ b/app/models/queries/queries/filters/query_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/filters/updated_at_filter.rb b/app/models/queries/queries/filters/updated_at_filter.rb index be6b9b430c..7a72dcd8a2 100644 --- a/app/models/queries/queries/filters/updated_at_filter.rb +++ b/app/models/queries/queries/filters/updated_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/queries/query_query.rb b/app/models/queries/queries/query_query.rb index 51cbc9cb4e..aeb623eb10 100644 --- a/app/models/queries/queries/query_query.rb +++ b/app/models/queries/queries/query_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/register.rb b/app/models/queries/register.rb index bd4d3c6839..810c21fe48 100644 --- a/app/models/queries/register.rb +++ b/app/models/queries/register.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations.rb b/app/models/queries/relations.rb index 63df86ed6f..071310e01e 100644 --- a/app/models/queries/relations.rb +++ b/app/models/queries/relations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/from_filter.rb b/app/models/queries/relations/filters/from_filter.rb index 78d962c063..392dc2ef86 100644 --- a/app/models/queries/relations/filters/from_filter.rb +++ b/app/models/queries/relations/filters/from_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/id_filter.rb b/app/models/queries/relations/filters/id_filter.rb index d8f515bfb2..0e9b277052 100644 --- a/app/models/queries/relations/filters/id_filter.rb +++ b/app/models/queries/relations/filters/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/involved_filter.rb b/app/models/queries/relations/filters/involved_filter.rb index 5b271f29bc..d2b4dc68ee 100644 --- a/app/models/queries/relations/filters/involved_filter.rb +++ b/app/models/queries/relations/filters/involved_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/relation_filter.rb b/app/models/queries/relations/filters/relation_filter.rb index 29488df696..844dcd740a 100644 --- a/app/models/queries/relations/filters/relation_filter.rb +++ b/app/models/queries/relations/filters/relation_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/to_filter.rb b/app/models/queries/relations/filters/to_filter.rb index 48e5087f50..2fefde7cdd 100644 --- a/app/models/queries/relations/filters/to_filter.rb +++ b/app/models/queries/relations/filters/to_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/type_filter.rb b/app/models/queries/relations/filters/type_filter.rb index 4f2b49afda..b1e04321c7 100644 --- a/app/models/queries/relations/filters/type_filter.rb +++ b/app/models/queries/relations/filters/type_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/filters/visibility_checking.rb b/app/models/queries/relations/filters/visibility_checking.rb index 1227e38ba4..d370a2c23e 100644 --- a/app/models/queries/relations/filters/visibility_checking.rb +++ b/app/models/queries/relations/filters/visibility_checking.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/orders/default_order.rb b/app/models/queries/relations/orders/default_order.rb index 612e5912cf..91aae7a2be 100644 --- a/app/models/queries/relations/orders/default_order.rb +++ b/app/models/queries/relations/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/relations/relation_query.rb b/app/models/queries/relations/relation_query.rb index 2043f19914..81c274a482 100644 --- a/app/models/queries/relations/relation_query.rb +++ b/app/models/queries/relations/relation_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/roles.rb b/app/models/queries/roles.rb index 0603d12963..668c2d70c5 100644 --- a/app/models/queries/roles.rb +++ b/app/models/queries/roles.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/roles/filters/grantable_filter.rb b/app/models/queries/roles/filters/grantable_filter.rb index 14bf533041..c15a53431e 100644 --- a/app/models/queries/roles/filters/grantable_filter.rb +++ b/app/models/queries/roles/filters/grantable_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/roles/filters/role_filter.rb b/app/models/queries/roles/filters/role_filter.rb index 18c915e503..a79b059ca8 100644 --- a/app/models/queries/roles/filters/role_filter.rb +++ b/app/models/queries/roles/filters/role_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/roles/filters/unit_filter.rb b/app/models/queries/roles/filters/unit_filter.rb index 0c71b268de..46476c0678 100644 --- a/app/models/queries/roles/filters/unit_filter.rb +++ b/app/models/queries/roles/filters/unit_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/roles/role_query.rb b/app/models/queries/roles/role_query.rb index 3ce8e3d49d..3ce01472c8 100644 --- a/app/models/queries/roles/role_query.rb +++ b/app/models/queries/roles/role_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/scopes/having_views.rb b/app/models/queries/scopes/having_views.rb index 23ffefcf25..4c8203b461 100644 --- a/app/models/queries/scopes/having_views.rb +++ b/app/models/queries/scopes/having_views.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/scopes/visible.rb b/app/models/queries/scopes/visible.rb index e0b11c4077..b38f44a3d5 100644 --- a/app/models/queries/scopes/visible.rb +++ b/app/models/queries/scopes/visible.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/serialization/hash.rb b/app/models/queries/serialization/hash.rb index a894691b8f..65f0a52f69 100644 --- a/app/models/queries/serialization/hash.rb +++ b/app/models/queries/serialization/hash.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users.rb b/app/models/queries/users.rb index aa1d7c7504..797a70000d 100644 --- a/app/models/queries/users.rb +++ b/app/models/queries/users.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/any_name_attribute_filter.rb b/app/models/queries/users/filters/any_name_attribute_filter.rb index 1cfc213857..7bec231cf4 100644 --- a/app/models/queries/users/filters/any_name_attribute_filter.rb +++ b/app/models/queries/users/filters/any_name_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/blocked_filter.rb b/app/models/queries/users/filters/blocked_filter.rb index 38e10f3d26..dc04837d88 100644 --- a/app/models/queries/users/filters/blocked_filter.rb +++ b/app/models/queries/users/filters/blocked_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/group_filter.rb b/app/models/queries/users/filters/group_filter.rb index f860a371b1..7757ed4e38 100644 --- a/app/models/queries/users/filters/group_filter.rb +++ b/app/models/queries/users/filters/group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/login_filter.rb b/app/models/queries/users/filters/login_filter.rb index 34ad131793..178d6a4d8a 100644 --- a/app/models/queries/users/filters/login_filter.rb +++ b/app/models/queries/users/filters/login_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/name_filter.rb b/app/models/queries/users/filters/name_filter.rb index 9aeabf9ca2..d712bd6fdf 100644 --- a/app/models/queries/users/filters/name_filter.rb +++ b/app/models/queries/users/filters/name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/status_filter.rb b/app/models/queries/users/filters/status_filter.rb index a901df7c41..326677133a 100644 --- a/app/models/queries/users/filters/status_filter.rb +++ b/app/models/queries/users/filters/status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/filters/user_filter.rb b/app/models/queries/users/filters/user_filter.rb index bdbb5ab4d7..618a432d1c 100644 --- a/app/models/queries/users/filters/user_filter.rb +++ b/app/models/queries/users/filters/user_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/orders/default_order.rb b/app/models/queries/users/orders/default_order.rb index 5a79ec9907..ed4614d182 100644 --- a/app/models/queries/users/orders/default_order.rb +++ b/app/models/queries/users/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/orders/group_order.rb b/app/models/queries/users/orders/group_order.rb index 2767b9c5da..f80d700835 100644 --- a/app/models/queries/users/orders/group_order.rb +++ b/app/models/queries/users/orders/group_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/orders/name_order.rb b/app/models/queries/users/orders/name_order.rb index 77abf95028..5347fae8d9 100644 --- a/app/models/queries/users/orders/name_order.rb +++ b/app/models/queries/users/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/users/user_query.rb b/app/models/queries/users/user_query.rb index d0587cde82..f8523284c0 100644 --- a/app/models/queries/users/user_query.rb +++ b/app/models/queries/users/user_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions.rb b/app/models/queries/versions.rb index 0b77dd3f73..dc436860ce 100644 --- a/app/models/queries/versions.rb +++ b/app/models/queries/versions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions/filters/sharing_filter.rb b/app/models/queries/versions/filters/sharing_filter.rb index 775ee652e2..726ee5df2f 100644 --- a/app/models/queries/versions/filters/sharing_filter.rb +++ b/app/models/queries/versions/filters/sharing_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions/filters/version_filter.rb b/app/models/queries/versions/filters/version_filter.rb index cc65597ae5..b51da2982e 100644 --- a/app/models/queries/versions/filters/version_filter.rb +++ b/app/models/queries/versions/filters/version_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions/orders/name_order.rb b/app/models/queries/versions/orders/name_order.rb index 54dfef5f83..1416ef7680 100644 --- a/app/models/queries/versions/orders/name_order.rb +++ b/app/models/queries/versions/orders/name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions/orders/semver_name_order.rb b/app/models/queries/versions/orders/semver_name_order.rb index 63b014553b..d144f9078e 100644 --- a/app/models/queries/versions/orders/semver_name_order.rb +++ b/app/models/queries/versions/orders/semver_name_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/versions/version_query.rb b/app/models/queries/versions/version_query.rb index f5c4da4f2f..58fa4335d8 100644 --- a/app/models/queries/versions/version_query.rb +++ b/app/models/queries/versions/version_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views.rb b/app/models/queries/views.rb index 682171a212..a7baa88ce4 100644 --- a/app/models/queries/views.rb +++ b/app/models/queries/views.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views/filters/project_filter.rb b/app/models/queries/views/filters/project_filter.rb index 447d7ed9d2..aa46fcc088 100644 --- a/app/models/queries/views/filters/project_filter.rb +++ b/app/models/queries/views/filters/project_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views/filters/type_filter.rb b/app/models/queries/views/filters/type_filter.rb index 73e6956538..cbb461c0d2 100644 --- a/app/models/queries/views/filters/type_filter.rb +++ b/app/models/queries/views/filters/type_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views/filters/view_filter.rb b/app/models/queries/views/filters/view_filter.rb index 5118d7d8a5..a78de34281 100644 --- a/app/models/queries/views/filters/view_filter.rb +++ b/app/models/queries/views/filters/view_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views/orders/default_order.rb b/app/models/queries/views/orders/default_order.rb index 324f0fc403..0f821b8eb5 100644 --- a/app/models/queries/views/orders/default_order.rb +++ b/app/models/queries/views/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/views/view_query.rb b/app/models/queries/views/view_query.rb index ad29bc5d03..7cddbd5a1b 100644 --- a/app/models/queries/views/view_query.rb +++ b/app/models/queries/views/view_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages.rb b/app/models/queries/work_packages.rb index 4855307eeb..5472b9a64a 100644 --- a/app/models/queries/work_packages.rb +++ b/app/models/queries/work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/custom_field_column.rb b/app/models/queries/work_packages/columns/custom_field_column.rb index 06d0298dc6..5e090523a8 100644 --- a/app/models/queries/work_packages/columns/custom_field_column.rb +++ b/app/models/queries/work_packages/columns/custom_field_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/manual_sorting_column.rb b/app/models/queries/work_packages/columns/manual_sorting_column.rb index ca57304735..8d1fe01b20 100644 --- a/app/models/queries/work_packages/columns/manual_sorting_column.rb +++ b/app/models/queries/work_packages/columns/manual_sorting_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/property_column.rb b/app/models/queries/work_packages/columns/property_column.rb index d843c4c377..a85ec63325 100644 --- a/app/models/queries/work_packages/columns/property_column.rb +++ b/app/models/queries/work_packages/columns/property_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/relation_column.rb b/app/models/queries/work_packages/columns/relation_column.rb index 4d653ced84..8507348ed6 100644 --- a/app/models/queries/work_packages/columns/relation_column.rb +++ b/app/models/queries/work_packages/columns/relation_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/relation_of_type_column.rb b/app/models/queries/work_packages/columns/relation_of_type_column.rb index 3b0b523282..760f753e3a 100644 --- a/app/models/queries/work_packages/columns/relation_of_type_column.rb +++ b/app/models/queries/work_packages/columns/relation_of_type_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/relation_to_type_column.rb b/app/models/queries/work_packages/columns/relation_to_type_column.rb index fb55938596..e5e93bc595 100644 --- a/app/models/queries/work_packages/columns/relation_to_type_column.rb +++ b/app/models/queries/work_packages/columns/relation_to_type_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/columns/work_package_column.rb b/app/models/queries/work_packages/columns/work_package_column.rb index c6093de050..13a80fad9c 100644 --- a/app/models/queries/work_packages/columns/work_package_column.rb +++ b/app/models/queries/work_packages/columns/work_package_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/common/manual_sorting.rb b/app/models/queries/work_packages/common/manual_sorting.rb index 671fdb16ab..5ac11b607c 100644 --- a/app/models/queries/work_packages/common/manual_sorting.rb +++ b/app/models/queries/work_packages/common/manual_sorting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter.rb b/app/models/queries/work_packages/filter.rb index 34da7ec344..34cdadb623 100644 --- a/app/models/queries/work_packages/filter.rb +++ b/app/models/queries/work_packages/filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/assigned_to_filter.rb b/app/models/queries/work_packages/filter/assigned_to_filter.rb index 407a3ca591..194a16b8e1 100644 --- a/app/models/queries/work_packages/filter/assigned_to_filter.rb +++ b/app/models/queries/work_packages/filter/assigned_to_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/assignee_or_group_filter.rb b/app/models/queries/work_packages/filter/assignee_or_group_filter.rb index 12b3fd40a6..b564b37994 100644 --- a/app/models/queries/work_packages/filter/assignee_or_group_filter.rb +++ b/app/models/queries/work_packages/filter/assignee_or_group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/attachment_base_filter.rb b/app/models/queries/work_packages/filter/attachment_base_filter.rb index 3780f0a7a7..914d1f65ac 100644 --- a/app/models/queries/work_packages/filter/attachment_base_filter.rb +++ b/app/models/queries/work_packages/filter/attachment_base_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/attachment_content_filter.rb b/app/models/queries/work_packages/filter/attachment_content_filter.rb index f054820f5e..4284d51d0f 100644 --- a/app/models/queries/work_packages/filter/attachment_content_filter.rb +++ b/app/models/queries/work_packages/filter/attachment_content_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/attachment_file_name_filter.rb b/app/models/queries/work_packages/filter/attachment_file_name_filter.rb index 07aefa36fe..9b40183418 100644 --- a/app/models/queries/work_packages/filter/attachment_file_name_filter.rb +++ b/app/models/queries/work_packages/filter/attachment_file_name_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/author_filter.rb b/app/models/queries/work_packages/filter/author_filter.rb index 17a82092ec..d51183e92b 100644 --- a/app/models/queries/work_packages/filter/author_filter.rb +++ b/app/models/queries/work_packages/filter/author_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/blocked_filter.rb b/app/models/queries/work_packages/filter/blocked_filter.rb index 0e3b0170c8..0cc457b497 100644 --- a/app/models/queries/work_packages/filter/blocked_filter.rb +++ b/app/models/queries/work_packages/filter/blocked_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/blocks_filter.rb b/app/models/queries/work_packages/filter/blocks_filter.rb index bf2319e261..1718b44c9a 100644 --- a/app/models/queries/work_packages/filter/blocks_filter.rb +++ b/app/models/queries/work_packages/filter/blocks_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/category_filter.rb b/app/models/queries/work_packages/filter/category_filter.rb index ecf749f216..78cd20d172 100644 --- a/app/models/queries/work_packages/filter/category_filter.rb +++ b/app/models/queries/work_packages/filter/category_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/comment_filter.rb b/app/models/queries/work_packages/filter/comment_filter.rb index c174bf68ee..2ee1b3837e 100644 --- a/app/models/queries/work_packages/filter/comment_filter.rb +++ b/app/models/queries/work_packages/filter/comment_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/created_at_filter.rb b/app/models/queries/work_packages/filter/created_at_filter.rb index 41aa106497..7ecf341ec6 100644 --- a/app/models/queries/work_packages/filter/created_at_filter.rb +++ b/app/models/queries/work_packages/filter/created_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/custom_field_context.rb b/app/models/queries/work_packages/filter/custom_field_context.rb index e0197bfc3a..a77b704833 100644 --- a/app/models/queries/work_packages/filter/custom_field_context.rb +++ b/app/models/queries/work_packages/filter/custom_field_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/custom_field_filter.rb b/app/models/queries/work_packages/filter/custom_field_filter.rb index 29f0efdffc..93db29f89c 100644 --- a/app/models/queries/work_packages/filter/custom_field_filter.rb +++ b/app/models/queries/work_packages/filter/custom_field_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/dates_interval_filter.rb b/app/models/queries/work_packages/filter/dates_interval_filter.rb index 645e991f53..4e3a5abc4f 100644 --- a/app/models/queries/work_packages/filter/dates_interval_filter.rb +++ b/app/models/queries/work_packages/filter/dates_interval_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/description_filter.rb b/app/models/queries/work_packages/filter/description_filter.rb index 4139bc42be..4756cb5f09 100644 --- a/app/models/queries/work_packages/filter/description_filter.rb +++ b/app/models/queries/work_packages/filter/description_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/done_ratio_filter.rb b/app/models/queries/work_packages/filter/done_ratio_filter.rb index 3c0e0dd05b..d0dcfd2fa4 100644 --- a/app/models/queries/work_packages/filter/done_ratio_filter.rb +++ b/app/models/queries/work_packages/filter/done_ratio_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/due_date_filter.rb b/app/models/queries/work_packages/filter/due_date_filter.rb index b506a0c937..d7d74b67d9 100644 --- a/app/models/queries/work_packages/filter/due_date_filter.rb +++ b/app/models/queries/work_packages/filter/due_date_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/duplicated_filter.rb b/app/models/queries/work_packages/filter/duplicated_filter.rb index fb9d87be7b..cea541e340 100644 --- a/app/models/queries/work_packages/filter/duplicated_filter.rb +++ b/app/models/queries/work_packages/filter/duplicated_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/duplicates_filter.rb b/app/models/queries/work_packages/filter/duplicates_filter.rb index 995d68d28b..c8a1727623 100644 --- a/app/models/queries/work_packages/filter/duplicates_filter.rb +++ b/app/models/queries/work_packages/filter/duplicates_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/estimated_hours_filter.rb b/app/models/queries/work_packages/filter/estimated_hours_filter.rb index 8fb6b00524..0cee32f879 100644 --- a/app/models/queries/work_packages/filter/estimated_hours_filter.rb +++ b/app/models/queries/work_packages/filter/estimated_hours_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/filter_configuration.rb b/app/models/queries/work_packages/filter/filter_configuration.rb index b95deedefa..b8ecfd6f53 100644 --- a/app/models/queries/work_packages/filter/filter_configuration.rb +++ b/app/models/queries/work_packages/filter/filter_configuration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/filter_for_wp_mixin.rb b/app/models/queries/work_packages/filter/filter_for_wp_mixin.rb index 8987768654..64339330ab 100644 --- a/app/models/queries/work_packages/filter/filter_for_wp_mixin.rb +++ b/app/models/queries/work_packages/filter/filter_for_wp_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/filter_on_directed_relations_mixin.rb b/app/models/queries/work_packages/filter/filter_on_directed_relations_mixin.rb index 29c4af3d1c..39c51bb9f6 100644 --- a/app/models/queries/work_packages/filter/filter_on_directed_relations_mixin.rb +++ b/app/models/queries/work_packages/filter/filter_on_directed_relations_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/filter_on_undirected_relations_mixin.rb b/app/models/queries/work_packages/filter/filter_on_undirected_relations_mixin.rb index 6d5df0092c..77cd6acaa3 100644 --- a/app/models/queries/work_packages/filter/filter_on_undirected_relations_mixin.rb +++ b/app/models/queries/work_packages/filter/filter_on_undirected_relations_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/follows_filter.rb b/app/models/queries/work_packages/filter/follows_filter.rb index 0a9ed439ac..4a73f73b32 100644 --- a/app/models/queries/work_packages/filter/follows_filter.rb +++ b/app/models/queries/work_packages/filter/follows_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/group_filter.rb b/app/models/queries/work_packages/filter/group_filter.rb index 751432f8ee..96f02a7394 100644 --- a/app/models/queries/work_packages/filter/group_filter.rb +++ b/app/models/queries/work_packages/filter/group_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/id_filter.rb b/app/models/queries/work_packages/filter/id_filter.rb index c65be7d039..ed52e4bae7 100644 --- a/app/models/queries/work_packages/filter/id_filter.rb +++ b/app/models/queries/work_packages/filter/id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/includes_filter.rb b/app/models/queries/work_packages/filter/includes_filter.rb index 5f81edb4ab..c728ee7c58 100644 --- a/app/models/queries/work_packages/filter/includes_filter.rb +++ b/app/models/queries/work_packages/filter/includes_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/manual_sort_filter.rb b/app/models/queries/work_packages/filter/manual_sort_filter.rb index 685901b9d6..96cad1b736 100644 --- a/app/models/queries/work_packages/filter/manual_sort_filter.rb +++ b/app/models/queries/work_packages/filter/manual_sort_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/me_value_filter_mixin.rb b/app/models/queries/work_packages/filter/me_value_filter_mixin.rb index aa22f47b8f..df51abc096 100644 --- a/app/models/queries/work_packages/filter/me_value_filter_mixin.rb +++ b/app/models/queries/work_packages/filter/me_value_filter_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/milestone_filter.rb b/app/models/queries/work_packages/filter/milestone_filter.rb index 37d9a6dbff..f78608a17d 100644 --- a/app/models/queries/work_packages/filter/milestone_filter.rb +++ b/app/models/queries/work_packages/filter/milestone_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/only_subproject_filter.rb b/app/models/queries/work_packages/filter/only_subproject_filter.rb index 2963df9e84..9a12432fad 100644 --- a/app/models/queries/work_packages/filter/only_subproject_filter.rb +++ b/app/models/queries/work_packages/filter/only_subproject_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/or_filter_for_wp_mixin.rb b/app/models/queries/work_packages/filter/or_filter_for_wp_mixin.rb index f7cd5c2f5f..0c3124ddc2 100644 --- a/app/models/queries/work_packages/filter/or_filter_for_wp_mixin.rb +++ b/app/models/queries/work_packages/filter/or_filter_for_wp_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/parent_filter.rb b/app/models/queries/work_packages/filter/parent_filter.rb index 0db30d7f79..3706725361 100644 --- a/app/models/queries/work_packages/filter/parent_filter.rb +++ b/app/models/queries/work_packages/filter/parent_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/partof_filter.rb b/app/models/queries/work_packages/filter/partof_filter.rb index 5990c3623b..8d66f36d13 100644 --- a/app/models/queries/work_packages/filter/partof_filter.rb +++ b/app/models/queries/work_packages/filter/partof_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/precedes_filter.rb b/app/models/queries/work_packages/filter/precedes_filter.rb index d94bb53a5c..a9cf1fe467 100644 --- a/app/models/queries/work_packages/filter/precedes_filter.rb +++ b/app/models/queries/work_packages/filter/precedes_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/principal_base_filter.rb b/app/models/queries/work_packages/filter/principal_base_filter.rb index 6abe954afb..33b9a57459 100644 --- a/app/models/queries/work_packages/filter/principal_base_filter.rb +++ b/app/models/queries/work_packages/filter/principal_base_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/principal_loader.rb b/app/models/queries/work_packages/filter/principal_loader.rb index a59552db1e..7d84f2b9aa 100644 --- a/app/models/queries/work_packages/filter/principal_loader.rb +++ b/app/models/queries/work_packages/filter/principal_loader.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/priority_filter.rb b/app/models/queries/work_packages/filter/priority_filter.rb index efd36b20cd..aae5f613ab 100644 --- a/app/models/queries/work_packages/filter/priority_filter.rb +++ b/app/models/queries/work_packages/filter/priority_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/project_filter.rb b/app/models/queries/work_packages/filter/project_filter.rb index 73eff2532c..8eab61915f 100644 --- a/app/models/queries/work_packages/filter/project_filter.rb +++ b/app/models/queries/work_packages/filter/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/relatable_filter.rb b/app/models/queries/work_packages/filter/relatable_filter.rb index 06d5154cb1..41d9e967d8 100644 --- a/app/models/queries/work_packages/filter/relatable_filter.rb +++ b/app/models/queries/work_packages/filter/relatable_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/relates_filter.rb b/app/models/queries/work_packages/filter/relates_filter.rb index 50d6b1605d..f9e5ac7d8e 100644 --- a/app/models/queries/work_packages/filter/relates_filter.rb +++ b/app/models/queries/work_packages/filter/relates_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/required_filter.rb b/app/models/queries/work_packages/filter/required_filter.rb index dba4f55aef..7ce8947609 100644 --- a/app/models/queries/work_packages/filter/required_filter.rb +++ b/app/models/queries/work_packages/filter/required_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/requires_filter.rb b/app/models/queries/work_packages/filter/requires_filter.rb index 9371fa1b66..ce77d52939 100644 --- a/app/models/queries/work_packages/filter/requires_filter.rb +++ b/app/models/queries/work_packages/filter/requires_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/responsible_filter.rb b/app/models/queries/work_packages/filter/responsible_filter.rb index c9f2098ea8..5961e4ef2f 100644 --- a/app/models/queries/work_packages/filter/responsible_filter.rb +++ b/app/models/queries/work_packages/filter/responsible_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/role_filter.rb b/app/models/queries/work_packages/filter/role_filter.rb index 94292a3895..1253a8d9cc 100644 --- a/app/models/queries/work_packages/filter/role_filter.rb +++ b/app/models/queries/work_packages/filter/role_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/search_filter.rb b/app/models/queries/work_packages/filter/search_filter.rb index 7e0afd90b7..b40fe3d7ca 100644 --- a/app/models/queries/work_packages/filter/search_filter.rb +++ b/app/models/queries/work_packages/filter/search_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/start_date_filter.rb b/app/models/queries/work_packages/filter/start_date_filter.rb index 98dfb903ad..0697274f02 100644 --- a/app/models/queries/work_packages/filter/start_date_filter.rb +++ b/app/models/queries/work_packages/filter/start_date_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/status_filter.rb b/app/models/queries/work_packages/filter/status_filter.rb index c79227cbad..6583f1997a 100644 --- a/app/models/queries/work_packages/filter/status_filter.rb +++ b/app/models/queries/work_packages/filter/status_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/subject_filter.rb b/app/models/queries/work_packages/filter/subject_filter.rb index c5122e9580..c6e26d9028 100644 --- a/app/models/queries/work_packages/filter/subject_filter.rb +++ b/app/models/queries/work_packages/filter/subject_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/subject_or_id_filter.rb b/app/models/queries/work_packages/filter/subject_or_id_filter.rb index 88604cbba8..a4e4708fcd 100644 --- a/app/models/queries/work_packages/filter/subject_or_id_filter.rb +++ b/app/models/queries/work_packages/filter/subject_or_id_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/subproject_filter.rb b/app/models/queries/work_packages/filter/subproject_filter.rb index c70d57e49c..05aff3a364 100644 --- a/app/models/queries/work_packages/filter/subproject_filter.rb +++ b/app/models/queries/work_packages/filter/subproject_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/text_filter_on_join_mixin.rb b/app/models/queries/work_packages/filter/text_filter_on_join_mixin.rb index 9f35128c08..57a6d1697e 100644 --- a/app/models/queries/work_packages/filter/text_filter_on_join_mixin.rb +++ b/app/models/queries/work_packages/filter/text_filter_on_join_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/type_filter.rb b/app/models/queries/work_packages/filter/type_filter.rb index fdac164170..4ac393a79f 100644 --- a/app/models/queries/work_packages/filter/type_filter.rb +++ b/app/models/queries/work_packages/filter/type_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/typeahead_filter.rb b/app/models/queries/work_packages/filter/typeahead_filter.rb index af0784fcf1..a9ea3ba0aa 100644 --- a/app/models/queries/work_packages/filter/typeahead_filter.rb +++ b/app/models/queries/work_packages/filter/typeahead_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/updated_at_filter.rb b/app/models/queries/work_packages/filter/updated_at_filter.rb index 6da2a0c04e..07e02fd75c 100644 --- a/app/models/queries/work_packages/filter/updated_at_filter.rb +++ b/app/models/queries/work_packages/filter/updated_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/version_filter.rb b/app/models/queries/work_packages/filter/version_filter.rb index ce75a590c4..f7c8597a26 100644 --- a/app/models/queries/work_packages/filter/version_filter.rb +++ b/app/models/queries/work_packages/filter/version_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/watcher_filter.rb b/app/models/queries/work_packages/filter/watcher_filter.rb index cce5524047..19d7ad3779 100644 --- a/app/models/queries/work_packages/filter/watcher_filter.rb +++ b/app/models/queries/work_packages/filter/watcher_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter/work_package_filter.rb b/app/models/queries/work_packages/filter/work_package_filter.rb index 10dbd5261b..66451ce832 100644 --- a/app/models/queries/work_packages/filter/work_package_filter.rb +++ b/app/models/queries/work_packages/filter/work_package_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/queries/work_packages/filter_serializer.rb b/app/models/queries/work_packages/filter_serializer.rb index 52396fbdbf..d99caaef7e 100644 --- a/app/models/queries/work_packages/filter_serializer.rb +++ b/app/models/queries/work_packages/filter_serializer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query.rb b/app/models/query.rb index 1cb3ccb5de..cd772411f6 100644 --- a/app/models/query.rb +++ b/app/models/query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/highlighting.rb b/app/models/query/highlighting.rb index a6876fd3fd..c95c61d2a7 100644 --- a/app/models/query/highlighting.rb +++ b/app/models/query/highlighting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/manual_sorting.rb b/app/models/query/manual_sorting.rb index 8a6fbb0a8a..ff28fe186d 100644 --- a/app/models/query/manual_sorting.rb +++ b/app/models/query/manual_sorting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/results.rb b/app/models/query/results.rb index 1c758b2439..ca8c1447f9 100644 --- a/app/models/query/results.rb +++ b/app/models/query/results.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/results/group_by.rb b/app/models/query/results/group_by.rb index e990754a32..06ad252123 100644 --- a/app/models/query/results/group_by.rb +++ b/app/models/query/results/group_by.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/results/sums.rb b/app/models/query/results/sums.rb index b11887e35e..cd50fa6117 100644 --- a/app/models/query/results/sums.rb +++ b/app/models/query/results/sums.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/sort_criteria.rb b/app/models/query/sort_criteria.rb index b12a851599..6c3465ffac 100644 --- a/app/models/query/sort_criteria.rb +++ b/app/models/query/sort_criteria.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/statement_invalid.rb b/app/models/query/statement_invalid.rb index d1ae86abaf..48b2164f9a 100644 --- a/app/models/query/statement_invalid.rb +++ b/app/models/query/statement_invalid.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/query/timelines.rb b/app/models/query/timelines.rb index 2011a6b76a..052dbcb6e1 100644 --- a/app/models/query/timelines.rb +++ b/app/models/query/timelines.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/relation.rb b/app/models/relation.rb index 642a89f2af..fc42850146 100644 --- a/app/models/relation.rb +++ b/app/models/relation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/relations/scopes/follows_non_manual_ancestors.rb b/app/models/relations/scopes/follows_non_manual_ancestors.rb index 5f44bd8dd1..c7237da71a 100644 --- a/app/models/relations/scopes/follows_non_manual_ancestors.rb +++ b/app/models/relations/scopes/follows_non_manual_ancestors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/relations/scopes/visible.rb b/app/models/relations/scopes/visible.rb index d1b30612d8..f86dd6896a 100644 --- a/app/models/relations/scopes/visible.rb +++ b/app/models/relations/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/repository.rb b/app/models/repository.rb index bb15b05899..f47cf55908 100644 --- a/app/models/repository.rb +++ b/app/models/repository.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/repository/git.rb b/app/models/repository/git.rb index 3297137116..4db90e081a 100644 --- a/app/models/repository/git.rb +++ b/app/models/repository/git.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/repository/subversion.rb b/app/models/repository/subversion.rb index 05a9a136fe..22e67a4dd9 100644 --- a/app/models/repository/subversion.rb +++ b/app/models/repository/subversion.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/role.rb b/app/models/role.rb index 128a62633e..accdb3a203 100644 --- a/app/models/role.rb +++ b/app/models/role.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/role_permission.rb b/app/models/role_permission.rb index 7e951b6a0c..89a7b43762 100644 --- a/app/models/role_permission.rb +++ b/app/models/role_permission.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/scopes/scoped.rb b/app/models/scopes/scoped.rb index 4f51267469..c95aa48460 100644 --- a/app/models/scopes/scoped.rb +++ b/app/models/scopes/scoped.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/serializers/indifferent_hash_serializer.rb b/app/models/serializers/indifferent_hash_serializer.rb index ac4cfa7382..c14b953172 100644 --- a/app/models/serializers/indifferent_hash_serializer.rb +++ b/app/models/serializers/indifferent_hash_serializer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/sessions/sql_bypass.rb b/app/models/sessions/sql_bypass.rb index de16b223b5..4dbb70330d 100644 --- a/app/models/sessions/sql_bypass.rb +++ b/app/models/sessions/sql_bypass.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/sessions/user_session.rb b/app/models/sessions/user_session.rb index 304c79d25a..a07265f191 100644 --- a/app/models/sessions/user_session.rb +++ b/app/models/sessions/user_session.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/setting.rb b/app/models/setting.rb index 2edb8019eb..d207f1b064 100644 --- a/app/models/setting.rb +++ b/app/models/setting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/setting/aliases.rb b/app/models/setting/aliases.rb index 6e808f5708..0d03e8763e 100644 --- a/app/models/setting/aliases.rb +++ b/app/models/setting/aliases.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/setting/callbacks_helper.rb b/app/models/setting/callbacks_helper.rb index 985f03ffe8..01901871e4 100644 --- a/app/models/setting/callbacks_helper.rb +++ b/app/models/setting/callbacks_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/setting/self_registration.rb b/app/models/setting/self_registration.rb index f28783c061..424fe0f9c2 100644 --- a/app/models/setting/self_registration.rb +++ b/app/models/setting/self_registration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/status.rb b/app/models/status.rb index 94ccd7a426..bc625d3930 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/status/inexistent_status.rb b/app/models/status/inexistent_status.rb index 125b0b07b3..a09fa9bbb9 100644 --- a/app/models/status/inexistent_status.rb +++ b/app/models/status/inexistent_status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/system_user.rb b/app/models/system_user.rb index f70bca9fdb..82cde15168 100644 --- a/app/models/system_user.rb +++ b/app/models/system_user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/api.rb b/app/models/token/api.rb index 4356e53287..6a448c4cf1 100644 --- a/app/models/token/api.rb +++ b/app/models/token/api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/auto_login.rb b/app/models/token/auto_login.rb index 9feff00511..b6f1994002 100644 --- a/app/models/token/auto_login.rb +++ b/app/models/token/auto_login.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/backup.rb b/app/models/token/backup.rb index 7d96e17412..0812a093e8 100644 --- a/app/models/token/backup.rb +++ b/app/models/token/backup.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/enterprise_trial_key.rb b/app/models/token/enterprise_trial_key.rb index cac398bb12..dfaeaea06b 100644 --- a/app/models/token/enterprise_trial_key.rb +++ b/app/models/token/enterprise_trial_key.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/invitation.rb b/app/models/token/invitation.rb index 36692ded11..e37374a8d4 100644 --- a/app/models/token/invitation.rb +++ b/app/models/token/invitation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/recovery.rb b/app/models/token/recovery.rb index eaebd8137f..3b30a4835a 100644 --- a/app/models/token/recovery.rb +++ b/app/models/token/recovery.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/token/rss.rb b/app/models/token/rss.rb index b065f04cff..a2309c900c 100644 --- a/app/models/token/rss.rb +++ b/app/models/token/rss.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type.rb b/app/models/type.rb index f55b71ac23..841938fa0a 100644 --- a/app/models/type.rb +++ b/app/models/type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/attribute_group.rb b/app/models/type/attribute_group.rb index cfe2c52e81..dcf3ce6113 100644 --- a/app/models/type/attribute_group.rb +++ b/app/models/type/attribute_group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/attribute_groups.rb b/app/models/type/attribute_groups.rb index 322d00a4b2..9539b8939a 100644 --- a/app/models/type/attribute_groups.rb +++ b/app/models/type/attribute_groups.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/attributes.rb b/app/models/type/attributes.rb index 0f9a16638d..d63c7f2fb3 100644 --- a/app/models/type/attributes.rb +++ b/app/models/type/attributes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/form_group.rb b/app/models/type/form_group.rb index b806fb82b8..6110ccd603 100644 --- a/app/models/type/form_group.rb +++ b/app/models/type/form_group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/inexistent_type.rb b/app/models/type/inexistent_type.rb index 618f1380c3..70eec7d3de 100644 --- a/app/models/type/inexistent_type.rb +++ b/app/models/type/inexistent_type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/type/query_group.rb b/app/models/type/query_group.rb index 7b7b55402f..9666176530 100644 --- a/app/models/type/query_group.rb +++ b/app/models/type/query_group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/types/scopes/milestone.rb b/app/models/types/scopes/milestone.rb index 3362c98ab1..9592cb88ce 100644 --- a/app/models/types/scopes/milestone.rb +++ b/app/models/types/scopes/milestone.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user.rb b/app/models/user.rb index 0cdc75389a..2b07d72622 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_custom_field.rb b/app/models/user_custom_field.rb index 3c3a92a199..3ab4e911ec 100644 --- a/app/models/user_custom_field.rb +++ b/app/models/user_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_password.rb b/app/models/user_password.rb index 62a596e75b..0eab8bead2 100644 --- a/app/models/user_password.rb +++ b/app/models/user_password.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_password/bcrypt.rb b/app/models/user_password/bcrypt.rb index 0480c6ec5c..76f86a95cf 100644 --- a/app/models/user_password/bcrypt.rb +++ b/app/models/user_password/bcrypt.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_password/sha1.rb b/app/models/user_password/sha1.rb index a5a8b28cbd..5d710a27e2 100644 --- a/app/models/user_password/sha1.rb +++ b/app/models/user_password/sha1.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_preference.rb b/app/models/user_preference.rb index 9c861ea653..a6d35706e8 100644 --- a/app/models/user_preference.rb +++ b/app/models/user_preference.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/user_preferences/schema.rb b/app/models/user_preferences/schema.rb index 7a07011b1d..9212993fe1 100644 --- a/app/models/user_preferences/schema.rb +++ b/app/models/user_preferences/schema.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/inexistent_user.rb b/app/models/users/inexistent_user.rb index 9e90686bbb..4e7023bb92 100644 --- a/app/models/users/inexistent_user.rb +++ b/app/models/users/inexistent_user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/project_authorization_cache.rb b/app/models/users/project_authorization_cache.rb index ae92c57e7c..9777445a77 100644 --- a/app/models/users/project_authorization_cache.rb +++ b/app/models/users/project_authorization_cache.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/project_role_cache.rb b/app/models/users/project_role_cache.rb index 1ddedbab0f..0dad7324ee 100644 --- a/app/models/users/project_role_cache.rb +++ b/app/models/users/project_role_cache.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/scopes/find_by_login.rb b/app/models/users/scopes/find_by_login.rb index fc0917ad3d..ad43c8b07b 100644 --- a/app/models/users/scopes/find_by_login.rb +++ b/app/models/users/scopes/find_by_login.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/scopes/having_reminder_mail_to_send.rb b/app/models/users/scopes/having_reminder_mail_to_send.rb index f4c3686480..beb979f5f9 100644 --- a/app/models/users/scopes/having_reminder_mail_to_send.rb +++ b/app/models/users/scopes/having_reminder_mail_to_send.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/scopes/newest.rb b/app/models/users/scopes/newest.rb index c9e2858b75..1d44b17c6f 100644 --- a/app/models/users/scopes/newest.rb +++ b/app/models/users/scopes/newest.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/scopes/notified_globally.rb b/app/models/users/scopes/notified_globally.rb index 5f197d6f90..3b42024ae0 100644 --- a/app/models/users/scopes/notified_globally.rb +++ b/app/models/users/scopes/notified_globally.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/users/scopes/watcher_recipients.rb b/app/models/users/scopes/watcher_recipients.rb index 2f261575db..f64a29e9aa 100644 --- a/app/models/users/scopes/watcher_recipients.rb +++ b/app/models/users/scopes/watcher_recipients.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/version.rb b/app/models/version.rb index 348f523647..0cfcfdadf8 100644 --- a/app/models/version.rb +++ b/app/models/version.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/version_custom_field.rb b/app/models/version_custom_field.rb index 435fac9c51..edfcf7b1b5 100644 --- a/app/models/version_custom_field.rb +++ b/app/models/version_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/versions/project_sharing.rb b/app/models/versions/project_sharing.rb index d8dd43366f..a7445a91b5 100644 --- a/app/models/versions/project_sharing.rb +++ b/app/models/versions/project_sharing.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/versions/scopes/order_by_semver_name.rb b/app/models/versions/scopes/order_by_semver_name.rb index be5410608d..4be1c09c9a 100644 --- a/app/models/versions/scopes/order_by_semver_name.rb +++ b/app/models/versions/scopes/order_by_semver_name.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/versions/scopes/rolled_up.rb b/app/models/versions/scopes/rolled_up.rb index f04a3bd24c..6123171d6c 100644 --- a/app/models/versions/scopes/rolled_up.rb +++ b/app/models/versions/scopes/rolled_up.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/versions/scopes/shared_with.rb b/app/models/versions/scopes/shared_with.rb index 99eb8f6427..ee634d3322 100644 --- a/app/models/versions/scopes/shared_with.rb +++ b/app/models/versions/scopes/shared_with.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/view.rb b/app/models/view.rb index b14ad079a2..cdd3472ee3 100644 --- a/app/models/view.rb +++ b/app/models/view.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/watcher.rb b/app/models/watcher.rb index ea0716d4d8..e87191aa00 100644 --- a/app/models/watcher.rb +++ b/app/models/watcher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wiki.rb b/app/models/wiki.rb index b146960774..19f7999c15 100644 --- a/app/models/wiki.rb +++ b/app/models/wiki.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wiki_content.rb b/app/models/wiki_content.rb index 850b894130..2d99a530e8 100644 --- a/app/models/wiki_content.rb +++ b/app/models/wiki_content.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wiki_page.rb b/app/models/wiki_page.rb index fc8f8ecacd..e0999e2684 100644 --- a/app/models/wiki_page.rb +++ b/app/models/wiki_page.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wiki_redirect.rb b/app/models/wiki_redirect.rb index 55437bb105..469de91869 100644 --- a/app/models/wiki_redirect.rb +++ b/app/models/wiki_redirect.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wikis/annotate.rb b/app/models/wikis/annotate.rb index 17e3a6fa03..022f651c58 100644 --- a/app/models/wikis/annotate.rb +++ b/app/models/wikis/annotate.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/wikis/diff.rb b/app/models/wikis/diff.rb index 24dc49438f..1219fef715 100644 --- a/app/models/wikis/diff.rb +++ b/app/models/wikis/diff.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package.rb b/app/models/work_package.rb index 0e5731860a..eefe6ebacd 100644 --- a/app/models/work_package.rb +++ b/app/models/work_package.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/ancestors.rb b/app/models/work_package/ancestors.rb index 4935f78e0a..98d368e47e 100644 --- a/app/models/work_package/ancestors.rb +++ b/app/models/work_package/ancestors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/ask_before_destruction.rb b/app/models/work_package/ask_before_destruction.rb index 79c342ff6e..c446896c27 100644 --- a/app/models/work_package/ask_before_destruction.rb +++ b/app/models/work_package/ask_before_destruction.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/available_custom_fields.rb b/app/models/work_package/available_custom_fields.rb index 636072d44d..426e4d46b6 100644 --- a/app/models/work_package/available_custom_fields.rb +++ b/app/models/work_package/available_custom_fields.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/custom_actioned.rb b/app/models/work_package/custom_actioned.rb index 2eefadc6c2..6b0d44825d 100644 --- a/app/models/work_package/custom_actioned.rb +++ b/app/models/work_package/custom_actioned.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/exports/csv.rb b/app/models/work_package/exports/csv.rb index a1b8b58ab2..72654d8bdf 100644 --- a/app/models/work_package/exports/csv.rb +++ b/app/models/work_package/exports/csv.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/exports/formatters/costs.rb b/app/models/work_package/exports/formatters/costs.rb index 7243333438..c2dd9d9609 100644 --- a/app/models/work_package/exports/formatters/costs.rb +++ b/app/models/work_package/exports/formatters/costs.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/exports/formatters/estimated_hours.rb b/app/models/work_package/exports/formatters/estimated_hours.rb index c48e157f14..8e58348ec9 100644 --- a/app/models/work_package/exports/formatters/estimated_hours.rb +++ b/app/models/work_package/exports/formatters/estimated_hours.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/exports/query_exporter.rb b/app/models/work_package/exports/query_exporter.rb index 35c9545a36..9b8b41bf14 100644 --- a/app/models/work_package/exports/query_exporter.rb +++ b/app/models/work_package/exports/query_exporter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/hooks.rb b/app/models/work_package/hooks.rb index bdde81ecfa..9209debacd 100644 --- a/app/models/work_package/hooks.rb +++ b/app/models/work_package/hooks.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/inexistent_work_package.rb b/app/models/work_package/inexistent_work_package.rb index 35603e24d9..94d8aca8bb 100644 --- a/app/models/work_package/inexistent_work_package.rb +++ b/app/models/work_package/inexistent_work_package.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/journalized.rb b/app/models/work_package/journalized.rb index 2fa41c7978..323e8e6125 100644 --- a/app/models/work_package/journalized.rb +++ b/app/models/work_package/journalized.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/parent.rb b/app/models/work_package/parent.rb index b605bab42b..a3e4250018 100644 --- a/app/models/work_package/parent.rb +++ b/app/models/work_package/parent.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/attachments.rb b/app/models/work_package/pdf_export/attachments.rb index 840906abdb..8fe919ac11 100644 --- a/app/models/work_package/pdf_export/attachments.rb +++ b/app/models/work_package/pdf_export/attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/common.rb b/app/models/work_package/pdf_export/common.rb index d89e210f25..31fb0799fa 100644 --- a/app/models/work_package/pdf_export/common.rb +++ b/app/models/work_package/pdf_export/common.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/formattable.rb b/app/models/work_package/pdf_export/formattable.rb index d2a4dcb72b..399ceaf483 100644 --- a/app/models/work_package/pdf_export/formattable.rb +++ b/app/models/work_package/pdf_export/formattable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/view.rb b/app/models/work_package/pdf_export/view.rb index c84fb1d254..b577b112d4 100644 --- a/app/models/work_package/pdf_export/view.rb +++ b/app/models/work_package/pdf_export/view.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/work_package_list_to_pdf.rb b/app/models/work_package/pdf_export/work_package_list_to_pdf.rb index bd79c37f54..d682445d35 100644 --- a/app/models/work_package/pdf_export/work_package_list_to_pdf.rb +++ b/app/models/work_package/pdf_export/work_package_list_to_pdf.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/pdf_export/work_package_to_pdf.rb b/app/models/work_package/pdf_export/work_package_to_pdf.rb index dd44741441..def6e98363 100644 --- a/app/models/work_package/pdf_export/work_package_to_pdf.rb +++ b/app/models/work_package/pdf_export/work_package_to_pdf.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/scheduling_rules.rb b/app/models/work_package/scheduling_rules.rb index ba3c0c732a..80b56b16f1 100644 --- a/app/models/work_package/scheduling_rules.rb +++ b/app/models/work_package/scheduling_rules.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/status_transitions.rb b/app/models/work_package/status_transitions.rb index a158ff4911..572b2af5d0 100644 --- a/app/models/work_package/status_transitions.rb +++ b/app/models/work_package/status_transitions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/time_entries_cleaner.rb b/app/models/work_package/time_entries_cleaner.rb index d41a646e4a..2642f51535 100644 --- a/app/models/work_package/time_entries_cleaner.rb +++ b/app/models/work_package/time_entries_cleaner.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/typed_dag_defaults.rb b/app/models/work_package/typed_dag_defaults.rb index 943def8c59..c16f15325f 100644 --- a/app/models/work_package/typed_dag_defaults.rb +++ b/app/models/work_package/typed_dag_defaults.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package/validations.rb b/app/models/work_package/validations.rb index f99196c0f4..0a72437aa2 100644 --- a/app/models/work_package/validations.rb +++ b/app/models/work_package/validations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_package_custom_field.rb b/app/models/work_package_custom_field.rb index dae6593ec4..59bef9f6a2 100644 --- a/app/models/work_package_custom_field.rb +++ b/app/models/work_package_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/costs.rb b/app/models/work_packages/costs.rb index 4b90070cb2..b72add8630 100644 --- a/app/models/work_packages/costs.rb +++ b/app/models/work_packages/costs.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/derived_dates.rb b/app/models/work_packages/derived_dates.rb index 82c262d933..34e3521987 100644 --- a/app/models/work_packages/derived_dates.rb +++ b/app/models/work_packages/derived_dates.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/scopes/for_scheduling.rb b/app/models/work_packages/scopes/for_scheduling.rb index 1311508284..86bee80a35 100644 --- a/app/models/work_packages/scopes/for_scheduling.rb +++ b/app/models/work_packages/scopes/for_scheduling.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/scopes/include_derived_dates.rb b/app/models/work_packages/scopes/include_derived_dates.rb index d98702e98d..dd7fd10949 100644 --- a/app/models/work_packages/scopes/include_derived_dates.rb +++ b/app/models/work_packages/scopes/include_derived_dates.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/scopes/include_spent_time.rb b/app/models/work_packages/scopes/include_spent_time.rb index 482d37d1e5..1cb98d56b8 100644 --- a/app/models/work_packages/scopes/include_spent_time.rb +++ b/app/models/work_packages/scopes/include_spent_time.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/scopes/left_join_self_and_descendants.rb b/app/models/work_packages/scopes/left_join_self_and_descendants.rb index ba56d18b2b..3f9d70f8ef 100644 --- a/app/models/work_packages/scopes/left_join_self_and_descendants.rb +++ b/app/models/work_packages/scopes/left_join_self_and_descendants.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/work_packages/spent_time.rb b/app/models/work_packages/spent_time.rb index 688695a0ef..3e77988389 100644 --- a/app/models/work_packages/spent_time.rb +++ b/app/models/work_packages/spent_time.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/models/workflow.rb b/app/models/workflow.rb index 283d13c99c..71b75b18db 100644 --- a/app/models/workflow.rb +++ b/app/models/workflow.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/base_policy.rb b/app/policies/base_policy.rb index f3c5f5c1a6..77dad01f4a 100644 --- a/app/policies/base_policy.rb +++ b/app/policies/base_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/query_policy.rb b/app/policies/query_policy.rb index eb67a92d19..ef424c09c9 100644 --- a/app/policies/query_policy.rb +++ b/app/policies/query_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/redirect_policy.rb b/app/policies/redirect_policy.rb index 4b6cfe8a3c..04ffd65587 100644 --- a/app/policies/redirect_policy.rb +++ b/app/policies/redirect_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/scm/authorization_policy.rb b/app/policies/scm/authorization_policy.rb index f07cb1728b..408d050722 100644 --- a/app/policies/scm/authorization_policy.rb +++ b/app/policies/scm/authorization_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/scm/git_authorization_policy.rb b/app/policies/scm/git_authorization_policy.rb index 7d5531dba7..d6006bd5e4 100644 --- a/app/policies/scm/git_authorization_policy.rb +++ b/app/policies/scm/git_authorization_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/scm/subversion_authorization_policy.rb b/app/policies/scm/subversion_authorization_policy.rb index 095cadaf4e..7ddc1cbd15 100644 --- a/app/policies/scm/subversion_authorization_policy.rb +++ b/app/policies/scm/subversion_authorization_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/version_policy.rb b/app/policies/version_policy.rb index a3568c7c28..6e522d943d 100644 --- a/app/policies/version_policy.rb +++ b/app/policies/version_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/policies/work_package_policy.rb b/app/policies/work_package_policy.rb index 4778f5998d..5973b12f12 100644 --- a/app/policies/work_package_policy.rb +++ b/app/policies/work_package_policy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/admin_user_seeder.rb b/app/seeders/admin_user_seeder.rb index 4c055ed027..55f4c3cffb 100644 --- a/app/seeders/admin_user_seeder.rb +++ b/app/seeders/admin_user_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/activity_seeder.rb b/app/seeders/basic_data/activity_seeder.rb index cc68a9c823..7de5199a19 100644 --- a/app/seeders/basic_data/activity_seeder.rb +++ b/app/seeders/basic_data/activity_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/builtin_roles_seeder.rb b/app/seeders/basic_data/builtin_roles_seeder.rb index 55555560dd..ddeffa895e 100644 --- a/app/seeders/basic_data/builtin_roles_seeder.rb +++ b/app/seeders/basic_data/builtin_roles_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/color_scheme_seeder.rb b/app/seeders/basic_data/color_scheme_seeder.rb index 2a2fdcdbd5..6cd29120c0 100644 --- a/app/seeders/basic_data/color_scheme_seeder.rb +++ b/app/seeders/basic_data/color_scheme_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/color_seeder.rb b/app/seeders/basic_data/color_seeder.rb index 220b3937d6..46464c5821 100644 --- a/app/seeders/basic_data/color_seeder.rb +++ b/app/seeders/basic_data/color_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/priority_seeder.rb b/app/seeders/basic_data/priority_seeder.rb index 442862cc94..3ceaf418bb 100644 --- a/app/seeders/basic_data/priority_seeder.rb +++ b/app/seeders/basic_data/priority_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/role_seeder.rb b/app/seeders/basic_data/role_seeder.rb index 719b23ea3b..9f338b5e66 100644 --- a/app/seeders/basic_data/role_seeder.rb +++ b/app/seeders/basic_data/role_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/setting_seeder.rb b/app/seeders/basic_data/setting_seeder.rb index 4b8ea429f4..36ad70a1f1 100644 --- a/app/seeders/basic_data/setting_seeder.rb +++ b/app/seeders/basic_data/setting_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/status_seeder.rb b/app/seeders/basic_data/status_seeder.rb index 12eef2f72e..c5f48e135b 100644 --- a/app/seeders/basic_data/status_seeder.rb +++ b/app/seeders/basic_data/status_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/type_seeder.rb b/app/seeders/basic_data/type_seeder.rb index c416e2371b..fa054dfd41 100644 --- a/app/seeders/basic_data/type_seeder.rb +++ b/app/seeders/basic_data/type_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data/workflow_seeder.rb b/app/seeders/basic_data/workflow_seeder.rb index b09b58505f..8066153088 100644 --- a/app/seeders/basic_data/workflow_seeder.rb +++ b/app/seeders/basic_data/workflow_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/basic_data_seeder.rb b/app/seeders/basic_data_seeder.rb index 8a86a89adf..45f5d34c7b 100644 --- a/app/seeders/basic_data_seeder.rb +++ b/app/seeders/basic_data_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/development_data/users_seeder.rb b/app/seeders/development_data/users_seeder.rb index ecebfe0a26..c68ea2c0c9 100644 --- a/app/seeders/development_data/users_seeder.rb +++ b/app/seeders/development_data/users_seeder.rb @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/development_data_seeder.rb b/app/seeders/development_data_seeder.rb index c2f52a9638..dc6993836c 100644 --- a/app/seeders/development_data_seeder.rb +++ b/app/seeders/development_data_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/root_seeder.rb b/app/seeders/root_seeder.rb index 3bcc70033a..08bfdc9967 100644 --- a/app/seeders/root_seeder.rb +++ b/app/seeders/root_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/seeder.rb b/app/seeders/seeder.rb index 38e3a44c60..7aab6727bf 100644 --- a/app/seeders/seeder.rb +++ b/app/seeders/seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data/activity_seeder.rb b/app/seeders/standard_seeder/basic_data/activity_seeder.rb index fcd9d1b0e2..92fa7a688d 100644 --- a/app/seeders/standard_seeder/basic_data/activity_seeder.rb +++ b/app/seeders/standard_seeder/basic_data/activity_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data/priority_seeder.rb b/app/seeders/standard_seeder/basic_data/priority_seeder.rb index 3ce4f3a030..b104cfdf01 100644 --- a/app/seeders/standard_seeder/basic_data/priority_seeder.rb +++ b/app/seeders/standard_seeder/basic_data/priority_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data/status_seeder.rb b/app/seeders/standard_seeder/basic_data/status_seeder.rb index cc8c31f684..bea9afb761 100644 --- a/app/seeders/standard_seeder/basic_data/status_seeder.rb +++ b/app/seeders/standard_seeder/basic_data/status_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data/type_seeder.rb b/app/seeders/standard_seeder/basic_data/type_seeder.rb index f508539176..4ba671206d 100644 --- a/app/seeders/standard_seeder/basic_data/type_seeder.rb +++ b/app/seeders/standard_seeder/basic_data/type_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data/workflow_seeder.rb b/app/seeders/standard_seeder/basic_data/workflow_seeder.rb index 6465a7eb91..c495dea172 100644 --- a/app/seeders/standard_seeder/basic_data/workflow_seeder.rb +++ b/app/seeders/standard_seeder/basic_data/workflow_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/seeders/standard_seeder/basic_data_seeder.rb b/app/seeders/standard_seeder/basic_data_seeder.rb index 48ab2a300f..3522c5674c 100644 --- a/app/seeders/standard_seeder/basic_data_seeder.rb +++ b/app/seeders/standard_seeder/basic_data_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/add_work_package_note_service.rb b/app/services/add_work_package_note_service.rb index 1164ac73da..364364a64d 100644 --- a/app/services/add_work_package_note_service.rb +++ b/app/services/add_work_package_note_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/parse_resource_params_service.rb b/app/services/api/parse_resource_params_service.rb index 73888a8931..cc6da977b6 100644 --- a/app/services/api/parse_resource_params_service.rb +++ b/app/services/api/parse_resource_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/params_to_query_service.rb b/app/services/api/v3/params_to_query_service.rb index c8b1aeea5c..430bf15363 100644 --- a/app/services/api/v3/params_to_query_service.rb +++ b/app/services/api/v3/params_to_query_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/parse_query_params_service.rb b/app/services/api/v3/parse_query_params_service.rb index 0892e0e545..fbdea2f25e 100644 --- a/app/services/api/v3/parse_query_params_service.rb +++ b/app/services/api/v3/parse_query_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/parse_resource_params_service.rb b/app/services/api/v3/parse_resource_params_service.rb index 4f0c312f31..830a45675d 100644 --- a/app/services/api/v3/parse_resource_params_service.rb +++ b/app/services/api/v3/parse_resource_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/update_query_from_v3_params_service.rb b/app/services/api/v3/update_query_from_v3_params_service.rb index d5f05104cd..dff5774738 100644 --- a/app/services/api/v3/update_query_from_v3_params_service.rb +++ b/app/services/api/v3/update_query_from_v3_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/work_package_collection_from_query_params_service.rb b/app/services/api/v3/work_package_collection_from_query_params_service.rb index 8e61b6c8e3..18168ca7ab 100644 --- a/app/services/api/v3/work_package_collection_from_query_params_service.rb +++ b/app/services/api/v3/work_package_collection_from_query_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/api/v3/work_package_collection_from_query_service.rb b/app/services/api/v3/work_package_collection_from_query_service.rb index c9639b2eb9..1226013791 100644 --- a/app/services/api/v3/work_package_collection_from_query_service.rb +++ b/app/services/api/v3/work_package_collection_from_query_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/base_service.rb b/app/services/attachments/base_service.rb index c0a2ff697c..086f0c0d5c 100644 --- a/app/services/attachments/base_service.rb +++ b/app/services/attachments/base_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/build_service.rb b/app/services/attachments/build_service.rb index 12c4f90ed3..d0fb73f3cd 100644 --- a/app/services/attachments/build_service.rb +++ b/app/services/attachments/build_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/create_service.rb b/app/services/attachments/create_service.rb index 0b82037370..f0d0278584 100644 --- a/app/services/attachments/create_service.rb +++ b/app/services/attachments/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/delete_service.rb b/app/services/attachments/delete_service.rb index 43a220041b..d52679c944 100644 --- a/app/services/attachments/delete_service.rb +++ b/app/services/attachments/delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/prepare_upload_service.rb b/app/services/attachments/prepare_upload_service.rb index ff9254796a..0e381c3ded 100644 --- a/app/services/attachments/prepare_upload_service.rb +++ b/app/services/attachments/prepare_upload_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/replace_attachments.rb b/app/services/attachments/replace_attachments.rb index 8c456c3e82..805d804966 100644 --- a/app/services/attachments/replace_attachments.rb +++ b/app/services/attachments/replace_attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/set_attributes_service.rb b/app/services/attachments/set_attributes_service.rb index 86d0fa5b78..7d4c772d25 100644 --- a/app/services/attachments/set_attributes_service.rb +++ b/app/services/attachments/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/set_prepared_attributes_service.rb b/app/services/attachments/set_prepared_attributes_service.rb index ea29183562..d2111ec27e 100644 --- a/app/services/attachments/set_prepared_attributes_service.rb +++ b/app/services/attachments/set_prepared_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/set_replacements.rb b/app/services/attachments/set_replacements.rb index 407c0d5754..238dffec17 100644 --- a/app/services/attachments/set_replacements.rb +++ b/app/services/attachments/set_replacements.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attachments/touch_container.rb b/app/services/attachments/touch_container.rb index f90734e7b3..ce6bf1d9c9 100644 --- a/app/services/attachments/touch_container.rb +++ b/app/services/attachments/touch_container.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attribute_help_texts/create_service.rb b/app/services/attribute_help_texts/create_service.rb index e97fb3aa9b..dadd1d5533 100644 --- a/app/services/attribute_help_texts/create_service.rb +++ b/app/services/attribute_help_texts/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attribute_help_texts/set_attributes_service.rb b/app/services/attribute_help_texts/set_attributes_service.rb index c010b2613a..8141dfec35 100644 --- a/app/services/attribute_help_texts/set_attributes_service.rb +++ b/app/services/attribute_help_texts/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/attribute_help_texts/update_service.rb b/app/services/attribute_help_texts/update_service.rb index 5402c6d8b4..2b9ee9cec6 100644 --- a/app/services/attribute_help_texts/update_service.rb +++ b/app/services/attribute_help_texts/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authentication/omniauth_service.rb b/app/services/authentication/omniauth_service.rb index 4f0f7681ee..50a973ccb7 100644 --- a/app/services/authentication/omniauth_service.rb +++ b/app/services/authentication/omniauth_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization.rb b/app/services/authorization.rb index ddb217366c..8d6406e4b0 100644 --- a/app/services/authorization.rb +++ b/app/services/authorization.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/abstract_query.rb b/app/services/authorization/abstract_query.rb index 9f4c576aa2..1c98cec832 100644 --- a/app/services/authorization/abstract_query.rb +++ b/app/services/authorization/abstract_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/abstract_user_query.rb b/app/services/authorization/abstract_user_query.rb index e5250004aa..c281cce02b 100644 --- a/app/services/authorization/abstract_user_query.rb +++ b/app/services/authorization/abstract_user_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/enterprise_service.rb b/app/services/authorization/enterprise_service.rb index 34bb51cd81..7e9a488718 100644 --- a/app/services/authorization/enterprise_service.rb +++ b/app/services/authorization/enterprise_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/project_query.rb b/app/services/authorization/project_query.rb index bf3e111411..a4b10f5fdb 100644 --- a/app/services/authorization/project_query.rb +++ b/app/services/authorization/project_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/query_transformation.rb b/app/services/authorization/query_transformation.rb index 88c0f50e6d..9ab10bc15e 100644 --- a/app/services/authorization/query_transformation.rb +++ b/app/services/authorization/query_transformation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/query_transformation_visitor.rb b/app/services/authorization/query_transformation_visitor.rb index 6a0a21def4..27ee143a5a 100644 --- a/app/services/authorization/query_transformation_visitor.rb +++ b/app/services/authorization/query_transformation_visitor.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/query_transformations.rb b/app/services/authorization/query_transformations.rb index adeb4ed650..34512ea350 100644 --- a/app/services/authorization/query_transformations.rb +++ b/app/services/authorization/query_transformations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/query_transformations_order.rb b/app/services/authorization/query_transformations_order.rb index ee2c831e73..41033506c9 100644 --- a/app/services/authorization/query_transformations_order.rb +++ b/app/services/authorization/query_transformations_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/user_allowed_query.rb b/app/services/authorization/user_allowed_query.rb index b1708155bb..81ea67abd5 100644 --- a/app/services/authorization/user_allowed_query.rb +++ b/app/services/authorization/user_allowed_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/user_allowed_service.rb b/app/services/authorization/user_allowed_service.rb index 12d037372f..aad36b510a 100644 --- a/app/services/authorization/user_allowed_service.rb +++ b/app/services/authorization/user_allowed_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/user_global_roles_query.rb b/app/services/authorization/user_global_roles_query.rb index 109a20963a..8efbf176b1 100644 --- a/app/services/authorization/user_global_roles_query.rb +++ b/app/services/authorization/user_global_roles_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/user_project_roles_query.rb b/app/services/authorization/user_project_roles_query.rb index a46702c721..5f76698788 100644 --- a/app/services/authorization/user_project_roles_query.rb +++ b/app/services/authorization/user_project_roles_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization/user_roles_query.rb b/app/services/authorization/user_roles_query.rb index da5012a8e7..11045bc608 100644 --- a/app/services/authorization/user_roles_query.rb +++ b/app/services/authorization/user_roles_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/authorization_service.rb b/app/services/authorization_service.rb index b3ec066a6d..3fca489d64 100644 --- a/app/services/authorization_service.rb +++ b/app/services/authorization_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/backups/create_service.rb b/app/services/backups/create_service.rb index aa34653986..ff4f9e7471 100644 --- a/app/services/backups/create_service.rb +++ b/app/services/backups/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/backups/set_attributes_service.rb b/app/services/backups/set_attributes_service.rb index 12475eca41..fc8f74b801 100644 --- a/app/services/backups/set_attributes_service.rb +++ b/app/services/backups/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_project_service.rb b/app/services/base_project_service.rb index 584373fb7b..9088447277 100644 --- a/app/services/base_project_service.rb +++ b/app/services/base_project_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/base_callable.rb b/app/services/base_services/base_callable.rb index 1309eb88b1..63439fc7de 100644 --- a/app/services/base_services/base_callable.rb +++ b/app/services/base_services/base_callable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/base_contracted.rb b/app/services/base_services/base_contracted.rb index 64195ce2ce..7e4338a056 100644 --- a/app/services/base_services/base_contracted.rb +++ b/app/services/base_services/base_contracted.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/copy.rb b/app/services/base_services/copy.rb index c9c2d57cff..bfd2b298c5 100644 --- a/app/services/base_services/copy.rb +++ b/app/services/base_services/copy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/create.rb b/app/services/base_services/create.rb index 3f65372c12..db7673a971 100644 --- a/app/services/base_services/create.rb +++ b/app/services/base_services/create.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/delete.rb b/app/services/base_services/delete.rb index 9cb09a973f..6d5ed21b52 100644 --- a/app/services/base_services/delete.rb +++ b/app/services/base_services/delete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/set_attributes.rb b/app/services/base_services/set_attributes.rb index 5db7c8168d..8730b901b3 100644 --- a/app/services/base_services/set_attributes.rb +++ b/app/services/base_services/set_attributes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/update.rb b/app/services/base_services/update.rb index 92044220e0..f2e411f0c3 100644 --- a/app/services/base_services/update.rb +++ b/app/services/base_services/update.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_services/write.rb b/app/services/base_services/write.rb index 505b430dd6..7d451b71b8 100644 --- a/app/services/base_services/write.rb +++ b/app/services/base_services/write.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/base_type_service.rb b/app/services/base_type_service.rb index 24ed950353..8f9d902240 100644 --- a/app/services/base_type_service.rb +++ b/app/services/base_type_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/changesets/log_time_service.rb b/app/services/changesets/log_time_service.rb index 9cbb10b26c..0bce3bc247 100644 --- a/app/services/changesets/log_time_service.rb +++ b/app/services/changesets/log_time_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/concerns/contracted.rb b/app/services/concerns/contracted.rb index 997287784c..27218ad868 100644 --- a/app/services/concerns/contracted.rb +++ b/app/services/concerns/contracted.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/concerns/with_reversible_state.rb b/app/services/concerns/with_reversible_state.rb index 7e885036da..e0ecf2014f 100644 --- a/app/services/concerns/with_reversible_state.rb +++ b/app/services/concerns/with_reversible_state.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/copy/dependency.rb b/app/services/copy/dependency.rb index ea85a2633c..e1a43419e7 100644 --- a/app/services/copy/dependency.rb +++ b/app/services/copy/dependency.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/create_type_service.rb b/app/services/create_type_service.rb index 1b56411eca..6f3cb3cdbd 100644 --- a/app/services/create_type_service.rb +++ b/app/services/create_type_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_actions/base_service.rb b/app/services/custom_actions/base_service.rb index 51da72814b..323e8e9332 100644 --- a/app/services/custom_actions/base_service.rb +++ b/app/services/custom_actions/base_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_actions/create_service.rb b/app/services/custom_actions/create_service.rb index f87e36d94b..acd94a493f 100644 --- a/app/services/custom_actions/create_service.rb +++ b/app/services/custom_actions/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_actions/update_service.rb b/app/services/custom_actions/update_service.rb index 005630b0e7..a4672f1157 100644 --- a/app/services/custom_actions/update_service.rb +++ b/app/services/custom_actions/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_actions/update_work_package_service.rb b/app/services/custom_actions/update_work_package_service.rb index 4c6f17c0f1..056683faac 100644 --- a/app/services/custom_actions/update_work_package_service.rb +++ b/app/services/custom_actions/update_work_package_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_fields/create_service.rb b/app/services/custom_fields/create_service.rb index 632478e80b..bb6986a3f4 100644 --- a/app/services/custom_fields/create_service.rb +++ b/app/services/custom_fields/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_fields/set_attributes_service.rb b/app/services/custom_fields/set_attributes_service.rb index 0fcf1b701e..d3b122db5f 100644 --- a/app/services/custom_fields/set_attributes_service.rb +++ b/app/services/custom_fields/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/custom_fields/update_service.rb b/app/services/custom_fields/update_service.rb index 537c181f12..db6386a4ae 100644 --- a/app/services/custom_fields/update_service.rb +++ b/app/services/custom_fields/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/design/update_design_service.rb b/app/services/design/update_design_service.rb index 9861f820f5..867dba44ce 100644 --- a/app/services/design/update_design_service.rb +++ b/app/services/design/update_design_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/grids/copy/widgets_dependent_service.rb b/app/services/grids/copy/widgets_dependent_service.rb index 8ebb82f004..b2d58ab92b 100644 --- a/app/services/grids/copy/widgets_dependent_service.rb +++ b/app/services/grids/copy/widgets_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/grids/copy_service.rb b/app/services/grids/copy_service.rb index 89d87015ca..9233c9b4fe 100644 --- a/app/services/grids/copy_service.rb +++ b/app/services/grids/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/add_users_service.rb b/app/services/groups/add_users_service.rb index 01fe85ef15..59254e0bf7 100644 --- a/app/services/groups/add_users_service.rb +++ b/app/services/groups/add_users_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/cleanup_inherited_roles_service.rb b/app/services/groups/cleanup_inherited_roles_service.rb index e13d8a91e3..58624de27f 100644 --- a/app/services/groups/cleanup_inherited_roles_service.rb +++ b/app/services/groups/cleanup_inherited_roles_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/concerns/membership_manipulation.rb b/app/services/groups/concerns/membership_manipulation.rb index 7d24d9fe0d..b9bcdc8939 100644 --- a/app/services/groups/concerns/membership_manipulation.rb +++ b/app/services/groups/concerns/membership_manipulation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/create_service.rb b/app/services/groups/create_service.rb index 9baf59356c..6611c1e3d3 100644 --- a/app/services/groups/create_service.rb +++ b/app/services/groups/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/delete_service.rb b/app/services/groups/delete_service.rb index 071ef933e9..b124db2204 100644 --- a/app/services/groups/delete_service.rb +++ b/app/services/groups/delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/set_attributes_service.rb b/app/services/groups/set_attributes_service.rb index 709889e43e..aec29857ac 100644 --- a/app/services/groups/set_attributes_service.rb +++ b/app/services/groups/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/update_roles_service.rb b/app/services/groups/update_roles_service.rb index f0da731f80..70509dded8 100644 --- a/app/services/groups/update_roles_service.rb +++ b/app/services/groups/update_roles_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/groups/update_service.rb b/app/services/groups/update_service.rb index 0cfd31995d..c4c4275277 100644 --- a/app/services/groups/update_service.rb +++ b/app/services/groups/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/journals/create_service.rb b/app/services/journals/create_service.rb index 964e8fca79..52b2b34d70 100644 --- a/app/services/journals/create_service.rb +++ b/app/services/journals/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/journals/set_attributes_service.rb b/app/services/journals/set_attributes_service.rb index 59a7bf8b4c..47940e583a 100644 --- a/app/services/journals/set_attributes_service.rb +++ b/app/services/journals/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/journals/update_service.rb b/app/services/journals/update_service.rb index 89b26940bf..3a89e48499 100644 --- a/app/services/journals/update_service.rb +++ b/app/services/journals/update_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/cleanup_service.rb b/app/services/members/cleanup_service.rb index 9c9bba63e5..33f20eb44b 100644 --- a/app/services/members/cleanup_service.rb +++ b/app/services/members/cleanup_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/concerns/cleaned_up.rb b/app/services/members/concerns/cleaned_up.rb index d65f70bbf4..a5d0c3fdcb 100644 --- a/app/services/members/concerns/cleaned_up.rb +++ b/app/services/members/concerns/cleaned_up.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/concerns/notification_sender.rb b/app/services/members/concerns/notification_sender.rb index eb4b889afe..3730c68b5a 100644 --- a/app/services/members/concerns/notification_sender.rb +++ b/app/services/members/concerns/notification_sender.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/create_service.rb b/app/services/members/create_service.rb index 02f73f5108..6464b1ae0e 100644 --- a/app/services/members/create_service.rb +++ b/app/services/members/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/delete_service.rb b/app/services/members/delete_service.rb index 7b9193e490..94facb6f96 100644 --- a/app/services/members/delete_service.rb +++ b/app/services/members/delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/edit_membership_service.rb b/app/services/members/edit_membership_service.rb index 8ae0c6df04..4104ea00b9 100644 --- a/app/services/members/edit_membership_service.rb +++ b/app/services/members/edit_membership_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/set_attributes_service.rb b/app/services/members/set_attributes_service.rb index 2324720472..f8bad8dc1d 100644 --- a/app/services/members/set_attributes_service.rb +++ b/app/services/members/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/members/update_service.rb b/app/services/members/update_service.rb index 3b203e2869..5f43d17177 100644 --- a/app/services/members/update_service.rb +++ b/app/services/members/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/messages/create_service.rb b/app/services/messages/create_service.rb index fbad59d714..5772f62070 100644 --- a/app/services/messages/create_service.rb +++ b/app/services/messages/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/messages/set_attributes_service.rb b/app/services/messages/set_attributes_service.rb index 1cde9f5d31..07adce217c 100644 --- a/app/services/messages/set_attributes_service.rb +++ b/app/services/messages/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/messages/update_service.rb b/app/services/messages/update_service.rb index d8c2ea7a54..511b9ffed1 100644 --- a/app/services/messages/update_service.rb +++ b/app/services/messages/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/aggregated_journal_service.rb b/app/services/notifications/aggregated_journal_service.rb index 9cae1c9d16..d635ee6e7f 100644 --- a/app/services/notifications/aggregated_journal_service.rb +++ b/app/services/notifications/aggregated_journal_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service.rb b/app/services/notifications/create_from_model_service.rb index 3fc42c17db..7d83839fba 100644 --- a/app/services/notifications/create_from_model_service.rb +++ b/app/services/notifications/create_from_model_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service/comment_strategy.rb b/app/services/notifications/create_from_model_service/comment_strategy.rb index 757cecaa56..6ca45eaa9d 100644 --- a/app/services/notifications/create_from_model_service/comment_strategy.rb +++ b/app/services/notifications/create_from_model_service/comment_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service/message_strategy.rb b/app/services/notifications/create_from_model_service/message_strategy.rb index a1577d4840..13d930d2ae 100644 --- a/app/services/notifications/create_from_model_service/message_strategy.rb +++ b/app/services/notifications/create_from_model_service/message_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service/news_strategy.rb b/app/services/notifications/create_from_model_service/news_strategy.rb index 2723706e06..78518889ad 100644 --- a/app/services/notifications/create_from_model_service/news_strategy.rb +++ b/app/services/notifications/create_from_model_service/news_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service/wiki_content_strategy.rb b/app/services/notifications/create_from_model_service/wiki_content_strategy.rb index aa32c095c4..f84f83263c 100644 --- a/app/services/notifications/create_from_model_service/wiki_content_strategy.rb +++ b/app/services/notifications/create_from_model_service/wiki_content_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_from_model_service/work_package_strategy.rb b/app/services/notifications/create_from_model_service/work_package_strategy.rb index 27c378f243..803c5fc467 100644 --- a/app/services/notifications/create_from_model_service/work_package_strategy.rb +++ b/app/services/notifications/create_from_model_service/work_package_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/create_service.rb b/app/services/notifications/create_service.rb index dcc48703a2..0cd8b68488 100644 --- a/app/services/notifications/create_service.rb +++ b/app/services/notifications/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service.rb b/app/services/notifications/mail_service.rb index 5d5461bcc8..3b2490e80f 100644 --- a/app/services/notifications/mail_service.rb +++ b/app/services/notifications/mail_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service/comment_strategy.rb b/app/services/notifications/mail_service/comment_strategy.rb index 7ac3701cc6..8dba2769af 100644 --- a/app/services/notifications/mail_service/comment_strategy.rb +++ b/app/services/notifications/mail_service/comment_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service/message_strategy.rb b/app/services/notifications/mail_service/message_strategy.rb index a09e5d8b14..8aca782878 100644 --- a/app/services/notifications/mail_service/message_strategy.rb +++ b/app/services/notifications/mail_service/message_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service/news_strategy.rb b/app/services/notifications/mail_service/news_strategy.rb index cb2aebfbf1..9360ca4547 100644 --- a/app/services/notifications/mail_service/news_strategy.rb +++ b/app/services/notifications/mail_service/news_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service/wiki_content_strategy.rb b/app/services/notifications/mail_service/wiki_content_strategy.rb index a0013eca80..51e12aaefa 100644 --- a/app/services/notifications/mail_service/wiki_content_strategy.rb +++ b/app/services/notifications/mail_service/wiki_content_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/mail_service/work_package_strategy.rb b/app/services/notifications/mail_service/work_package_strategy.rb index 10f309192a..cc889a8887 100644 --- a/app/services/notifications/mail_service/work_package_strategy.rb +++ b/app/services/notifications/mail_service/work_package_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/notifications/set_attributes_service.rb b/app/services/notifications/set_attributes_service.rb index 880dfe147a..32b67472f5 100644 --- a/app/services/notifications/set_attributes_service.rb +++ b/app/services/notifications/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/oauth/persist_application_service.rb b/app/services/oauth/persist_application_service.rb index a01cd2e42b..f3dea3dd90 100644 --- a/app/services/oauth/persist_application_service.rb +++ b/app/services/oauth/persist_application_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/params_to_query_service.rb b/app/services/params_to_query_service.rb index b8e479a4ac..a017ece9a7 100644 --- a/app/services/params_to_query_service.rb +++ b/app/services/params_to_query_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/parse_schema_filter_params_service.rb b/app/services/parse_schema_filter_params_service.rb index bd86d6b364..1e42c1ac4b 100644 --- a/app/services/parse_schema_filter_params_service.rb +++ b/app/services/parse_schema_filter_params_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/placeholder_users/create_service.rb b/app/services/placeholder_users/create_service.rb index 7cd5eac00a..ed1a7fa3b2 100644 --- a/app/services/placeholder_users/create_service.rb +++ b/app/services/placeholder_users/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/placeholder_users/delete_service.rb b/app/services/placeholder_users/delete_service.rb index 7f89f61916..d36cbb1a8c 100644 --- a/app/services/placeholder_users/delete_service.rb +++ b/app/services/placeholder_users/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/placeholder_users/set_attributes_service.rb b/app/services/placeholder_users/set_attributes_service.rb index 40ba1361a1..94cfe9c4b5 100644 --- a/app/services/placeholder_users/set_attributes_service.rb +++ b/app/services/placeholder_users/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/placeholder_users/update_service.rb b/app/services/placeholder_users/update_service.rb index dd340c7162..29cf52d8e0 100644 --- a/app/services/placeholder_users/update_service.rb +++ b/app/services/placeholder_users/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/principals/replace_references_service.rb b/app/services/principals/replace_references_service.rb index 03d39e2e32..36fbfb0458 100644 --- a/app/services/principals/replace_references_service.rb +++ b/app/services/principals/replace_references_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/archive_service.rb b/app/services/projects/archive_service.rb index 78e52e9223..0ef6ee8ae9 100644 --- a/app/services/projects/archive_service.rb +++ b/app/services/projects/archive_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/concerns/new_project_service.rb b/app/services/projects/concerns/new_project_service.rb index 9fb44b660a..d0a8f818ef 100644 --- a/app/services/projects/concerns/new_project_service.rb +++ b/app/services/projects/concerns/new_project_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/concerns/update_demo_data.rb b/app/services/projects/concerns/update_demo_data.rb index 2cf0e928f3..936124ea8d 100644 --- a/app/services/projects/concerns/update_demo_data.rb +++ b/app/services/projects/concerns/update_demo_data.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/boards_dependent_service.rb b/app/services/projects/copy/boards_dependent_service.rb index bbfc4d58f8..f6083a4a5a 100644 --- a/app/services/projects/copy/boards_dependent_service.rb +++ b/app/services/projects/copy/boards_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/categories_dependent_service.rb b/app/services/projects/copy/categories_dependent_service.rb index 31a4b95c53..c6c801cc0b 100644 --- a/app/services/projects/copy/categories_dependent_service.rb +++ b/app/services/projects/copy/categories_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/dependency.rb b/app/services/projects/copy/dependency.rb index 2eb2370b41..1f7b1536a5 100644 --- a/app/services/projects/copy/dependency.rb +++ b/app/services/projects/copy/dependency.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/forums_dependent_service.rb b/app/services/projects/copy/forums_dependent_service.rb index 15f2b20bf1..40fb7db9f9 100644 --- a/app/services/projects/copy/forums_dependent_service.rb +++ b/app/services/projects/copy/forums_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/members_dependent_service.rb b/app/services/projects/copy/members_dependent_service.rb index c7e690a60c..d96e3a89bb 100644 --- a/app/services/projects/copy/members_dependent_service.rb +++ b/app/services/projects/copy/members_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/overview_dependent_service.rb b/app/services/projects/copy/overview_dependent_service.rb index 76dc93d025..4c4b7a9d50 100644 --- a/app/services/projects/copy/overview_dependent_service.rb +++ b/app/services/projects/copy/overview_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/queries_dependent_service.rb b/app/services/projects/copy/queries_dependent_service.rb index 40ff4278ed..9756513672 100644 --- a/app/services/projects/copy/queries_dependent_service.rb +++ b/app/services/projects/copy/queries_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/versions_dependent_service.rb b/app/services/projects/copy/versions_dependent_service.rb index 8d455039dd..b783f9092a 100644 --- a/app/services/projects/copy/versions_dependent_service.rb +++ b/app/services/projects/copy/versions_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/wiki_dependent_service.rb b/app/services/projects/copy/wiki_dependent_service.rb index 6a09c707d3..01de17691b 100644 --- a/app/services/projects/copy/wiki_dependent_service.rb +++ b/app/services/projects/copy/wiki_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/wiki_page_attachments_dependent_service.rb b/app/services/projects/copy/wiki_page_attachments_dependent_service.rb index a4a6565747..0272297349 100644 --- a/app/services/projects/copy/wiki_page_attachments_dependent_service.rb +++ b/app/services/projects/copy/wiki_page_attachments_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/work_package_attachments_dependent_service.rb b/app/services/projects/copy/work_package_attachments_dependent_service.rb index 4d41697d89..55372ec6b7 100644 --- a/app/services/projects/copy/work_package_attachments_dependent_service.rb +++ b/app/services/projects/copy/work_package_attachments_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy/work_packages_dependent_service.rb b/app/services/projects/copy/work_packages_dependent_service.rb index 1141ad759a..70b4b35f47 100644 --- a/app/services/projects/copy/work_packages_dependent_service.rb +++ b/app/services/projects/copy/work_packages_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/copy_service.rb b/app/services/projects/copy_service.rb index cee3d34374..f0da3c9fce 100644 --- a/app/services/projects/copy_service.rb +++ b/app/services/projects/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/create_service.rb b/app/services/projects/create_service.rb index 9f7fe5689e..bbeaa16848 100644 --- a/app/services/projects/create_service.rb +++ b/app/services/projects/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/delete_service.rb b/app/services/projects/delete_service.rb index 96c9ee16fa..ef1a549618 100644 --- a/app/services/projects/delete_service.rb +++ b/app/services/projects/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/enabled_modules_service.rb b/app/services/projects/enabled_modules_service.rb index f5b9d834f6..62b87f7d62 100644 --- a/app/services/projects/enabled_modules_service.rb +++ b/app/services/projects/enabled_modules_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/enqueue_copy_service.rb b/app/services/projects/enqueue_copy_service.rb index 33e61bc557..9a596979cf 100644 --- a/app/services/projects/enqueue_copy_service.rb +++ b/app/services/projects/enqueue_copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/gantt_query_generator_service.rb b/app/services/projects/gantt_query_generator_service.rb index d5418d8923..c5fe1c473c 100644 --- a/app/services/projects/gantt_query_generator_service.rb +++ b/app/services/projects/gantt_query_generator_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/schedule_deletion_service.rb b/app/services/projects/schedule_deletion_service.rb index d211daaf4a..cfa7318681 100644 --- a/app/services/projects/schedule_deletion_service.rb +++ b/app/services/projects/schedule_deletion_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/set_attributes_service.rb b/app/services/projects/set_attributes_service.rb index ac18d2e245..18e5ab79f7 100644 --- a/app/services/projects/set_attributes_service.rb +++ b/app/services/projects/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/unarchive_service.rb b/app/services/projects/unarchive_service.rb index 452af68315..6a216b5102 100644 --- a/app/services/projects/unarchive_service.rb +++ b/app/services/projects/unarchive_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/projects/update_service.rb b/app/services/projects/update_service.rb index dfae97390b..9ab4bb1226 100644 --- a/app/services/projects/update_service.rb +++ b/app/services/projects/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/base_service.rb b/app/services/queries/base_service.rb index a620e2e3a0..214d8cb200 100644 --- a/app/services/queries/base_service.rb +++ b/app/services/queries/base_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/copy/filters_mapper.rb b/app/services/queries/copy/filters_mapper.rb index 457699313d..e4bd56df30 100644 --- a/app/services/queries/copy/filters_mapper.rb +++ b/app/services/queries/copy/filters_mapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/copy/ordered_work_packages_dependent_service.rb b/app/services/queries/copy/ordered_work_packages_dependent_service.rb index 9a28a4e8a9..eb77248c27 100644 --- a/app/services/queries/copy/ordered_work_packages_dependent_service.rb +++ b/app/services/queries/copy/ordered_work_packages_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/copy/views_dependent_service.rb b/app/services/queries/copy/views_dependent_service.rb index 62ec5f74c4..679961451c 100644 --- a/app/services/queries/copy/views_dependent_service.rb +++ b/app/services/queries/copy/views_dependent_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/copy_service.rb b/app/services/queries/copy_service.rb index 99493ca4d3..80c982a004 100644 --- a/app/services/queries/copy_service.rb +++ b/app/services/queries/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/create_service.rb b/app/services/queries/create_service.rb index 40dcba2dfc..643180e606 100644 --- a/app/services/queries/create_service.rb +++ b/app/services/queries/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/set_attributes_service.rb b/app/services/queries/set_attributes_service.rb index 7efe7a6436..b3ae12f922 100644 --- a/app/services/queries/set_attributes_service.rb +++ b/app/services/queries/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/queries/update_service.rb b/app/services/queries/update_service.rb index 2f29eb81ce..307359196c 100644 --- a/app/services/queries/update_service.rb +++ b/app/services/queries/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/relations/base_service.rb b/app/services/relations/base_service.rb index e8271b7df9..4d50209c89 100644 --- a/app/services/relations/base_service.rb +++ b/app/services/relations/base_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/relations/create_service.rb b/app/services/relations/create_service.rb index e160fc3042..a5df494cfb 100644 --- a/app/services/relations/create_service.rb +++ b/app/services/relations/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/relations/delete_service.rb b/app/services/relations/delete_service.rb index b107b775cf..42a0761408 100644 --- a/app/services/relations/delete_service.rb +++ b/app/services/relations/delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/relations/update_service.rb b/app/services/relations/update_service.rb index 5c7c6d851f..0aae93afc0 100644 --- a/app/services/relations/update_service.rb +++ b/app/services/relations/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/assignee_report.rb b/app/services/reports/assignee_report.rb index 09e2ed5e9f..2634ed5a14 100644 --- a/app/services/reports/assignee_report.rb +++ b/app/services/reports/assignee_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/author_report.rb b/app/services/reports/author_report.rb index e2edfe8629..e186b82732 100644 --- a/app/services/reports/author_report.rb +++ b/app/services/reports/author_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/category_report.rb b/app/services/reports/category_report.rb index 8b11ad139d..c528075320 100644 --- a/app/services/reports/category_report.rb +++ b/app/services/reports/category_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/priority_report.rb b/app/services/reports/priority_report.rb index 916d931269..b1ea6dccb9 100644 --- a/app/services/reports/priority_report.rb +++ b/app/services/reports/priority_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/report.rb b/app/services/reports/report.rb index d41c1d7a9e..268606895d 100644 --- a/app/services/reports/report.rb +++ b/app/services/reports/report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/reports_service.rb b/app/services/reports/reports_service.rb index de2dd9997f..5bd8bf7872 100644 --- a/app/services/reports/reports_service.rb +++ b/app/services/reports/reports_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/responsible_report.rb b/app/services/reports/responsible_report.rb index 2ae2dd57d5..e8802b1fdf 100644 --- a/app/services/reports/responsible_report.rb +++ b/app/services/reports/responsible_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/subproject_report.rb b/app/services/reports/subproject_report.rb index 40cf8d9287..4499217bc1 100644 --- a/app/services/reports/subproject_report.rb +++ b/app/services/reports/subproject_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/type_report.rb b/app/services/reports/type_report.rb index 633a6b4659..41dd194c4e 100644 --- a/app/services/reports/type_report.rb +++ b/app/services/reports/type_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/reports/version_report.rb b/app/services/reports/version_report.rb index 6e3d41eee2..af7cc6c7d0 100644 --- a/app/services/reports/version_report.rb +++ b/app/services/reports/version_report.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/roles/create_service.rb b/app/services/roles/create_service.rb index 295f71733f..d4fd7a86ef 100644 --- a/app/services/roles/create_service.rb +++ b/app/services/roles/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/roles/notify_mixin.rb b/app/services/roles/notify_mixin.rb index abdb397542..3720ffff41 100644 --- a/app/services/roles/notify_mixin.rb +++ b/app/services/roles/notify_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/roles/set_attributes_service.rb b/app/services/roles/set_attributes_service.rb index 46cc6d55da..c936120ce1 100644 --- a/app/services/roles/set_attributes_service.rb +++ b/app/services/roles/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/roles/update_service.rb b/app/services/roles/update_service.rb index 165fd39a7f..b10f576a12 100644 --- a/app/services/roles/update_service.rb +++ b/app/services/roles/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/scm/base_repository_service.rb b/app/services/scm/base_repository_service.rb index c88f2400a3..c51e63a51c 100644 --- a/app/services/scm/base_repository_service.rb +++ b/app/services/scm/base_repository_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/scm/checkout_instructions_service.rb b/app/services/scm/checkout_instructions_service.rb index 4beb063926..f4157fcb08 100644 --- a/app/services/scm/checkout_instructions_service.rb +++ b/app/services/scm/checkout_instructions_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/scm/create_managed_repository_service.rb b/app/services/scm/create_managed_repository_service.rb index 3753817028..d8b5c0c0e4 100644 --- a/app/services/scm/create_managed_repository_service.rb +++ b/app/services/scm/create_managed_repository_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/scm/delete_managed_repository_service.rb b/app/services/scm/delete_managed_repository_service.rb index 9d423bd295..a45527237b 100644 --- a/app/services/scm/delete_managed_repository_service.rb +++ b/app/services/scm/delete_managed_repository_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/scm/repository_factory_service.rb b/app/services/scm/repository_factory_service.rb index 19f29ef80f..012201d950 100644 --- a/app/services/scm/repository_factory_service.rb +++ b/app/services/scm/repository_factory_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/service_result.rb b/app/services/service_result.rb index e2775794ff..1b8354e105 100644 --- a/app/services/service_result.rb +++ b/app/services/service_result.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/sessions/base_service.rb b/app/services/sessions/base_service.rb index 8de896cf5a..101076c6d1 100644 --- a/app/services/sessions/base_service.rb +++ b/app/services/sessions/base_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/sessions/drop_other_sessions_service.rb b/app/services/sessions/drop_other_sessions_service.rb index 87fdebe7a5..5da71e1b90 100644 --- a/app/services/sessions/drop_other_sessions_service.rb +++ b/app/services/sessions/drop_other_sessions_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/sessions/initialize_session_service.rb b/app/services/sessions/initialize_session_service.rb index cc5c95e069..c27c99e253 100644 --- a/app/services/sessions/initialize_session_service.rb +++ b/app/services/sessions/initialize_session_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/settings/update_service.rb b/app/services/settings/update_service.rb index 00b7515217..1c7d9221ac 100644 --- a/app/services/settings/update_service.rb +++ b/app/services/settings/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/shared/block_service.rb b/app/services/shared/block_service.rb index 171f1bcb01..32f222f106 100644 --- a/app/services/shared/block_service.rb +++ b/app/services/shared/block_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/shared/service_context.rb b/app/services/shared/service_context.rb index 836940c62d..a420fd269f 100644 --- a/app/services/shared/service_context.rb +++ b/app/services/shared/service_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/shared/service_state.rb b/app/services/shared/service_state.rb index 1ce7926d2c..2397621763 100644 --- a/app/services/shared/service_state.rb +++ b/app/services/shared/service_state.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/update_projects_types_service.rb b/app/services/update_projects_types_service.rb index b04fcfc182..504bb128ab 100644 --- a/app/services/update_projects_types_service.rb +++ b/app/services/update_projects_types_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/update_query_from_params_service.rb b/app/services/update_query_from_params_service.rb index 7eeb35d33b..e091cf11c0 100644 --- a/app/services/update_query_from_params_service.rb +++ b/app/services/update_query_from_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/update_type_service.rb b/app/services/update_type_service.rb index 14433fee5e..099b6b4170 100644 --- a/app/services/update_type_service.rb +++ b/app/services/update_type_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/user_preferences/set_attributes_service.rb b/app/services/user_preferences/set_attributes_service.rb index 2aaca2606e..ada7012960 100644 --- a/app/services/user_preferences/set_attributes_service.rb +++ b/app/services/user_preferences/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/user_preferences/update_service.rb b/app/services/user_preferences/update_service.rb index 9f4b8d4cce..2244a4cd2f 100644 --- a/app/services/user_preferences/update_service.rb +++ b/app/services/user_preferences/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/user_search_service.rb b/app/services/user_search_service.rb index 950dd38bf5..1cc4afa6f0 100644 --- a/app/services/user_search_service.rb +++ b/app/services/user_search_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/change_password_service.rb b/app/services/users/change_password_service.rb index 20494d4e3e..1e8ec706b2 100644 --- a/app/services/users/change_password_service.rb +++ b/app/services/users/change_password_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/create_service.rb b/app/services/users/create_service.rb index 4de6873791..e8f8cf2838 100644 --- a/app/services/users/create_service.rb +++ b/app/services/users/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/delete_service.rb b/app/services/users/delete_service.rb index 9fdc66ec24..9445aa8b4d 100644 --- a/app/services/users/delete_service.rb +++ b/app/services/users/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/login_service.rb b/app/services/users/login_service.rb index 43116bf98b..1ef42905f3 100644 --- a/app/services/users/login_service.rb +++ b/app/services/users/login_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/logout_service.rb b/app/services/users/logout_service.rb index 69dc418001..b24a22e468 100644 --- a/app/services/users/logout_service.rb +++ b/app/services/users/logout_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/register_user_service.rb b/app/services/users/register_user_service.rb index a1c803e656..2cd510ac5f 100644 --- a/app/services/users/register_user_service.rb +++ b/app/services/users/register_user_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/set_attributes_service.rb b/app/services/users/set_attributes_service.rb index 184d3c055c..ffade203b2 100644 --- a/app/services/users/set_attributes_service.rb +++ b/app/services/users/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/users/update_service.rb b/app/services/users/update_service.rb index 237821c7b0..31ac112aed 100644 --- a/app/services/users/update_service.rb +++ b/app/services/users/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/versions/create_service.rb b/app/services/versions/create_service.rb index 80d85ccd8a..e0ac57749e 100644 --- a/app/services/versions/create_service.rb +++ b/app/services/versions/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/versions/delete_service.rb b/app/services/versions/delete_service.rb index 0dfd960439..0e8a075a56 100644 --- a/app/services/versions/delete_service.rb +++ b/app/services/versions/delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/versions/set_attributes_service.rb b/app/services/versions/set_attributes_service.rb index ca02838d7e..4a3d6045d1 100644 --- a/app/services/versions/set_attributes_service.rb +++ b/app/services/versions/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/versions/update_service.rb b/app/services/versions/update_service.rb index 00ffae4116..e5f65e742d 100644 --- a/app/services/versions/update_service.rb +++ b/app/services/versions/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/views/create_service.rb b/app/services/views/create_service.rb index 9bb25df40f..65856323f9 100644 --- a/app/services/views/create_service.rb +++ b/app/services/views/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/views/set_attributes_service.rb b/app/services/views/set_attributes_service.rb index 8706aed9e2..e3e2d61058 100644 --- a/app/services/views/set_attributes_service.rb +++ b/app/services/views/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/wiki_pages/copy_service.rb b/app/services/wiki_pages/copy_service.rb index 1e215a117a..ffc4ba32f5 100644 --- a/app/services/wiki_pages/copy_service.rb +++ b/app/services/wiki_pages/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/wiki_pages/create_service.rb b/app/services/wiki_pages/create_service.rb index 01b911ceb6..b064a01338 100644 --- a/app/services/wiki_pages/create_service.rb +++ b/app/services/wiki_pages/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/wiki_pages/set_attributes_service.rb b/app/services/wiki_pages/set_attributes_service.rb index 73545ff7b8..0f1a9fad5e 100644 --- a/app/services/wiki_pages/set_attributes_service.rb +++ b/app/services/wiki_pages/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/wiki_pages/update_service.rb b/app/services/wiki_pages/update_service.rb index 4dd8da6150..5bf8035bf7 100644 --- a/app/services/wiki_pages/update_service.rb +++ b/app/services/wiki_pages/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/bulk/bulked_service.rb b/app/services/work_packages/bulk/bulked_service.rb index a718d526c8..a21df8bcf6 100644 --- a/app/services/work_packages/bulk/bulked_service.rb +++ b/app/services/work_packages/bulk/bulked_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/bulk/copy_service.rb b/app/services/work_packages/bulk/copy_service.rb index e0cbc36c64..50685ddb28 100644 --- a/app/services/work_packages/bulk/copy_service.rb +++ b/app/services/work_packages/bulk/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/bulk/move_service.rb b/app/services/work_packages/bulk/move_service.rb index 4762184623..a82538d152 100644 --- a/app/services/work_packages/bulk/move_service.rb +++ b/app/services/work_packages/bulk/move_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/bulk/update_service.rb b/app/services/work_packages/bulk/update_service.rb index 84b96a9d83..8fa7f69ac8 100644 --- a/app/services/work_packages/bulk/update_service.rb +++ b/app/services/work_packages/bulk/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/copy_service.rb b/app/services/work_packages/copy_service.rb index 0aca54ae08..47c261faa7 100644 --- a/app/services/work_packages/copy_service.rb +++ b/app/services/work_packages/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/create_service.rb b/app/services/work_packages/create_service.rb index 386ce834a3..dca5dd560e 100644 --- a/app/services/work_packages/create_service.rb +++ b/app/services/work_packages/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/delete_service.rb b/app/services/work_packages/delete_service.rb index 54690f7cfd..0765df431d 100644 --- a/app/services/work_packages/delete_service.rb +++ b/app/services/work_packages/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/exports/schedule_service.rb b/app/services/work_packages/exports/schedule_service.rb index 61c2e576b6..2791c46fa4 100644 --- a/app/services/work_packages/exports/schedule_service.rb +++ b/app/services/work_packages/exports/schedule_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/schedule_dependency.rb b/app/services/work_packages/schedule_dependency.rb index d3d886e3c2..1c7a93536b 100644 --- a/app/services/work_packages/schedule_dependency.rb +++ b/app/services/work_packages/schedule_dependency.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/set_attributes_service.rb b/app/services/work_packages/set_attributes_service.rb index 8c9230a0b0..dd6ae94aec 100644 --- a/app/services/work_packages/set_attributes_service.rb +++ b/app/services/work_packages/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/set_schedule_service.rb b/app/services/work_packages/set_schedule_service.rb index d98e349dae..f2d91235e8 100644 --- a/app/services/work_packages/set_schedule_service.rb +++ b/app/services/work_packages/set_schedule_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/shared/update_ancestors.rb b/app/services/work_packages/shared/update_ancestors.rb index 6d34ab3a60..8541449e73 100644 --- a/app/services/work_packages/shared/update_ancestors.rb +++ b/app/services/work_packages/shared/update_ancestors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/update_ancestors_service.rb b/app/services/work_packages/update_ancestors_service.rb index 18d011f16a..28f9682882 100644 --- a/app/services/work_packages/update_ancestors_service.rb +++ b/app/services/work_packages/update_ancestors_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/work_packages/update_service.rb b/app/services/work_packages/update_service.rb index 415e34d060..cdb61c9979 100644 --- a/app/services/work_packages/update_service.rb +++ b/app/services/work_packages/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/services/workflows/bulk_update_service.rb b/app/services/workflows/bulk_update_service.rb index 33bf3b5ce9..878ded8aca 100644 --- a/app/services/workflows/bulk_update_service.rb +++ b/app/services/workflows/bulk_update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/uploaders/file_uploader.rb b/app/uploaders/file_uploader.rb index 4d3453f6e3..6d9c311b89 100644 --- a/app/uploaders/file_uploader.rb +++ b/app/uploaders/file_uploader.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/uploaders/fog_file_uploader.rb b/app/uploaders/fog_file_uploader.rb index 647d446f6e..7c9e904e8a 100644 --- a/app/uploaders/fog_file_uploader.rb +++ b/app/uploaders/fog_file_uploader.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/uploaders/local_file_uploader.rb b/app/uploaders/local_file_uploader.rb index 89bfa74a6f..73357114ea 100644 --- a/app/uploaders/local_file_uploader.rb +++ b/app/uploaders/local_file_uploader.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/validators/not_nil_validator.rb b/app/validators/not_nil_validator.rb index 89cce6f18f..9da456c785 100644 --- a/app/validators/not_nil_validator.rb +++ b/app/validators/not_nil_validator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/accessibility/_empty_element_tag.html.erb b/app/views/accessibility/_empty_element_tag.html.erb index e247b54fbc..f6a6ce6442 100644 --- a/app/views/accessibility/_empty_element_tag.html.erb +++ b/app/views/accessibility/_empty_element_tag.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/_auth_providers.html.erb b/app/views/account/_auth_providers.html.erb index 79c53a3f0b..04870d6648 100644 --- a/app/views/account/_auth_providers.html.erb +++ b/app/views/account/_auth_providers.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/_login.html.erb b/app/views/account/_login.html.erb index d78fab7f77..f4d5484d99 100644 --- a/app/views/account/_login.html.erb +++ b/app/views/account/_login.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/_omniauth_login.html.erb b/app/views/account/_omniauth_login.html.erb index b2f0335e6e..2fa0e5e9e6 100644 --- a/app/views/account/_omniauth_login.html.erb +++ b/app/views/account/_omniauth_login.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/_password_login_form.html.erb b/app/views/account/_password_login_form.html.erb index 941c8b29a5..652283888b 100644 --- a/app/views/account/_password_login_form.html.erb +++ b/app/views/account/_password_login_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/_register.html.erb b/app/views/account/_register.html.erb index 3272d22294..b3309e9953 100644 --- a/app/views/account/_register.html.erb +++ b/app/views/account/_register.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/consent.html.erb b/app/views/account/consent.html.erb index 1a6415354c..e0ded55135 100644 --- a/app/views/account/consent.html.erb +++ b/app/views/account/consent.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/exit.html.erb b/app/views/account/exit.html.erb index b8d0ce5e95..89e4537c51 100644 --- a/app/views/account/exit.html.erb +++ b/app/views/account/exit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/login.html.erb b/app/views/account/login.html.erb index 4489cc8db0..1f27c2e20c 100644 --- a/app/views/account/login.html.erb +++ b/app/views/account/login.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/lost_password.html.erb b/app/views/account/lost_password.html.erb index a72ce738ef..6bb5641d4c 100644 --- a/app/views/account/lost_password.html.erb +++ b/app/views/account/lost_password.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/password_recovery.html.erb b/app/views/account/password_recovery.html.erb index dfcbe1f7b4..a88e8bc2fd 100644 --- a/app/views/account/password_recovery.html.erb +++ b/app/views/account/password_recovery.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/account/register.html.erb b/app/views/account/register.html.erb index cce2ac3f2b..bba1d4616d 100644 --- a/app/views/account/register.html.erb +++ b/app/views/account/register.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index ca0d1d5e09..21e5400d34 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/backups/reset_token.html.erb b/app/views/admin/backups/reset_token.html.erb index 03a411889a..ef9623b4a6 100644 --- a/app/views/admin/backups/reset_token.html.erb +++ b/app/views/admin/backups/reset_token.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/backups/show.html.erb b/app/views/admin/backups/show.html.erb index 9514039c8e..323b4cdd41 100644 --- a/app/views/admin/backups/show.html.erb +++ b/app/views/admin/backups/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/index.html.erb b/app/views/admin/index.html.erb index 0f66f8cae7..5eec47a1ab 100644 --- a/app/views/admin/index.html.erb +++ b/app/views/admin/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/info.html.erb b/app/views/admin/info.html.erb index 13a6297b39..70f30e53eb 100644 --- a/app/views/admin/info.html.erb +++ b/app/views/admin/info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/plugins.html.erb b/app/views/admin/plugins.html.erb index 3982ed768d..f39c0edad7 100644 --- a/app/views/admin/plugins.html.erb +++ b/app/views/admin/plugins.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/api_settings/show.html.erb b/app/views/admin/settings/api_settings/show.html.erb index bbe4fa7630..8f26bcf2cc 100644 --- a/app/views/admin/settings/api_settings/show.html.erb +++ b/app/views/admin/settings/api_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/attachments_settings/show.html.erb b/app/views/admin/settings/attachments_settings/show.html.erb index 9a81be78c0..817bb598b4 100644 --- a/app/views/admin/settings/attachments_settings/show.html.erb +++ b/app/views/admin/settings/attachments_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/authentication_settings/show.html.erb b/app/views/admin/settings/authentication_settings/show.html.erb index 4068fd5544..2e0bda8dde 100644 --- a/app/views/admin/settings/authentication_settings/show.html.erb +++ b/app/views/admin/settings/authentication_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/display_settings/show.html.erb b/app/views/admin/settings/display_settings/show.html.erb index 666d1844c8..0011f9ba32 100644 --- a/app/views/admin/settings/display_settings/show.html.erb +++ b/app/views/admin/settings/display_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/general_settings/show.html.erb b/app/views/admin/settings/general_settings/show.html.erb index 84dda57fe4..e54cc5c24c 100644 --- a/app/views/admin/settings/general_settings/show.html.erb +++ b/app/views/admin/settings/general_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/incoming_mails_settings/show.html.erb b/app/views/admin/settings/incoming_mails_settings/show.html.erb index 71978cc072..b8b80b0c06 100644 --- a/app/views/admin/settings/incoming_mails_settings/show.html.erb +++ b/app/views/admin/settings/incoming_mails_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/mail_notifications_settings/show.html.erb b/app/views/admin/settings/mail_notifications_settings/show.html.erb index 1e716b1703..607891f605 100644 --- a/app/views/admin/settings/mail_notifications_settings/show.html.erb +++ b/app/views/admin/settings/mail_notifications_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/notifications_settings/show.html.erb b/app/views/admin/settings/notifications_settings/show.html.erb index 8d2461dc53..628e0c0939 100644 --- a/app/views/admin/settings/notifications_settings/show.html.erb +++ b/app/views/admin/settings/notifications_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/projects_settings/show.html.erb b/app/views/admin/settings/projects_settings/show.html.erb index 1709f726bf..54debdcd15 100644 --- a/app/views/admin/settings/projects_settings/show.html.erb +++ b/app/views/admin/settings/projects_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/repositories_settings/show.html.erb b/app/views/admin/settings/repositories_settings/show.html.erb index dda9d3b81d..00195596ca 100644 --- a/app/views/admin/settings/repositories_settings/show.html.erb +++ b/app/views/admin/settings/repositories_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/show_plugin.html.erb b/app/views/admin/settings/show_plugin.html.erb index 63279039e3..b0b000d401 100644 --- a/app/views/admin/settings/show_plugin.html.erb +++ b/app/views/admin/settings/show_plugin.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/users_settings/show.html.erb b/app/views/admin/settings/users_settings/show.html.erb index 4afcfa45c0..9c9f8662e1 100644 --- a/app/views/admin/settings/users_settings/show.html.erb +++ b/app/views/admin/settings/users_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/admin/settings/work_packages_settings/show.html.erb b/app/views/admin/settings/work_packages_settings/show.html.erb index 5d42e2a64f..f086512123 100644 --- a/app/views/admin/settings/work_packages_settings/show.html.erb +++ b/app/views/admin/settings/work_packages_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/attribute_help_texts/_form.html.erb b/app/views/attribute_help_texts/_form.html.erb index a7fd13ddf9..703ccc3cd0 100644 --- a/app/views/attribute_help_texts/_form.html.erb +++ b/app/views/attribute_help_texts/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/attribute_help_texts/edit.html.erb b/app/views/attribute_help_texts/edit.html.erb index 6a219db616..93224337c2 100644 --- a/app/views/attribute_help_texts/edit.html.erb +++ b/app/views/attribute_help_texts/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/attribute_help_texts/index.html.erb b/app/views/attribute_help_texts/index.html.erb index 12ee83f9b6..ae239476e1 100644 --- a/app/views/attribute_help_texts/index.html.erb +++ b/app/views/attribute_help_texts/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/attribute_help_texts/new.html.erb b/app/views/attribute_help_texts/new.html.erb index b4f9fef741..a1508e3714 100644 --- a/app/views/attribute_help_texts/new.html.erb +++ b/app/views/attribute_help_texts/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/auth_sources/_form.html.erb b/app/views/auth_sources/_form.html.erb index e84dc64dcf..adce1b5562 100644 --- a/app/views/auth_sources/_form.html.erb +++ b/app/views/auth_sources/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/auth_sources/edit.html.erb b/app/views/auth_sources/edit.html.erb index aaded8f57f..92fc82431f 100644 --- a/app/views/auth_sources/edit.html.erb +++ b/app/views/auth_sources/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb index c0ba7527f3..4d45d44401 100644 --- a/app/views/auth_sources/index.html.erb +++ b/app/views/auth_sources/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/auth_sources/new.html.erb b/app/views/auth_sources/new.html.erb index 4709ddfc95..c56d9f3153 100644 --- a/app/views/auth_sources/new.html.erb +++ b/app/views/auth_sources/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/categories/_form.html.erb b/app/views/categories/_form.html.erb index 0e2365ae3c..e1c03363bd 100644 --- a/app/views/categories/_form.html.erb +++ b/app/views/categories/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/categories/create.js.erb b/app/views/categories/create.js.erb index db724fb9a0..dd544bb63f 100644 --- a/app/views/categories/create.js.erb +++ b/app/views/categories/create.js.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/categories/destroy.html.erb b/app/views/categories/destroy.html.erb index e10a2fc164..18a1d1f2d6 100644 --- a/app/views/categories/destroy.html.erb +++ b/app/views/categories/destroy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/categories/edit.html.erb b/app/views/categories/edit.html.erb index adf041c11b..ce892988c5 100644 --- a/app/views/categories/edit.html.erb +++ b/app/views/categories/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/categories/new.html.erb b/app/views/categories/new.html.erb index c11dca5e76..906b5416ca 100644 --- a/app/views/categories/new.html.erb +++ b/app/views/categories/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/colors/_form.html.erb b/app/views/colors/_form.html.erb index d6b2cf4801..b426e61da8 100644 --- a/app/views/colors/_form.html.erb +++ b/app/views/colors/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/colors/confirm_destroy.html.erb b/app/views/colors/confirm_destroy.html.erb index 894163c605..cc5945f520 100644 --- a/app/views/colors/confirm_destroy.html.erb +++ b/app/views/colors/confirm_destroy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/colors/edit.html.erb b/app/views/colors/edit.html.erb index 9e95c096dd..69a744f5ff 100644 --- a/app/views/colors/edit.html.erb +++ b/app/views/colors/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/colors/index.html.erb b/app/views/colors/index.html.erb index 97919fa349..3025584626 100644 --- a/app/views/colors/index.html.erb +++ b/app/views/colors/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/colors/new.html.erb b/app/views/colors/new.html.erb index 4022343226..e0d6d5a26d 100644 --- a/app/views/colors/new.html.erb +++ b/app/views/colors/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_diff.html.erb b/app/views/common/_diff.html.erb index a6b5c06c51..f41865e621 100644 --- a/app/views/common/_diff.html.erb +++ b/app/views/common/_diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_error_base.html.erb b/app/views/common/_error_base.html.erb index 2187584baa..160a499bc3 100644 --- a/app/views/common/_error_base.html.erb +++ b/app/views/common/_error_base.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_file.html.erb b/app/views/common/_file.html.erb index b41d3504e2..32b4526f93 100644 --- a/app/views/common/_file.html.erb +++ b/app/views/common/_file.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_no_results.html.erb b/app/views/common/_no_results.html.erb index e0c2ac3d0b..f130612e6a 100644 --- a/app/views/common/_no_results.html.erb +++ b/app/views/common/_no_results.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_tabs.html.erb b/app/views/common/_tabs.html.erb index f0945ba41d..0890f11027 100644 --- a/app/views/common/_tabs.html.erb +++ b/app/views/common/_tabs.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/_validation_error.html.erb b/app/views/common/_validation_error.html.erb index d6d97d1e7c..917b2cdb75 100644 --- a/app/views/common/_validation_error.html.erb +++ b/app/views/common/_validation_error.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/error.html.erb b/app/views/common/error.html.erb index e318b69616..ee75b617b2 100644 --- a/app/views/common/error.html.erb +++ b/app/views/common/error.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/feed.atom.builder b/app/views/common/feed.atom.builder index a09c5edaac..7e8c49e18a 100644 --- a/app/views/common/feed.atom.builder +++ b/app/views/common/feed.atom.builder @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/common/list_attachments.json.erb b/app/views/common/list_attachments.json.erb index cbf93a907e..f326ac9805 100644 --- a/app/views/common/list_attachments.json.erb +++ b/app/views/common/list_attachments.json.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_actions/edit.html.erb b/app/views/custom_actions/edit.html.erb index a8332a47b7..14a2ac7ded 100644 --- a/app/views/custom_actions/edit.html.erb +++ b/app/views/custom_actions/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_actions/new.html.erb b/app/views/custom_actions/new.html.erb index 6bbe7b8aa3..8dfb531911 100644 --- a/app/views/custom_actions/new.html.erb +++ b/app/views/custom_actions/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/_custom_fields_header.html.erb b/app/views/custom_fields/_custom_fields_header.html.erb index 4c2390635f..c48f6e1532 100644 --- a/app/views/custom_fields/_custom_fields_header.html.erb +++ b/app/views/custom_fields/_custom_fields_header.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/_custom_options.html.erb b/app/views/custom_fields/_custom_options.html.erb index 40d2b232a4..e648fe45f3 100644 --- a/app/views/custom_fields/_custom_options.html.erb +++ b/app/views/custom_fields/_custom_options.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index 9c45ee4701..de1da7f8fd 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/_tab.html.erb b/app/views/custom_fields/_tab.html.erb index aad6b4d4ba..c009ee6875 100644 --- a/app/views/custom_fields/_tab.html.erb +++ b/app/views/custom_fields/_tab.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/edit.html.erb b/app/views/custom_fields/edit.html.erb index 958b0c3b83..6730f058c8 100644 --- a/app/views/custom_fields/edit.html.erb +++ b/app/views/custom_fields/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/index.html.erb b/app/views/custom_fields/index.html.erb index bf9173027b..dca743e5cf 100644 --- a/app/views/custom_fields/index.html.erb +++ b/app/views/custom_fields/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_fields/new.html.erb b/app/views/custom_fields/new.html.erb index 7410e60257..916ea83fef 100644 --- a/app/views/custom_fields/new.html.erb +++ b/app/views/custom_fields/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_styles/show.html.erb b/app/views/custom_styles/show.html.erb index 9718dcd807..80c015af08 100644 --- a/app/views/custom_styles/show.html.erb +++ b/app/views/custom_styles/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/custom_styles/upsale.html.erb b/app/views/custom_styles/upsale.html.erb index 791b8c5768..14d377b68c 100644 --- a/app/views/custom_styles/upsale.html.erb +++ b/app/views/custom_styles/upsale.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/customizable/_form.html.erb b/app/views/customizable/_form.html.erb index e34ca564b5..6e3241b764 100644 --- a/app/views/customizable/_form.html.erb +++ b/app/views/customizable/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enterprises/_info.html.erb b/app/views/enterprises/_info.html.erb index 16f8468309..295abd0ba1 100644 --- a/app/views/enterprises/_info.html.erb +++ b/app/views/enterprises/_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enumerations/_form.html.erb b/app/views/enumerations/_form.html.erb index 6e0feb7612..86fc94ad5a 100644 --- a/app/views/enumerations/_form.html.erb +++ b/app/views/enumerations/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enumerations/destroy.html.erb b/app/views/enumerations/destroy.html.erb index ad0b65119f..2473e597c9 100644 --- a/app/views/enumerations/destroy.html.erb +++ b/app/views/enumerations/destroy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enumerations/edit.html.erb b/app/views/enumerations/edit.html.erb index c41e677386..96dcb39a4a 100644 --- a/app/views/enumerations/edit.html.erb +++ b/app/views/enumerations/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enumerations/index.html.erb b/app/views/enumerations/index.html.erb index 21a164e03b..5d8e155c67 100644 --- a/app/views/enumerations/index.html.erb +++ b/app/views/enumerations/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/enumerations/new.html.erb b/app/views/enumerations/new.html.erb index b148c6e55d..0a61dab860 100644 --- a/app/views/enumerations/new.html.erb +++ b/app/views/enumerations/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/forums/_form.html.erb b/app/views/forums/_form.html.erb index 2f80cd7a70..876b4f7bf1 100644 --- a/app/views/forums/_form.html.erb +++ b/app/views/forums/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/forums/edit.html.erb b/app/views/forums/edit.html.erb index 3a2c437d74..2872f2e984 100644 --- a/app/views/forums/edit.html.erb +++ b/app/views/forums/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/forums/index.html.erb b/app/views/forums/index.html.erb index b061c81120..147ef15945 100644 --- a/app/views/forums/index.html.erb +++ b/app/views/forums/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/forums/new.html.erb b/app/views/forums/new.html.erb index 72ed35845c..a11f8db124 100644 --- a/app/views/forums/new.html.erb +++ b/app/views/forums/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/forums/show.html.erb b/app/views/forums/show.html.erb index fbe5e833f1..48daf133c9 100644 --- a/app/views/forums/show.html.erb +++ b/app/views/forums/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/_form.html.erb b/app/views/groups/_form.html.erb index 93de2abd89..e8024c47f8 100644 --- a/app/views/groups/_form.html.erb +++ b/app/views/groups/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/_general.html.erb b/app/views/groups/_general.html.erb index 01fed78d9e..17202c644e 100644 --- a/app/views/groups/_general.html.erb +++ b/app/views/groups/_general.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/_memberships.html.erb b/app/views/groups/_memberships.html.erb index b019d3f851..54c6ebdaf3 100644 --- a/app/views/groups/_memberships.html.erb +++ b/app/views/groups/_memberships.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb index 2cb9b9f288..43673bef0e 100644 --- a/app/views/groups/_users.html.erb +++ b/app/views/groups/_users.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/_users_table.html.erb b/app/views/groups/_users_table.html.erb index c6a37e701e..3f5c597cb0 100644 --- a/app/views/groups/_users_table.html.erb +++ b/app/views/groups/_users_table.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/autocomplete_for_user.html.erb b/app/views/groups/autocomplete_for_user.html.erb index 8b7c42eec9..78961fd2e2 100644 --- a/app/views/groups/autocomplete_for_user.html.erb +++ b/app/views/groups/autocomplete_for_user.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/edit.html.erb b/app/views/groups/edit.html.erb index 0a2ff40209..78a83ba1f8 100644 --- a/app/views/groups/edit.html.erb +++ b/app/views/groups/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/index.html.erb b/app/views/groups/index.html.erb index 699dcff6c1..400ebf41b3 100644 --- a/app/views/groups/index.html.erb +++ b/app/views/groups/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/new.html.erb b/app/views/groups/new.html.erb index 8a8eb1c869..e4204b695a 100644 --- a/app/views/groups/new.html.erb +++ b/app/views/groups/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/groups/show.html.erb b/app/views/groups/show.html.erb index c3cfd64704..2c5278083b 100644 --- a/app/views/groups/show.html.erb +++ b/app/views/groups/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/homescreen/index.html.erb b/app/views/homescreen/index.html.erb index 6617352988..d4d8542494 100644 --- a/app/views/homescreen/index.html.erb +++ b/app/views/homescreen/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/homescreen/robots.text.erb b/app/views/homescreen/robots.text.erb index 7d7964f3a8..552fc79de9 100644 --- a/app/views/homescreen/robots.text.erb +++ b/app/views/homescreen/robots.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/hooks/login/_auth_provider.html.erb b/app/views/hooks/login/_auth_provider.html.erb index 4dd29e46ac..8f660fdf38 100644 --- a/app/views/hooks/login/_auth_provider.html.erb +++ b/app/views/hooks/login/_auth_provider.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/individual_principals/_memberships.html.erb b/app/views/individual_principals/_memberships.html.erb index 00dc90c34e..adde2dc068 100644 --- a/app/views/individual_principals/_memberships.html.erb +++ b/app/views/individual_principals/_memberships.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/journals/_diff.html.erb b/app/views/journals/_diff.html.erb index 4d710b208e..65e45a1418 100644 --- a/app/views/journals/_diff.html.erb +++ b/app/views/journals/_diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/journals/diff.html.erb b/app/views/journals/diff.html.erb index d7376ecbba..813e222b5c 100644 --- a/app/views/journals/diff.html.erb +++ b/app/views/journals/diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/journals/index.atom.builder b/app/views/journals/index.atom.builder index cd5cbaf4d1..08276fe7c3 100644 --- a/app/views/journals/index.atom.builder +++ b/app/views/journals/index.atom.builder @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb index b65afb3db9..cbbd427cff 100644 --- a/app/views/layouts/admin.html.erb +++ b/app/views/layouts/admin.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/angular/angular.html.erb b/app/views/layouts/angular/angular.html.erb index 2b672c38c0..ece77f8925 100644 --- a/app/views/layouts/angular/angular.html.erb +++ b/app/views/layouts/angular/angular.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/angular/notifications.html.erb b/app/views/layouts/angular/notifications.html.erb index ffa7c987dc..78618c9928 100644 --- a/app/views/layouts/angular/notifications.html.erb +++ b/app/views/layouts/angular/notifications.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/base.html.erb b/app/views/layouts/base.html.erb index 9a89decc56..da02f489d5 100644 --- a/app/views/layouts/base.html.erb +++ b/app/views/layouts/base.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb index 76c278668b..7e2c55b7c8 100644 --- a/app/views/layouts/mailer.html.erb +++ b/app/views/layouts/mailer.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb index c5e25924ae..c7b430b1f2 100644 --- a/app/views/layouts/mailer.text.erb +++ b/app/views/layouts/mailer.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/my.html.erb b/app/views/layouts/my.html.erb index a0b94cc30a..45321ad2de 100644 --- a/app/views/layouts/my.html.erb +++ b/app/views/layouts/my.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/no_menu.html.erb b/app/views/layouts/no_menu.html.erb index 71f184fcbb..5b8a6b764b 100644 --- a/app/views/layouts/no_menu.html.erb +++ b/app/views/layouts/no_menu.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/layouts/only_logo.html.erb b/app/views/layouts/only_logo.html.erb index 7aabfded42..e0d9d75d73 100644 --- a/app/views/layouts/only_logo.html.erb +++ b/app/views/layouts/only_logo.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/ldap_auth_sources/_form.html.erb b/app/views/ldap_auth_sources/_form.html.erb index c9afd99754..dbc6d588a0 100644 --- a/app/views/ldap_auth_sources/_form.html.erb +++ b/app/views/ldap_auth_sources/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/members/_autocomplete_for_member.html.erb b/app/views/members/_autocomplete_for_member.html.erb index d5ea23ecaa..dedbd6a322 100644 --- a/app/views/members/_autocomplete_for_member.html.erb +++ b/app/views/members/_autocomplete_for_member.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/members/_common_notice.html.erb b/app/views/members/_common_notice.html.erb index d2f3e0244f..08c09c7335 100644 --- a/app/views/members/_common_notice.html.erb +++ b/app/views/members/_common_notice.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/members/_member_form.html.erb b/app/views/members/_member_form.html.erb index d7f4c5d155..1ba77f68b8 100644 --- a/app/views/members/_member_form.html.erb +++ b/app/views/members/_member_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/members/index.html.erb b/app/views/members/index.html.erb index c1903f99a8..968f9caab4 100644 --- a/app/views/members/index.html.erb +++ b/app/views/members/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/messages/_form.html.erb b/app/views/messages/_form.html.erb index e16e1f9657..037d4eda3a 100644 --- a/app/views/messages/_form.html.erb +++ b/app/views/messages/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/messages/edit.html.erb b/app/views/messages/edit.html.erb index f57ff2f42e..3471da311c 100644 --- a/app/views/messages/edit.html.erb +++ b/app/views/messages/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/messages/new.html.erb b/app/views/messages/new.html.erb index 25ea121507..a4ca489f52 100644 --- a/app/views/messages/new.html.erb +++ b/app/views/messages/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb index 2eee5dc29d..2bda4a7aa6 100644 --- a/app/views/messages/show.html.erb +++ b/app/views/messages/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/my/_password_form_fields.html.erb b/app/views/my/_password_form_fields.html.erb index 40c7579f95..68de1e271a 100644 --- a/app/views/my/_password_form_fields.html.erb +++ b/app/views/my/_password_form_fields.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/my/access_token.html.erb b/app/views/my/access_token.html.erb index 2e11adfcf6..80b39dacfa 100644 --- a/app/views/my/access_token.html.erb +++ b/app/views/my/access_token.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/my/account.html.erb b/app/views/my/account.html.erb index 5b509d4031..e457c19e69 100644 --- a/app/views/my/account.html.erb +++ b/app/views/my/account.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/my/password.html.erb b/app/views/my/password.html.erb index 74885404eb..08d7ceb373 100644 --- a/app/views/my/password.html.erb +++ b/app/views/my/password.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/my/settings.html.erb b/app/views/my/settings.html.erb index 152cc809c9..89d6d1e3d8 100644 --- a/app/views/my/settings.html.erb +++ b/app/views/my/settings.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/_form.html.erb b/app/views/news/_form.html.erb index 59a044d3ac..6ba0bbae4b 100644 --- a/app/views/news/_form.html.erb +++ b/app/views/news/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/_news.html.erb b/app/views/news/_news.html.erb index 8c2d7d88d9..f56f0f36a6 100644 --- a/app/views/news/_news.html.erb +++ b/app/views/news/_news.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/edit.html.erb b/app/views/news/edit.html.erb index 818b4cadc4..f6b8180736 100644 --- a/app/views/news/edit.html.erb +++ b/app/views/news/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/index.html.erb b/app/views/news/index.html.erb index 66c1aa4781..1e3c54296d 100644 --- a/app/views/news/index.html.erb +++ b/app/views/news/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/new.html.erb b/app/views/news/new.html.erb index cb9d397711..fb93ab21d6 100644 --- a/app/views/news/new.html.erb +++ b/app/views/news/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/news/show.html.erb b/app/views/news/show.html.erb index b73fa5e404..aff772e190 100644 --- a/app/views/news/show.html.erb +++ b/app/views/news/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/oauth/applications/_form.html.erb b/app/views/oauth/applications/_form.html.erb index d3f814c022..209d71d1b2 100644 --- a/app/views/oauth/applications/_form.html.erb +++ b/app/views/oauth/applications/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/oauth/applications/edit.html.erb b/app/views/oauth/applications/edit.html.erb index 19ffa83232..f61ec3bbc7 100644 --- a/app/views/oauth/applications/edit.html.erb +++ b/app/views/oauth/applications/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/oauth/applications/index.html.erb b/app/views/oauth/applications/index.html.erb index a164afe10d..edd7ec95ee 100644 --- a/app/views/oauth/applications/index.html.erb +++ b/app/views/oauth/applications/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/oauth/applications/new.html.erb b/app/views/oauth/applications/new.html.erb index 61ef71d6cb..044deec173 100644 --- a/app/views/oauth/applications/new.html.erb +++ b/app/views/oauth/applications/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/oauth/applications/show.html.erb b/app/views/oauth/applications/show.html.erb index e464db0e69..e3d4e47b31 100644 --- a/app/views/oauth/applications/show.html.erb +++ b/app/views/oauth/applications/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/onboarding/_configuration_modal.html.erb b/app/views/onboarding/_configuration_modal.html.erb index 60a56285a5..4ba7c51081 100644 --- a/app/views/onboarding/_configuration_modal.html.erb +++ b/app/views/onboarding/_configuration_modal.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/onboarding/_menu_item.html.erb b/app/views/onboarding/_menu_item.html.erb index 3b8b9c06d8..4e4db888eb 100644 --- a/app/views/onboarding/_menu_item.html.erb +++ b/app/views/onboarding/_menu_item.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/onboarding/_onboarding_video_modal.html.erb b/app/views/onboarding/_onboarding_video_modal.html.erb index 84f8ce51bb..a978d207de 100644 --- a/app/views/onboarding/_onboarding_video_modal.html.erb +++ b/app/views/onboarding/_onboarding_video_modal.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/placeholder_users/_toolbar.html.erb b/app/views/placeholder_users/_toolbar.html.erb index 82adc0b656..d4b534f4af 100644 --- a/app/views/placeholder_users/_toolbar.html.erb +++ b/app/views/placeholder_users/_toolbar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/placeholder_users/_toolbar_delete.html.erb b/app/views/placeholder_users/_toolbar_delete.html.erb index a8b3256958..af2abd830b 100644 --- a/app/views/placeholder_users/_toolbar_delete.html.erb +++ b/app/views/placeholder_users/_toolbar_delete.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/placeholder_users/deletion_info.html.erb b/app/views/placeholder_users/deletion_info.html.erb index 6967a18b19..f8e984a446 100644 --- a/app/views/placeholder_users/deletion_info.html.erb +++ b/app/views/placeholder_users/deletion_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/placeholder_users/show.html.erb b/app/views/placeholder_users/show.html.erb index 6ef20ada34..4db5e72af1 100644 --- a/app/views/placeholder_users/show.html.erb +++ b/app/views/placeholder_users/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/principals/_assigned_global_role.html.erb b/app/views/principals/_assigned_global_role.html.erb index 0242128929..e246e04372 100644 --- a/app/views/principals/_assigned_global_role.html.erb +++ b/app/views/principals/_assigned_global_role.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/principals/_available_global_role.html.erb b/app/views/principals/_available_global_role.html.erb index b6796bb0e6..40c426e2eb 100644 --- a/app/views/principals/_available_global_role.html.erb +++ b/app/views/principals/_available_global_role.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/principals/_available_global_roles.html.erb b/app/views/principals/_available_global_roles.html.erb index e4b31c6260..97f5869eda 100644 --- a/app/views/principals/_available_global_roles.html.erb +++ b/app/views/principals/_available_global_roles.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/principals/_global_roles.html.erb b/app/views/principals/_global_roles.html.erb index 7ad96be8ba..bc5511d1b0 100644 --- a/app/views/principals/_global_roles.html.erb +++ b/app/views/principals/_global_roles.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/principals/_global_roles_header.html.erb b/app/views/principals/_global_roles_header.html.erb index 2ead7011da..235b7b41e3 100644 --- a/app/views/principals/_global_roles_header.html.erb +++ b/app/views/principals/_global_roles_header.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/copy_project_failed.html.erb b/app/views/project_mailer/copy_project_failed.html.erb index 70dec945fe..f2a16e7fd9 100644 --- a/app/views/project_mailer/copy_project_failed.html.erb +++ b/app/views/project_mailer/copy_project_failed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/copy_project_failed.text.erb b/app/views/project_mailer/copy_project_failed.text.erb index 9d8218f4df..6daf010d0e 100644 --- a/app/views/project_mailer/copy_project_failed.text.erb +++ b/app/views/project_mailer/copy_project_failed.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/copy_project_succeeded.html.erb b/app/views/project_mailer/copy_project_succeeded.html.erb index f38a3d071a..9a563e8ff7 100644 --- a/app/views/project_mailer/copy_project_succeeded.html.erb +++ b/app/views/project_mailer/copy_project_succeeded.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/copy_project_succeeded.text.erb b/app/views/project_mailer/copy_project_succeeded.text.erb index 3ffede5eda..ceb631af5c 100644 --- a/app/views/project_mailer/copy_project_succeeded.text.erb +++ b/app/views/project_mailer/copy_project_succeeded.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/delete_project_completed.html.erb b/app/views/project_mailer/delete_project_completed.html.erb index bcb92166b0..25d1a7ac61 100644 --- a/app/views/project_mailer/delete_project_completed.html.erb +++ b/app/views/project_mailer/delete_project_completed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/delete_project_completed.text.erb b/app/views/project_mailer/delete_project_completed.text.erb index 72f0037edc..a1d1dd944d 100644 --- a/app/views/project_mailer/delete_project_completed.text.erb +++ b/app/views/project_mailer/delete_project_completed.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/delete_project_failed.html.erb b/app/views/project_mailer/delete_project_failed.html.erb index 931effdc35..50ab4f959f 100644 --- a/app/views/project_mailer/delete_project_failed.html.erb +++ b/app/views/project_mailer/delete_project_failed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/project_mailer/delete_project_failed.text.erb b/app/views/project_mailer/delete_project_failed.text.erb index c22f35e2e4..89d090713a 100644 --- a/app/views/project_mailer/delete_project_failed.text.erb +++ b/app/views/project_mailer/delete_project_failed.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/_project_export_modal.html.erb b/app/views/projects/_project_export_modal.html.erb index 95db1de789..5c7f269e17 100644 --- a/app/views/projects/_project_export_modal.html.erb +++ b/app/views/projects/_project_export_modal.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/_toolbar.html.erb b/app/views/projects/_toolbar.html.erb index 8968d13349..92947d3fe9 100644 --- a/app/views/projects/_toolbar.html.erb +++ b/app/views/projects/_toolbar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/copy.html.erb b/app/views/projects/copy.html.erb index 77a851a1ae..b8b0d9c5a4 100644 --- a/app/views/projects/copy.html.erb +++ b/app/views/projects/copy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/destroy_info.html.erb b/app/views/projects/destroy_info.html.erb index b63840f6aa..11ce62cacd 100644 --- a/app/views/projects/destroy_info.html.erb +++ b/app/views/projects/destroy_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/identifier/show.html.erb b/app/views/projects/identifier/show.html.erb index 8c8376c824..a132bc6fb9 100644 --- a/app/views/projects/identifier/show.html.erb +++ b/app/views/projects/identifier/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/index.html.erb b/app/views/projects/index.html.erb index 05c9d47c8a..77a0eabbe0 100644 --- a/app/views/projects/index.html.erb +++ b/app/views/projects/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/new.html.erb b/app/views/projects/new.html.erb index 8b088f329d..7619b6d8e3 100644 --- a/app/views/projects/new.html.erb +++ b/app/views/projects/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/_form_toolbar.html.erb b/app/views/projects/settings/_form_toolbar.html.erb index 5b2005ed5e..207f69483c 100644 --- a/app/views/projects/settings/_form_toolbar.html.erb +++ b/app/views/projects/settings/_form_toolbar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/categories/show.html.erb b/app/views/projects/settings/categories/show.html.erb index cbaffb6ef3..bb45b6a94d 100644 --- a/app/views/projects/settings/categories/show.html.erb +++ b/app/views/projects/settings/categories/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/custom_fields/_form.html.erb b/app/views/projects/settings/custom_fields/_form.html.erb index facfb1d3a2..fe77be2eec 100644 --- a/app/views/projects/settings/custom_fields/_form.html.erb +++ b/app/views/projects/settings/custom_fields/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/custom_fields/show.html.erb b/app/views/projects/settings/custom_fields/show.html.erb index 5095637b72..8004b647f6 100644 --- a/app/views/projects/settings/custom_fields/show.html.erb +++ b/app/views/projects/settings/custom_fields/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/general/show.html.erb b/app/views/projects/settings/general/show.html.erb index 5496d9006c..9ceef16664 100644 --- a/app/views/projects/settings/general/show.html.erb +++ b/app/views/projects/settings/general/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/modules/_form.html.erb b/app/views/projects/settings/modules/_form.html.erb index 001976414a..fb405af608 100644 --- a/app/views/projects/settings/modules/_form.html.erb +++ b/app/views/projects/settings/modules/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/modules/show.html.erb b/app/views/projects/settings/modules/show.html.erb index dfb13a4407..191a6c9b07 100644 --- a/app/views/projects/settings/modules/show.html.erb +++ b/app/views/projects/settings/modules/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/_vendor_form.html.erb b/app/views/projects/settings/repository/_vendor_form.html.erb index b4bb7e7fea..8c6809c4e8 100644 --- a/app/views/projects/settings/repository/_vendor_form.html.erb +++ b/app/views/projects/settings/repository/_vendor_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/git/_local.html.erb b/app/views/projects/settings/repository/git/_local.html.erb index 93e32b2086..537e564414 100644 --- a/app/views/projects/settings/repository/git/_local.html.erb +++ b/app/views/projects/settings/repository/git/_local.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/git/_managed.html.erb b/app/views/projects/settings/repository/git/_managed.html.erb index 8f14906519..e19627a47d 100644 --- a/app/views/projects/settings/repository/git/_managed.html.erb +++ b/app/views/projects/settings/repository/git/_managed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/shared/_managed.html.erb b/app/views/projects/settings/repository/shared/_managed.html.erb index e4226a2ed5..ac5894e5e7 100644 --- a/app/views/projects/settings/repository/shared/_managed.html.erb +++ b/app/views/projects/settings/repository/shared/_managed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/show.html.erb b/app/views/projects/settings/repository/show.html.erb index dd12ffa7cf..ec35079474 100644 --- a/app/views/projects/settings/repository/show.html.erb +++ b/app/views/projects/settings/repository/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/subversion/_existing.html.erb b/app/views/projects/settings/repository/subversion/_existing.html.erb index 410a841f83..ec383b23b5 100644 --- a/app/views/projects/settings/repository/subversion/_existing.html.erb +++ b/app/views/projects/settings/repository/subversion/_existing.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/repository/subversion/_managed.html.erb b/app/views/projects/settings/repository/subversion/_managed.html.erb index ea5e3d3308..2e8a98fb68 100644 --- a/app/views/projects/settings/repository/subversion/_managed.html.erb +++ b/app/views/projects/settings/repository/subversion/_managed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/storage/_storage_field.html.erb b/app/views/projects/settings/storage/_storage_field.html.erb index 7fb20cec4e..0bef4318bb 100644 --- a/app/views/projects/settings/storage/_storage_field.html.erb +++ b/app/views/projects/settings/storage/_storage_field.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/storage/show.html.erb b/app/views/projects/settings/storage/show.html.erb index 841066f7d2..0a51719ada 100644 --- a/app/views/projects/settings/storage/show.html.erb +++ b/app/views/projects/settings/storage/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/types/_form.html.erb b/app/views/projects/settings/types/_form.html.erb index 06a3f6c5ff..f55a801095 100644 --- a/app/views/projects/settings/types/_form.html.erb +++ b/app/views/projects/settings/types/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/types/show.html.erb b/app/views/projects/settings/types/show.html.erb index 20dee72b75..8e57d523d3 100644 --- a/app/views/projects/settings/types/show.html.erb +++ b/app/views/projects/settings/types/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/projects/settings/versions/show.html.erb b/app/views/projects/settings/versions/show.html.erb index ccfc22efc1..015089e924 100644 --- a/app/views/projects/settings/versions/show.html.erb +++ b/app/views/projects/settings/versions/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_breadcrumbs.html.erb b/app/views/repositories/_breadcrumbs.html.erb index 1defce389f..c625bdb30d 100644 --- a/app/views/repositories/_breadcrumbs.html.erb +++ b/app/views/repositories/_breadcrumbs.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_checkout_instructions.html.erb b/app/views/repositories/_checkout_instructions.html.erb index e1b897bd82..ac85cd8215 100644 --- a/app/views/repositories/_checkout_instructions.html.erb +++ b/app/views/repositories/_checkout_instructions.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_dir_list.html.erb b/app/views/repositories/_dir_list.html.erb index 4c3c155e68..7fd52cbfe5 100644 --- a/app/views/repositories/_dir_list.html.erb +++ b/app/views/repositories/_dir_list.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_dir_list_content.html.erb b/app/views/repositories/_dir_list_content.html.erb index 0988036b4f..7d43593a4a 100644 --- a/app/views/repositories/_dir_list_content.html.erb +++ b/app/views/repositories/_dir_list_content.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_link_to_functions.html.erb b/app/views/repositories/_link_to_functions.html.erb index 4d642f24af..5a64b04463 100644 --- a/app/views/repositories/_link_to_functions.html.erb +++ b/app/views/repositories/_link_to_functions.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_repository_header.html.erb b/app/views/repositories/_repository_header.html.erb index 97eed2d45b..cbbe730751 100644 --- a/app/views/repositories/_repository_header.html.erb +++ b/app/views/repositories/_repository_header.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/_revisions.html.erb b/app/views/repositories/_revisions.html.erb index 89e271f282..ab66ce242f 100644 --- a/app/views/repositories/_revisions.html.erb +++ b/app/views/repositories/_revisions.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/annotate.html.erb b/app/views/repositories/annotate.html.erb index 75c0a593c1..f6101efb80 100644 --- a/app/views/repositories/annotate.html.erb +++ b/app/views/repositories/annotate.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/changes.html.erb b/app/views/repositories/changes.html.erb index 915b11db6c..62bd9bd094 100644 --- a/app/views/repositories/changes.html.erb +++ b/app/views/repositories/changes.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/committers.html.erb b/app/views/repositories/committers.html.erb index f85ef11fd7..94b482d933 100644 --- a/app/views/repositories/committers.html.erb +++ b/app/views/repositories/committers.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/destroy_info.html.erb b/app/views/repositories/destroy_info.html.erb index 321ec117a1..e09bcf25b6 100644 --- a/app/views/repositories/destroy_info.html.erb +++ b/app/views/repositories/destroy_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/diff.html.erb b/app/views/repositories/diff.html.erb index d59210fed0..d388fee318 100644 --- a/app/views/repositories/diff.html.erb +++ b/app/views/repositories/diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/empty.html.erb b/app/views/repositories/empty.html.erb index 6fbbbfdde4..0ad6a583bd 100644 --- a/app/views/repositories/empty.html.erb +++ b/app/views/repositories/empty.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/entry.html.erb b/app/views/repositories/entry.html.erb index dd300915c4..118e181fb6 100644 --- a/app/views/repositories/entry.html.erb +++ b/app/views/repositories/entry.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/revision.html.erb b/app/views/repositories/revision.html.erb index 25db6773d7..7fbff9c004 100644 --- a/app/views/repositories/revision.html.erb +++ b/app/views/repositories/revision.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/revisions.html.erb b/app/views/repositories/revisions.html.erb index 6060e9c864..18e14ed355 100644 --- a/app/views/repositories/revisions.html.erb +++ b/app/views/repositories/revisions.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/show.html.erb b/app/views/repositories/show.html.erb index 18d0f6671d..1ddb8ae2d9 100644 --- a/app/views/repositories/show.html.erb +++ b/app/views/repositories/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/repositories/stats.html.erb b/app/views/repositories/stats.html.erb index bd440d3ebd..01305897b7 100644 --- a/app/views/repositories/stats.html.erb +++ b/app/views/repositories/stats.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/_form.html.erb b/app/views/roles/_form.html.erb index 3de7a4c3c5..0ece471765 100644 --- a/app/views/roles/_form.html.erb +++ b/app/views/roles/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/_member_attributes.html.erb b/app/views/roles/_member_attributes.html.erb index 3748240986..111a802b24 100644 --- a/app/views/roles/_member_attributes.html.erb +++ b/app/views/roles/_member_attributes.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/_member_form.html.erb b/app/views/roles/_member_form.html.erb index fea7139d1b..383116a014 100644 --- a/app/views/roles/_member_form.html.erb +++ b/app/views/roles/_member_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/_permissions.html.erb b/app/views/roles/_permissions.html.erb index 067475509c..8199b8cdc0 100644 --- a/app/views/roles/_permissions.html.erb +++ b/app/views/roles/_permissions.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/autocomplete_for_role.json.erb b/app/views/roles/autocomplete_for_role.json.erb index 57f19525a4..673dcedb46 100644 --- a/app/views/roles/autocomplete_for_role.json.erb +++ b/app/views/roles/autocomplete_for_role.json.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/edit.html.erb b/app/views/roles/edit.html.erb index d298d5aeb9..94b8129958 100644 --- a/app/views/roles/edit.html.erb +++ b/app/views/roles/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb index c697826214..532886bfeb 100644 --- a/app/views/roles/index.html.erb +++ b/app/views/roles/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/new.html.erb b/app/views/roles/new.html.erb index 7b9022227e..b9d7ff6988 100644 --- a/app/views/roles/new.html.erb +++ b/app/views/roles/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/roles/report.html.erb b/app/views/roles/report.html.erb index ffac84ec26..e9233d44c0 100644 --- a/app/views/roles/report.html.erb +++ b/app/views/roles/report.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/search/_mini_form.html.erb b/app/views/search/_mini_form.html.erb index 8d61e75719..678b97ff06 100644 --- a/app/views/search/_mini_form.html.erb +++ b/app/views/search/_mini_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/search/_pagination.html.erb b/app/views/search/_pagination.html.erb index 61bdefd132..cf917b1da6 100644 --- a/app/views/search/_pagination.html.erb +++ b/app/views/search/_pagination.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/search/index.html.erb b/app/views/search/index.html.erb index 1135413353..b93f106d87 100644 --- a/app/views/search/index.html.erb +++ b/app/views/search/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/statuses/_form.html.erb b/app/views/statuses/_form.html.erb index 03e15b0aa5..0f75aa830f 100644 --- a/app/views/statuses/_form.html.erb +++ b/app/views/statuses/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/statuses/edit.html.erb b/app/views/statuses/edit.html.erb index 8637ffe8ea..7b99fb1eb4 100644 --- a/app/views/statuses/edit.html.erb +++ b/app/views/statuses/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/statuses/index.html.erb b/app/views/statuses/index.html.erb index fef3467d4b..e673850f46 100644 --- a/app/views/statuses/index.html.erb +++ b/app/views/statuses/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/statuses/new.html.erb b/app/views/statuses/new.html.erb index 04c9732506..9c36b1b6fe 100644 --- a/app/views/statuses/new.html.erb +++ b/app/views/statuses/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/edit.html.erb b/app/views/types/edit.html.erb index 47642fd518..2f29e2e3d0 100644 --- a/app/views/types/edit.html.erb +++ b/app/views/types/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/form/_form_configuration.html.erb b/app/views/types/form/_form_configuration.html.erb index 585b50171e..d2b2d5425b 100644 --- a/app/views/types/form/_form_configuration.html.erb +++ b/app/views/types/form/_form_configuration.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/form/_projects.html.erb b/app/views/types/form/_projects.html.erb index 97f889ad0e..f03b77fca4 100644 --- a/app/views/types/form/_projects.html.erb +++ b/app/views/types/form/_projects.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/form/_settings.html.erb b/app/views/types/form/_settings.html.erb index f796680cf1..0423fd6f5c 100644 --- a/app/views/types/form/_settings.html.erb +++ b/app/views/types/form/_settings.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/index.html.erb b/app/views/types/index.html.erb index 1d0e0c61c8..d8d909712e 100644 --- a/app/views/types/index.html.erb +++ b/app/views/types/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/types/new.html.erb b/app/views/types/new.html.erb index 05368dda1e..994f98d8a2 100644 --- a/app/views/types/new.html.erb +++ b/app/views/types/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/_errors.html.erb b/app/views/user_mailer/_errors.html.erb index 089d6c832e..35327ee1fd 100644 --- a/app/views/user_mailer/_errors.html.erb +++ b/app/views/user_mailer/_errors.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/_errors.text.erb b/app/views/user_mailer/_errors.text.erb index 9b6aa7f8df..7eee957db5 100644 --- a/app/views/user_mailer/_errors.text.erb +++ b/app/views/user_mailer/_errors.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_activated.html.erb b/app/views/user_mailer/account_activated.html.erb index 0ec113f1be..80608f07a3 100644 --- a/app/views/user_mailer/account_activated.html.erb +++ b/app/views/user_mailer/account_activated.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_activated.text.erb b/app/views/user_mailer/account_activated.text.erb index a23c79fad3..4ec383fcd5 100644 --- a/app/views/user_mailer/account_activated.text.erb +++ b/app/views/user_mailer/account_activated.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_activation_requested.html.erb b/app/views/user_mailer/account_activation_requested.html.erb index a39e7d9bf9..16083ee141 100644 --- a/app/views/user_mailer/account_activation_requested.html.erb +++ b/app/views/user_mailer/account_activation_requested.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_activation_requested.text.erb b/app/views/user_mailer/account_activation_requested.text.erb index a0c6304a86..377905e589 100644 --- a/app/views/user_mailer/account_activation_requested.text.erb +++ b/app/views/user_mailer/account_activation_requested.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_information.html.erb b/app/views/user_mailer/account_information.html.erb index fbad489e93..ef3a826436 100644 --- a/app/views/user_mailer/account_information.html.erb +++ b/app/views/user_mailer/account_information.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/account_information.text.erb b/app/views/user_mailer/account_information.text.erb index 9abe84d7b7..ec686aae50 100644 --- a/app/views/user_mailer/account_information.text.erb +++ b/app/views/user_mailer/account_information.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/activation_limit_reached.html.erb b/app/views/user_mailer/activation_limit_reached.html.erb index 8e415b0827..27cf1824a2 100644 --- a/app/views/user_mailer/activation_limit_reached.html.erb +++ b/app/views/user_mailer/activation_limit_reached.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/activation_limit_reached.text.erb b/app/views/user_mailer/activation_limit_reached.text.erb index 9e64c05abc..c15ba190fc 100644 --- a/app/views/user_mailer/activation_limit_reached.text.erb +++ b/app/views/user_mailer/activation_limit_reached.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/attachments_added.html.erb b/app/views/user_mailer/attachments_added.html.erb index 8b1efa40f7..7dd7d81cfe 100644 --- a/app/views/user_mailer/attachments_added.html.erb +++ b/app/views/user_mailer/attachments_added.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/attachments_added.text.erb b/app/views/user_mailer/attachments_added.text.erb index 89510690ed..1f599aa424 100644 --- a/app/views/user_mailer/attachments_added.text.erb +++ b/app/views/user_mailer/attachments_added.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/backup_ready.html.erb b/app/views/user_mailer/backup_ready.html.erb index 4f9d82b48d..6b9e2145ed 100644 --- a/app/views/user_mailer/backup_ready.html.erb +++ b/app/views/user_mailer/backup_ready.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/backup_ready.text.erb b/app/views/user_mailer/backup_ready.text.erb index f5d7bb8f5c..022fd5fc9a 100644 --- a/app/views/user_mailer/backup_ready.text.erb +++ b/app/views/user_mailer/backup_ready.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/backup_token_reset.html.erb b/app/views/user_mailer/backup_token_reset.html.erb index 18f73fdb2c..cd92669d7a 100644 --- a/app/views/user_mailer/backup_token_reset.html.erb +++ b/app/views/user_mailer/backup_token_reset.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/backup_token_reset.text.erb b/app/views/user_mailer/backup_token_reset.text.erb index 616d64dd50..139d87469a 100644 --- a/app/views/user_mailer/backup_token_reset.text.erb +++ b/app/views/user_mailer/backup_token_reset.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/message_posted.html.erb b/app/views/user_mailer/message_posted.html.erb index 5902f0057d..5874565b55 100644 --- a/app/views/user_mailer/message_posted.html.erb +++ b/app/views/user_mailer/message_posted.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/message_posted.text.erb b/app/views/user_mailer/message_posted.text.erb index 90092a4eac..4835199813 100644 --- a/app/views/user_mailer/message_posted.text.erb +++ b/app/views/user_mailer/message_posted.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/news_added.html.erb b/app/views/user_mailer/news_added.html.erb index ee1a894d26..ccedbdd5a8 100644 --- a/app/views/user_mailer/news_added.html.erb +++ b/app/views/user_mailer/news_added.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/news_added.text.erb b/app/views/user_mailer/news_added.text.erb index aa3b3ec095..80fe00abd0 100644 --- a/app/views/user_mailer/news_added.text.erb +++ b/app/views/user_mailer/news_added.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/news_comment_added.html.erb b/app/views/user_mailer/news_comment_added.html.erb index ed2e221e3e..313eb755cc 100644 --- a/app/views/user_mailer/news_comment_added.html.erb +++ b/app/views/user_mailer/news_comment_added.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/news_comment_added.text.erb b/app/views/user_mailer/news_comment_added.text.erb index b7f7151a15..bc74761287 100644 --- a/app/views/user_mailer/news_comment_added.text.erb +++ b/app/views/user_mailer/news_comment_added.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/password_lost.html.erb b/app/views/user_mailer/password_lost.html.erb index e42ce2916b..a80085bd40 100644 --- a/app/views/user_mailer/password_lost.html.erb +++ b/app/views/user_mailer/password_lost.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/password_lost.text.erb b/app/views/user_mailer/password_lost.text.erb index 9f84dd7acc..316a77f5e4 100644 --- a/app/views/user_mailer/password_lost.text.erb +++ b/app/views/user_mailer/password_lost.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/reminder_mail.html.erb b/app/views/user_mailer/reminder_mail.html.erb index ad64347bcb..22d34f5662 100644 --- a/app/views/user_mailer/reminder_mail.html.erb +++ b/app/views/user_mailer/reminder_mail.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/reminder_mail.text.erb b/app/views/user_mailer/reminder_mail.text.erb index d9b4a8be98..47ca5875ea 100644 --- a/app/views/user_mailer/reminder_mail.text.erb +++ b/app/views/user_mailer/reminder_mail.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/test_mail.html.erb b/app/views/user_mailer/test_mail.html.erb index b744653a95..9d8136c1f6 100644 --- a/app/views/user_mailer/test_mail.html.erb +++ b/app/views/user_mailer/test_mail.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/test_mail.text.erb b/app/views/user_mailer/test_mail.text.erb index 3568b8e545..a4f06cff8e 100644 --- a/app/views/user_mailer/test_mail.text.erb +++ b/app/views/user_mailer/test_mail.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/user_signed_up.html.erb b/app/views/user_mailer/user_signed_up.html.erb index e27079520f..53e1d9c6d5 100644 --- a/app/views/user_mailer/user_signed_up.html.erb +++ b/app/views/user_mailer/user_signed_up.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/user_signed_up.text.erb b/app/views/user_mailer/user_signed_up.text.erb index ac35f79a66..93cb160cbc 100644 --- a/app/views/user_mailer/user_signed_up.text.erb +++ b/app/views/user_mailer/user_signed_up.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/wiki_content_added.html.erb b/app/views/user_mailer/wiki_content_added.html.erb index 6a5f5a43fe..5cb9d181ad 100644 --- a/app/views/user_mailer/wiki_content_added.html.erb +++ b/app/views/user_mailer/wiki_content_added.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/wiki_content_added.text.erb b/app/views/user_mailer/wiki_content_added.text.erb index 710579ad99..c7696a98d8 100644 --- a/app/views/user_mailer/wiki_content_added.text.erb +++ b/app/views/user_mailer/wiki_content_added.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/wiki_content_updated.html.erb b/app/views/user_mailer/wiki_content_updated.html.erb index 574f1e341d..2f8fdb2111 100644 --- a/app/views/user_mailer/wiki_content_updated.html.erb +++ b/app/views/user_mailer/wiki_content_updated.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/user_mailer/wiki_content_updated.text.erb b/app/views/user_mailer/wiki_content_updated.text.erb index d0c6af6c2e..1292fe51bd 100644 --- a/app/views/user_mailer/wiki_content_updated.text.erb +++ b/app/views/user_mailer/wiki_content_updated.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_form.html.erb b/app/views/users/_form.html.erb index df09641350..0e5dd6a62f 100644 --- a/app/views/users/_form.html.erb +++ b/app/views/users/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_general.html.erb b/app/views/users/_general.html.erb index 2fed580b2f..1ee3c75c4c 100644 --- a/app/views/users/_general.html.erb +++ b/app/views/users/_general.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_groups.html.erb b/app/views/users/_groups.html.erb index 31c7ec6b84..dfadadb53a 100644 --- a/app/views/users/_groups.html.erb +++ b/app/views/users/_groups.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_notifications.html.erb b/app/views/users/_notifications.html.erb index ca7ebf7632..38b11fe351 100644 --- a/app/views/users/_notifications.html.erb +++ b/app/views/users/_notifications.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_preferences.html.erb b/app/views/users/_preferences.html.erb index 0c5eb8433b..25ee7a165e 100644 --- a/app/views/users/_preferences.html.erb +++ b/app/views/users/_preferences.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_reminders.html.erb b/app/views/users/_reminders.html.erb index dda35be8e8..c94d3bad0d 100644 --- a/app/views/users/_reminders.html.erb +++ b/app/views/users/_reminders.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_simple_form.html.erb b/app/views/users/_simple_form.html.erb index 378ce4fcb1..0ab4a9f98e 100644 --- a/app/views/users/_simple_form.html.erb +++ b/app/views/users/_simple_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/_toolbar.html.erb b/app/views/users/_toolbar.html.erb index 10b986b773..8e85b62e9e 100644 --- a/app/views/users/_toolbar.html.erb +++ b/app/views/users/_toolbar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/change_status_info.html.erb b/app/views/users/change_status_info.html.erb index e3147571b3..06cf264b11 100644 --- a/app/views/users/change_status_info.html.erb +++ b/app/views/users/change_status_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/deletion_info.html.erb b/app/views/users/deletion_info.html.erb index a68d3a7d72..ad8e0c71cf 100644 --- a/app/views/users/deletion_info.html.erb +++ b/app/views/users/deletion_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb index 68c9ce0a0c..9c85994a87 100644 --- a/app/views/users/edit.html.erb +++ b/app/views/users/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/index.html.erb b/app/views/users/index.html.erb index f69ac9f12e..ab27d359e0 100644 --- a/app/views/users/index.html.erb +++ b/app/views/users/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/new.html.erb b/app/views/users/new.html.erb index da39ebc7bb..63c22ecdb5 100644 --- a/app/views/users/new.html.erb +++ b/app/views/users/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index ee019a652f..51a9120147 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/_form.html.erb b/app/views/versions/_form.html.erb index 869c602576..c90bacf3ec 100644 --- a/app/views/versions/_form.html.erb +++ b/app/views/versions/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/_overview.html.erb b/app/views/versions/_overview.html.erb index f0b609ecd7..e3d5125275 100644 --- a/app/views/versions/_overview.html.erb +++ b/app/views/versions/_overview.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/create.js.erb b/app/views/versions/create.js.erb index 6638ef3a3b..40eb7bd213 100644 --- a/app/views/versions/create.js.erb +++ b/app/views/versions/create.js.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/edit.html.erb b/app/views/versions/edit.html.erb index 873587c3d2..87d444b9ca 100644 --- a/app/views/versions/edit.html.erb +++ b/app/views/versions/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/index.html.erb b/app/views/versions/index.html.erb index 82293ed905..2372a80158 100644 --- a/app/views/versions/index.html.erb +++ b/app/views/versions/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/new.html.erb b/app/views/versions/new.html.erb index b1b7f3122e..1ea56533db 100644 --- a/app/views/versions/new.html.erb +++ b/app/views/versions/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb index a338168fcc..d610b478ba 100644 --- a/app/views/versions/show.html.erb +++ b/app/views/versions/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/_content.html.erb b/app/views/wiki/_content.html.erb index 670dd91b4f..87844e55ff 100644 --- a/app/views/wiki/_content.html.erb +++ b/app/views/wiki/_content.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/_wiki_export_modal.html.erb b/app/views/wiki/_wiki_export_modal.html.erb index ff4a16668a..ac87ef9536 100644 --- a/app/views/wiki/_wiki_export_modal.html.erb +++ b/app/views/wiki/_wiki_export_modal.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/annotate.html.erb b/app/views/wiki/annotate.html.erb index cd5a976107..b10dfe98a6 100644 --- a/app/views/wiki/annotate.html.erb +++ b/app/views/wiki/annotate.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/date_index.html.erb b/app/views/wiki/date_index.html.erb index c990804fa1..88e4d39caf 100644 --- a/app/views/wiki/date_index.html.erb +++ b/app/views/wiki/date_index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/destroy.html.erb b/app/views/wiki/destroy.html.erb index 4a7dd98288..6d2ba626ad 100644 --- a/app/views/wiki/destroy.html.erb +++ b/app/views/wiki/destroy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/diff.html.erb b/app/views/wiki/diff.html.erb index f1aed96988..a6f568bcbd 100644 --- a/app/views/wiki/diff.html.erb +++ b/app/views/wiki/diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb index aed4dab3be..c31812a077 100644 --- a/app/views/wiki/edit.html.erb +++ b/app/views/wiki/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/edit_parent_page.html.erb b/app/views/wiki/edit_parent_page.html.erb index 48718cbf37..0b36066e4e 100644 --- a/app/views/wiki/edit_parent_page.html.erb +++ b/app/views/wiki/edit_parent_page.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/export_multiple.html.erb b/app/views/wiki/export_multiple.html.erb index 237ef126e0..2fa94d4cf3 100644 --- a/app/views/wiki/export_multiple.html.erb +++ b/app/views/wiki/export_multiple.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/history.html.erb b/app/views/wiki/history.html.erb index eb55b28526..a2080768ce 100644 --- a/app/views/wiki/history.html.erb +++ b/app/views/wiki/history.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/index.html.erb b/app/views/wiki/index.html.erb index df3d3dc45b..1ed6ffe9ca 100644 --- a/app/views/wiki/index.html.erb +++ b/app/views/wiki/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/new.html.erb b/app/views/wiki/new.html.erb index 53664621a1..fb1c32430c 100644 --- a/app/views/wiki/new.html.erb +++ b/app/views/wiki/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/rename.html.erb b/app/views/wiki/rename.html.erb index a67c3cbaff..28f202a415 100644 --- a/app/views/wiki/rename.html.erb +++ b/app/views/wiki/rename.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb index 4cf918d7e2..df494016b3 100644 --- a/app/views/wiki/show.html.erb +++ b/app/views/wiki/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki_menu_items/edit.html.erb b/app/views/wiki_menu_items/edit.html.erb index ba0b66d51e..da5f979308 100644 --- a/app/views/wiki_menu_items/edit.html.erb +++ b/app/views/wiki_menu_items/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/wiki_menu_items/select_main_menu_item.html.erb b/app/views/wiki_menu_items/select_main_menu_item.html.erb index 25c09657a9..ad7083e141 100644 --- a/app/views/wiki_menu_items/select_main_menu_item.html.erb +++ b/app/views/wiki_menu_items/select_main_menu_item.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_package_mailer/_work_package_details.html.erb b/app/views/work_package_mailer/_work_package_details.html.erb index 095ff17acc..c1e1215911 100644 --- a/app/views/work_package_mailer/_work_package_details.html.erb +++ b/app/views/work_package_mailer/_work_package_details.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_package_mailer/_work_package_details.text.erb b/app/views/work_package_mailer/_work_package_details.text.erb index 96ab67a3e7..1c11b424d5 100644 --- a/app/views/work_package_mailer/_work_package_details.text.erb +++ b/app/views/work_package_mailer/_work_package_details.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_package_mailer/watcher_changed.html.erb b/app/views/work_package_mailer/watcher_changed.html.erb index 533be3c6ba..564d6cfae9 100644 --- a/app/views/work_package_mailer/watcher_changed.html.erb +++ b/app/views/work_package_mailer/watcher_changed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_package_mailer/watcher_changed.text.erb b/app/views/work_package_mailer/watcher_changed.text.erb index 1ca3a840c0..51a60c1308 100644 --- a/app/views/work_package_mailer/watcher_changed.text.erb +++ b/app/views/work_package_mailer/watcher_changed.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/_sidebar.html.erb b/app/views/work_packages/_sidebar.html.erb index 44ed88d288..c547e2766b 100644 --- a/app/views/work_packages/_sidebar.html.erb +++ b/app/views/work_packages/_sidebar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/auto_completes/index.html.erb b/app/views/work_packages/auto_completes/index.html.erb index c3b792d62c..4a9eeb0aa5 100644 --- a/app/views/work_packages/auto_completes/index.html.erb +++ b/app/views/work_packages/auto_completes/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/bulk/destroy.html.erb b/app/views/work_packages/bulk/destroy.html.erb index e860f20707..92baef3573 100644 --- a/app/views/work_packages/bulk/destroy.html.erb +++ b/app/views/work_packages/bulk/destroy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/bulk/edit.html.erb b/app/views/work_packages/bulk/edit.html.erb index 8cfbe5101b..5d61fdc929 100644 --- a/app/views/work_packages/bulk/edit.html.erb +++ b/app/views/work_packages/bulk/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/index.html.erb b/app/views/work_packages/index.html.erb index 0443d6a707..e3dc08fcc1 100644 --- a/app/views/work_packages/index.html.erb +++ b/app/views/work_packages/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/moves/new.html.erb b/app/views/work_packages/moves/new.html.erb index fe83e592ac..4cb66f7232 100644 --- a/app/views/work_packages/moves/new.html.erb +++ b/app/views/work_packages/moves/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/reports/_report.html.erb b/app/views/work_packages/reports/_report.html.erb index 5cc0ad2c28..ccd6db9774 100644 --- a/app/views/work_packages/reports/_report.html.erb +++ b/app/views/work_packages/reports/_report.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/reports/_report_category.html.erb b/app/views/work_packages/reports/_report_category.html.erb index 7a600dabc6..dd35579f4d 100644 --- a/app/views/work_packages/reports/_report_category.html.erb +++ b/app/views/work_packages/reports/_report_category.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/reports/report.html.erb b/app/views/work_packages/reports/report.html.erb index 335310f6f8..91f6589b4f 100644 --- a/app/views/work_packages/reports/report.html.erb +++ b/app/views/work_packages/reports/report.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/reports/report_details.html.erb b/app/views/work_packages/reports/report_details.html.erb index 7b1597b456..3c144e740f 100644 --- a/app/views/work_packages/reports/report_details.html.erb +++ b/app/views/work_packages/reports/report_details.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/work_packages/show.html.erb b/app/views/work_packages/show.html.erb index 83c399ac43..8fafc6f365 100644 --- a/app/views/work_packages/show.html.erb +++ b/app/views/work_packages/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb index 8ca6dcdd76..8ef2eb3711 100644 --- a/app/views/workflows/_form.html.erb +++ b/app/views/workflows/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/workflows/_toolbar.html.erb b/app/views/workflows/_toolbar.html.erb index 8aa8cffe0c..bbaa6c7f10 100644 --- a/app/views/workflows/_toolbar.html.erb +++ b/app/views/workflows/_toolbar.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/workflows/copy.html.erb b/app/views/workflows/copy.html.erb index b4e62fecf8..3addcc2f84 100644 --- a/app/views/workflows/copy.html.erb +++ b/app/views/workflows/copy.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/workflows/edit.html.erb b/app/views/workflows/edit.html.erb index 184908c6a1..759a38d58a 100644 --- a/app/views/workflows/edit.html.erb +++ b/app/views/workflows/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/views/workflows/show.html.erb b/app/views/workflows/show.html.erb index bb514e1238..a2b2d146f2 100644 --- a/app/views/workflows/show.html.erb +++ b/app/views/workflows/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/announcements/scheduler_job.rb b/app/workers/announcements/scheduler_job.rb index 242932d46a..4f8220e256 100644 --- a/app/workers/announcements/scheduler_job.rb +++ b/app/workers/announcements/scheduler_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/application_job.rb b/app/workers/application_job.rb index 0651a2e65b..da7eca59c9 100644 --- a/app/workers/application_job.rb +++ b/app/workers/application_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/attachments/cleanup_uncontainered_job.rb b/app/workers/attachments/cleanup_uncontainered_job.rb index ce32e4e8bd..146a64e30b 100644 --- a/app/workers/attachments/cleanup_uncontainered_job.rb +++ b/app/workers/attachments/cleanup_uncontainered_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/attachments/finish_direct_upload_job.rb b/app/workers/attachments/finish_direct_upload_job.rb index b6474889cc..9dc947b10f 100644 --- a/app/workers/attachments/finish_direct_upload_job.rb +++ b/app/workers/attachments/finish_direct_upload_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/backup_job.rb b/app/workers/backup_job.rb index 825e95758f..e0657ffd85 100644 --- a/app/workers/backup_job.rb +++ b/app/workers/backup_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/concerns/state_machine_job.rb b/app/workers/concerns/state_machine_job.rb index 5dd984af87..b7c3d3f809 100644 --- a/app/workers/concerns/state_machine_job.rb +++ b/app/workers/concerns/state_machine_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/copy_project_job.rb b/app/workers/copy_project_job.rb index 14a8d1ae89..20005e0cba 100644 --- a/app/workers/copy_project_job.rb +++ b/app/workers/copy_project_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/cron/clear_old_sessions_job.rb b/app/workers/cron/clear_old_sessions_job.rb index 9c5a26e2ad..5b04ec776d 100644 --- a/app/workers/cron/clear_old_sessions_job.rb +++ b/app/workers/cron/clear_old_sessions_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/cron/clear_uploaded_files_job.rb b/app/workers/cron/clear_uploaded_files_job.rb index 53a3d458cf..549a2417d5 100644 --- a/app/workers/cron/clear_uploaded_files_job.rb +++ b/app/workers/cron/clear_uploaded_files_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/cron/cron_job.rb b/app/workers/cron/cron_job.rb index 9e3dce5284..24ad2cf7b6 100644 --- a/app/workers/cron/cron_job.rb +++ b/app/workers/cron/cron_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/exports/cleanup_outdated_job.rb b/app/workers/exports/cleanup_outdated_job.rb index dc9f3d9fce..3ce161944b 100644 --- a/app/workers/exports/cleanup_outdated_job.rb +++ b/app/workers/exports/cleanup_outdated_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/extract_fulltext_job.rb b/app/workers/extract_fulltext_job.rb index 342ce3c87b..a4576e1c52 100644 --- a/app/workers/extract_fulltext_job.rb +++ b/app/workers/extract_fulltext_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/journals/completed_job.rb b/app/workers/journals/completed_job.rb index 917d5af058..77a09e453c 100644 --- a/app/workers/journals/completed_job.rb +++ b/app/workers/journals/completed_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/deliver_job.rb b/app/workers/mails/deliver_job.rb index 6ae1170827..9f3566705e 100644 --- a/app/workers/mails/deliver_job.rb +++ b/app/workers/mails/deliver_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/invitation_job.rb b/app/workers/mails/invitation_job.rb index d13da3b63a..ba665c0765 100644 --- a/app/workers/mails/invitation_job.rb +++ b/app/workers/mails/invitation_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/mailer_job.rb b/app/workers/mails/mailer_job.rb index 4a1cfa510a..cc6b5b5f98 100644 --- a/app/workers/mails/mailer_job.rb +++ b/app/workers/mails/mailer_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/member_created_job.rb b/app/workers/mails/member_created_job.rb index b418955435..6b8ffefcba 100644 --- a/app/workers/mails/member_created_job.rb +++ b/app/workers/mails/member_created_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/member_job.rb b/app/workers/mails/member_job.rb index fc25227e8b..8cb7b18feb 100644 --- a/app/workers/mails/member_job.rb +++ b/app/workers/mails/member_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/member_updated_job.rb b/app/workers/mails/member_updated_job.rb index 888b721da5..05f8d7d209 100644 --- a/app/workers/mails/member_updated_job.rb +++ b/app/workers/mails/member_updated_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/reminder_job.rb b/app/workers/mails/reminder_job.rb index ed3472a544..7fc336f541 100644 --- a/app/workers/mails/reminder_job.rb +++ b/app/workers/mails/reminder_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/watcher_added_job.rb b/app/workers/mails/watcher_added_job.rb index 68b7a2c7c1..2c18ce5d7f 100644 --- a/app/workers/mails/watcher_added_job.rb +++ b/app/workers/mails/watcher_added_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/watcher_job.rb b/app/workers/mails/watcher_job.rb index 242fb01876..01d03f7714 100644 --- a/app/workers/mails/watcher_job.rb +++ b/app/workers/mails/watcher_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/watcher_removed_job.rb b/app/workers/mails/watcher_removed_job.rb index af7e738b9f..d354153242 100644 --- a/app/workers/mails/watcher_removed_job.rb +++ b/app/workers/mails/watcher_removed_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/mails/with_sender.rb b/app/workers/mails/with_sender.rb index 179d5b712e..a11df9c126 100644 --- a/app/workers/mails/with_sender.rb +++ b/app/workers/mails/with_sender.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/notifications/cleanup_job.rb b/app/workers/notifications/cleanup_job.rb index 097390c734..44786f997d 100644 --- a/app/workers/notifications/cleanup_job.rb +++ b/app/workers/notifications/cleanup_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/notifications/group_member_altered_job.rb b/app/workers/notifications/group_member_altered_job.rb index f57903a671..2dc873e72d 100644 --- a/app/workers/notifications/group_member_altered_job.rb +++ b/app/workers/notifications/group_member_altered_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/notifications/schedule_reminder_mails_job.rb b/app/workers/notifications/schedule_reminder_mails_job.rb index bc0f0e4530..7c3b190d3c 100644 --- a/app/workers/notifications/schedule_reminder_mails_job.rb +++ b/app/workers/notifications/schedule_reminder_mails_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/notifications/with_marked_notifications.rb b/app/workers/notifications/with_marked_notifications.rb index dfa6eec51f..f9cfd534a3 100644 --- a/app/workers/notifications/with_marked_notifications.rb +++ b/app/workers/notifications/with_marked_notifications.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/notifications/workflow_job.rb b/app/workers/notifications/workflow_job.rb index ff13f869e6..329497d222 100644 --- a/app/workers/notifications/workflow_job.rb +++ b/app/workers/notifications/workflow_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/oauth/cleanup_job.rb b/app/workers/oauth/cleanup_job.rb index ae17cfe02c..489a1327d3 100644 --- a/app/workers/oauth/cleanup_job.rb +++ b/app/workers/oauth/cleanup_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/principals/delete_job.rb b/app/workers/principals/delete_job.rb index 85e107c694..0be6eefebe 100644 --- a/app/workers/principals/delete_job.rb +++ b/app/workers/principals/delete_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/projects/delete_project_job.rb b/app/workers/projects/delete_project_job.rb index f1d56af2ed..41ffe35124 100644 --- a/app/workers/projects/delete_project_job.rb +++ b/app/workers/projects/delete_project_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/projects/reorder_children_job.rb b/app/workers/projects/reorder_children_job.rb index e19397bdc5..cfb04fbcae 100644 --- a/app/workers/projects/reorder_children_job.rb +++ b/app/workers/projects/reorder_children_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/rake_job.rb b/app/workers/rake_job.rb index 7e18e8a657..d157fc1de3 100644 --- a/app/workers/rake_job.rb +++ b/app/workers/rake_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/create_local_repository_job.rb b/app/workers/scm/create_local_repository_job.rb index 3fee641752..0ca0f1148f 100644 --- a/app/workers/scm/create_local_repository_job.rb +++ b/app/workers/scm/create_local_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/create_remote_repository_job.rb b/app/workers/scm/create_remote_repository_job.rb index bd4ef44049..8af45bb2c5 100644 --- a/app/workers/scm/create_remote_repository_job.rb +++ b/app/workers/scm/create_remote_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/delete_local_repository_job.rb b/app/workers/scm/delete_local_repository_job.rb index 903b3c76fc..4dcb6ef546 100644 --- a/app/workers/scm/delete_local_repository_job.rb +++ b/app/workers/scm/delete_local_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/delete_remote_repository_job.rb b/app/workers/scm/delete_remote_repository_job.rb index fd4597d201..268da92a15 100644 --- a/app/workers/scm/delete_remote_repository_job.rb +++ b/app/workers/scm/delete_remote_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/relocate_repository_job.rb b/app/workers/scm/relocate_repository_job.rb index 3f7bd03832..00e84f3790 100644 --- a/app/workers/scm/relocate_repository_job.rb +++ b/app/workers/scm/relocate_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/remote_repository_job.rb b/app/workers/scm/remote_repository_job.rb index 938f7f5b66..d4dba08925 100644 --- a/app/workers/scm/remote_repository_job.rb +++ b/app/workers/scm/remote_repository_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/scm/storage_updater_job.rb b/app/workers/scm/storage_updater_job.rb index 6d108a144f..aa86fe4486 100644 --- a/app/workers/scm/storage_updater_job.rb +++ b/app/workers/scm/storage_updater_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/app/workers/user_job.rb b/app/workers/user_job.rb index 747cbf9477..0e3eec972e 100644 --- a/app/workers/user_job.rb +++ b/app/workers/user_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config.ru b/config.ru index b245154bb5..4031e77fd4 100644 --- a/config.ru +++ b/config.ru @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/additional_environment.rb.example b/config/additional_environment.rb.example index 9ba3dfc8fa..151982db82 100644 --- a/config/additional_environment.rb.example +++ b/config/additional_environment.rb.example @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/application.rb b/config/application.rb index 599eff334f..f2f7bb751b 100644 --- a/config/application.rb +++ b/config/application.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/boot.rb b/config/boot.rb index cf39b6fb28..6fe423d738 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/configuration.yml.example b/config/configuration.yml.example index 0c9a3d58c7..45916c7c34 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/constants/api_patch_registry.rb b/config/constants/api_patch_registry.rb index 795a8a2ab7..09ea8423a6 100644 --- a/config/constants/api_patch_registry.rb +++ b/config/constants/api_patch_registry.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/constants/ar_to_api_conversions.rb b/config/constants/ar_to_api_conversions.rb index ffac710a8d..f49d9a58b8 100644 --- a/config/constants/ar_to_api_conversions.rb +++ b/config/constants/ar_to_api_conversions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/constants/open_project/activity.rb b/config/constants/open_project/activity.rb index 65a226e9e7..20c79fd747 100644 --- a/config/constants/open_project/activity.rb +++ b/config/constants/open_project/activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/constants/project_activity.rb b/config/constants/project_activity.rb index 8dd4fceb3c..c0d01f5529 100644 --- a/config/constants/project_activity.rb +++ b/config/constants/project_activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/constants/views.rb b/config/constants/views.rb index b8b3e31ee8..df8388fd8a 100644 --- a/config/constants/views.rb +++ b/config/constants/views.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/database.yml.example b/config/database.yml.example index 9ee784c0e6..7d19713bc4 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environment.rb b/config/environment.rb index 43addcd2e6..fc0dda3b9e 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environments/demo.rb b/config/environments/demo.rb index 9ed41bb038..08c53f95af 100644 --- a/config/environments/demo.rb +++ b/config/environments/demo.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environments/development.rb b/config/environments/development.rb index 2915a4726a..212a23da3f 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environments/production.rb b/config/environments/production.rb index 2e6ee256ca..01adb3ff67 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environments/test.rb b/config/environments/test.rb index 695846896a..7f90a5ae1e 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/environments/test_pgsql.rb b/config/environments/test_pgsql.rb index 9baec128f5..d75f9cef45 100644 --- a/config/environments/test_pgsql.rb +++ b/config/environments/test_pgsql.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/00-core_plugins.rb b/config/initializers/00-core_plugins.rb index cec35037ec..9f533157bd 100644 --- a/config/initializers/00-core_plugins.rb +++ b/config/initializers/00-core_plugins.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/03-db_check.rb b/config/initializers/03-db_check.rb index 7064520563..3106b37391 100644 --- a/config/initializers/03-db_check.rb +++ b/config/initializers/03-db_check.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/05-null_db_fallback.rb b/config/initializers/05-null_db_fallback.rb index c061b5d4cd..f39f9f3124 100644 --- a/config/initializers/05-null_db_fallback.rb +++ b/config/initializers/05-null_db_fallback.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/06-pending_migrations_check.rb b/config/initializers/06-pending_migrations_check.rb index e98a0f1d8a..42097ba199 100644 --- a/config/initializers/06-pending_migrations_check.rb +++ b/config/initializers/06-pending_migrations_check.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/10-load_patches.rb b/config/initializers/10-load_patches.rb index e6e50cfeab..955bd266b8 100644 --- a/config/initializers/10-load_patches.rb +++ b/config/initializers/10-load_patches.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/30-open_project_loading.rb b/config/initializers/30-open_project_loading.rb index 9e826eb206..8b96198169 100644 --- a/config/initializers/30-open_project_loading.rb +++ b/config/initializers/30-open_project_loading.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/activity.rb b/config/initializers/activity.rb index b3ea1cbf11..3b9c0abcb8 100644 --- a/config/initializers/activity.rb +++ b/config/initializers/activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/airbrake.rb b/config/initializers/airbrake.rb index 0446530806..c960f9a7dc 100644 --- a/config/initializers/airbrake.rb +++ b/config/initializers/airbrake.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb index 32bebe4202..76eca0bc03 100644 --- a/config/initializers/backtrace_silencers.rb +++ b/config/initializers/backtrace_silencers.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/bcrypt.rb b/config/initializers/bcrypt.rb index c1e3b1f88e..704b9b8dd5 100644 --- a/config/initializers/bcrypt.rb +++ b/config/initializers/bcrypt.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/bullet.rb b/config/initializers/bullet.rb index 212eb4e0a1..902438cba2 100644 --- a/config/initializers/bullet.rb +++ b/config/initializers/bullet.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/carrierwave.rb b/config/initializers/carrierwave.rb index 90e243e293..4150c990ad 100644 --- a/config/initializers/carrierwave.rb +++ b/config/initializers/carrierwave.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/custom_field_format.rb b/config/initializers/custom_field_format.rb index 42c2fb9532..9262cc70c4 100644 --- a/config/initializers/custom_field_format.rb +++ b/config/initializers/custom_field_format.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/delayed_job_config.rb b/config/initializers/delayed_job_config.rb index 0ee94d7947..48a70e556a 100644 --- a/config/initializers/delayed_job_config.rb +++ b/config/initializers/delayed_job_config.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/enforce_isolation_level.rb b/config/initializers/enforce_isolation_level.rb index 031b257f29..319e2539db 100644 --- a/config/initializers/enforce_isolation_level.rb +++ b/config/initializers/enforce_isolation_level.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb index 17ae3386c1..b400549b82 100644 --- a/config/initializers/filter_parameter_logging.rb +++ b/config/initializers/filter_parameter_logging.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/grape.rb b/config/initializers/grape.rb index 0633a22556..3c86ab4a63 100644 --- a/config/initializers/grape.rb +++ b/config/initializers/grape.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/homescreen.rb b/config/initializers/homescreen.rb index 6d8d60e150..7000688e6e 100644 --- a/config/initializers/homescreen.rb +++ b/config/initializers/homescreen.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb index 50f5825f96..69c6c4ce9e 100644 --- a/config/initializers/inflections.rb +++ b/config/initializers/inflections.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/livingstyleguide_patches.rb b/config/initializers/livingstyleguide_patches.rb index f457c82fe9..c1da9b2de0 100644 --- a/config/initializers/livingstyleguide_patches.rb +++ b/config/initializers/livingstyleguide_patches.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/menus.rb b/config/initializers/menus.rb index 3dc815082a..81c5e4a41d 100644 --- a/config/initializers/menus.rb +++ b/config/initializers/menus.rb @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb index 964fce5cc6..ac5631c9c5 100644 --- a/config/initializers/mime_types.rb +++ b/config/initializers/mime_types.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/module_handler.rb b/config/initializers/module_handler.rb index ce20cde7cb..624f0e62fd 100644 --- a/config/initializers/module_handler.rb +++ b/config/initializers/module_handler.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/omniauth.rb b/config/initializers/omniauth.rb index 138bde0922..d91cff0512 100644 --- a/config/initializers/omniauth.rb +++ b/config/initializers/omniauth.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/permissions.rb b/config/initializers/permissions.rb index c63509b933..c28224fbbe 100644 --- a/config/initializers/permissions.rb +++ b/config/initializers/permissions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/plaintext.rb b/config/initializers/plaintext.rb index fdb410f955..251270d789 100644 --- a/config/initializers/plaintext.rb +++ b/config/initializers/plaintext.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/rack-attack.rb b/config/initializers/rack-attack.rb index a3bb426ae3..74ffefd437 100644 --- a/config/initializers/rack-attack.rb +++ b/config/initializers/rack-attack.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/rack-cors.rb b/config/initializers/rack-cors.rb index de1fc925e1..d6d4215066 100644 --- a/config/initializers/rack-cors.rb +++ b/config/initializers/rack-cors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/rails_footnotes.rb b/config/initializers/rails_footnotes.rb index fc259f37de..0c10400a13 100644 --- a/config/initializers/rails_footnotes.rb +++ b/config/initializers/rails_footnotes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/register_mail_interceptors.rb b/config/initializers/register_mail_interceptors.rb index 609eb9302e..e825d63d41 100644 --- a/config/initializers/register_mail_interceptors.rb +++ b/config/initializers/register_mail_interceptors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/register_renderer.rb b/config/initializers/register_renderer.rb index ae3828fa01..ff1003a85a 100644 --- a/config/initializers/register_renderer.rb +++ b/config/initializers/register_renderer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/register_views.rb b/config/initializers/register_views.rb index 78ec3178fc..13eb984915 100644 --- a/config/initializers/register_views.rb +++ b/config/initializers/register_views.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/search.rb b/config/initializers/search.rb index 12b4c1f909..ff392e871a 100644 --- a/config/initializers/search.rb +++ b/config/initializers/search.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index e84661b2cf..4801cbb87c 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/subscribe_listeners.rb b/config/initializers/subscribe_listeners.rb index 9dc28a7c78..b5c3e1a5ee 100644 --- a/config/initializers/subscribe_listeners.rb +++ b/config/initializers/subscribe_listeners.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/time_with_zone_as_json.rb b/config/initializers/time_with_zone_as_json.rb index c739c043d9..dcb4201e2b 100644 --- a/config/initializers/time_with_zone_as_json.rb +++ b/config/initializers/time_with_zone_as_json.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/typed_dag.rb b/config/initializers/typed_dag.rb index c65a871b88..b433f73a3f 100644 --- a/config/initializers/typed_dag.rb +++ b/config/initializers/typed_dag.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb index ecdbebb071..6d2199d63f 100644 --- a/config/initializers/wrap_parameters.rb +++ b/config/initializers/wrap_parameters.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/locales/crowdin/af.yml b/config/locales/crowdin/af.yml index 90d1c68df6..1e5a46fef7 100644 --- a/config/locales/crowdin/af.yml +++ b/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ar.yml b/config/locales/crowdin/ar.yml index 1feb6761a8..bfb5658a05 100644 --- a/config/locales/crowdin/ar.yml +++ b/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/az.yml b/config/locales/crowdin/az.yml index b0726a2a25..d06fa56f94 100644 --- a/config/locales/crowdin/az.yml +++ b/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/bg.yml b/config/locales/crowdin/bg.yml index 4e04c6354a..731efc040a 100644 --- a/config/locales/crowdin/bg.yml +++ b/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ca.yml b/config/locales/crowdin/ca.yml index f91768c5ab..484c2d5c2e 100644 --- a/config/locales/crowdin/ca.yml +++ b/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/cs.yml b/config/locales/crowdin/cs.yml index 597afe9c26..cb5c38f97b 100644 --- a/config/locales/crowdin/cs.yml +++ b/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/da.yml b/config/locales/crowdin/da.yml index 7a83df9d86..2d6d7044c4 100644 --- a/config/locales/crowdin/da.yml +++ b/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/de.yml b/config/locales/crowdin/de.yml index bc5888fcf0..9a35f1a733 100644 --- a/config/locales/crowdin/de.yml +++ b/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/el.yml b/config/locales/crowdin/el.yml index 6777030919..4f3e490a29 100644 --- a/config/locales/crowdin/el.yml +++ b/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/eo.yml b/config/locales/crowdin/eo.yml index cf64af99f5..e372902ef7 100644 --- a/config/locales/crowdin/eo.yml +++ b/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/es.yml b/config/locales/crowdin/es.yml index decde70907..77a5f6d138 100644 --- a/config/locales/crowdin/es.yml +++ b/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/et.yml b/config/locales/crowdin/et.yml index f431b2d28d..3553f63efd 100644 --- a/config/locales/crowdin/et.yml +++ b/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fa.yml b/config/locales/crowdin/fa.yml index eeaead9fd6..f023264dde 100644 --- a/config/locales/crowdin/fa.yml +++ b/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fi.yml b/config/locales/crowdin/fi.yml index 903e5fe267..69e86ed4c4 100644 --- a/config/locales/crowdin/fi.yml +++ b/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fil.yml b/config/locales/crowdin/fil.yml index 6656b6928c..a04b5b5233 100644 --- a/config/locales/crowdin/fil.yml +++ b/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fr.yml b/config/locales/crowdin/fr.yml index 3965685753..9cfc7d8e1c 100644 --- a/config/locales/crowdin/fr.yml +++ b/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/he.yml b/config/locales/crowdin/he.yml index c75bdbc910..77b970a8b4 100644 --- a/config/locales/crowdin/he.yml +++ b/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/hi.yml b/config/locales/crowdin/hi.yml index 167d426620..ae4755b0f9 100644 --- a/config/locales/crowdin/hi.yml +++ b/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/hr.yml b/config/locales/crowdin/hr.yml index 02793dd7bd..7b1c9d445a 100644 --- a/config/locales/crowdin/hr.yml +++ b/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/hu.yml b/config/locales/crowdin/hu.yml index 86141a8cd5..c891bc54ef 100644 --- a/config/locales/crowdin/hu.yml +++ b/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/id.yml b/config/locales/crowdin/id.yml index 11029b37ff..be3f6715f1 100644 --- a/config/locales/crowdin/id.yml +++ b/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/it.yml b/config/locales/crowdin/it.yml index f918b4d5a6..fbf058a8c7 100644 --- a/config/locales/crowdin/it.yml +++ b/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ja.yml b/config/locales/crowdin/ja.yml index f1e3f802e6..296c990d06 100644 --- a/config/locales/crowdin/ja.yml +++ b/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-af.yml b/config/locales/crowdin/js-af.yml index 2d20f91652..988047a9dc 100644 --- a/config/locales/crowdin/js-af.yml +++ b/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ar.yml b/config/locales/crowdin/js-ar.yml index b00d8ece32..f9f23f8798 100644 --- a/config/locales/crowdin/js-ar.yml +++ b/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-az.yml b/config/locales/crowdin/js-az.yml index 5fc53fa755..2acf166def 100644 --- a/config/locales/crowdin/js-az.yml +++ b/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-bg.yml b/config/locales/crowdin/js-bg.yml index a8930aa50f..c13e72b87c 100644 --- a/config/locales/crowdin/js-bg.yml +++ b/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ca.yml b/config/locales/crowdin/js-ca.yml index 1ce4442b7a..12b38b7ac9 100644 --- a/config/locales/crowdin/js-ca.yml +++ b/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-cs.yml b/config/locales/crowdin/js-cs.yml index b4dfdfac1c..6554b489ab 100644 --- a/config/locales/crowdin/js-cs.yml +++ b/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-da.yml b/config/locales/crowdin/js-da.yml index 86fd415336..a66d190072 100644 --- a/config/locales/crowdin/js-da.yml +++ b/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-de.yml b/config/locales/crowdin/js-de.yml index a7053f65cb..4f9ace7998 100644 --- a/config/locales/crowdin/js-de.yml +++ b/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-el.yml b/config/locales/crowdin/js-el.yml index f6aef98583..ae318bbde7 100644 --- a/config/locales/crowdin/js-el.yml +++ b/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-eo.yml b/config/locales/crowdin/js-eo.yml index a82981b5ec..3688f49ec3 100644 --- a/config/locales/crowdin/js-eo.yml +++ b/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-es.yml b/config/locales/crowdin/js-es.yml index 2712c32dd6..146fb113f5 100644 --- a/config/locales/crowdin/js-es.yml +++ b/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-et.yml b/config/locales/crowdin/js-et.yml index df1d5583ec..dbc2e8e389 100644 --- a/config/locales/crowdin/js-et.yml +++ b/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-fa.yml b/config/locales/crowdin/js-fa.yml index afa164d1ec..e46b07ab47 100644 --- a/config/locales/crowdin/js-fa.yml +++ b/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-fi.yml b/config/locales/crowdin/js-fi.yml index cacd47de74..82689a7bb9 100644 --- a/config/locales/crowdin/js-fi.yml +++ b/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-fil.yml b/config/locales/crowdin/js-fil.yml index db0c7d7d0b..46efff5d8f 100644 --- a/config/locales/crowdin/js-fil.yml +++ b/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-fr.yml b/config/locales/crowdin/js-fr.yml index 75bb6ffed5..0d415220f6 100644 --- a/config/locales/crowdin/js-fr.yml +++ b/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-he.yml b/config/locales/crowdin/js-he.yml index ab109a60bf..5407293086 100644 --- a/config/locales/crowdin/js-he.yml +++ b/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-hi.yml b/config/locales/crowdin/js-hi.yml index a97de2b29a..4bd7419eb2 100644 --- a/config/locales/crowdin/js-hi.yml +++ b/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-hr.yml b/config/locales/crowdin/js-hr.yml index d2527ed52e..afc126ce08 100644 --- a/config/locales/crowdin/js-hr.yml +++ b/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-hu.yml b/config/locales/crowdin/js-hu.yml index 43e5bcf70b..8749a7da5b 100644 --- a/config/locales/crowdin/js-hu.yml +++ b/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-id.yml b/config/locales/crowdin/js-id.yml index 2896f86bf3..ea291b6314 100644 --- a/config/locales/crowdin/js-id.yml +++ b/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-it.yml b/config/locales/crowdin/js-it.yml index 6fe7c4e05a..c405014775 100644 --- a/config/locales/crowdin/js-it.yml +++ b/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ja.yml b/config/locales/crowdin/js-ja.yml index a2c1b3f2cc..7e2001719b 100644 --- a/config/locales/crowdin/js-ja.yml +++ b/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ko.yml b/config/locales/crowdin/js-ko.yml index b4de1e016f..f6fdedb959 100644 --- a/config/locales/crowdin/js-ko.yml +++ b/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-lol.yml b/config/locales/crowdin/js-lol.yml index 3b22135e3d..9f8577cc08 100644 --- a/config/locales/crowdin/js-lol.yml +++ b/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-lt.yml b/config/locales/crowdin/js-lt.yml index 14a6d22ace..c1c52a4a2f 100644 --- a/config/locales/crowdin/js-lt.yml +++ b/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-lv.yml b/config/locales/crowdin/js-lv.yml index c1178beec9..240605e1f0 100644 --- a/config/locales/crowdin/js-lv.yml +++ b/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ne.yml b/config/locales/crowdin/js-ne.yml index 64b2a0937c..5d1cfedbb0 100644 --- a/config/locales/crowdin/js-ne.yml +++ b/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-nl.yml b/config/locales/crowdin/js-nl.yml index a997d8b471..277a5a7a8d 100644 --- a/config/locales/crowdin/js-nl.yml +++ b/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-no.yml b/config/locales/crowdin/js-no.yml index 15c4f0e5ab..3ad71ccfbc 100644 --- a/config/locales/crowdin/js-no.yml +++ b/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-pl.yml b/config/locales/crowdin/js-pl.yml index cea1115cfc..71879f64e5 100644 --- a/config/locales/crowdin/js-pl.yml +++ b/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-pt.yml b/config/locales/crowdin/js-pt.yml index 197be68700..b5be13f000 100644 --- a/config/locales/crowdin/js-pt.yml +++ b/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ro.yml b/config/locales/crowdin/js-ro.yml index f62ba34b92..bcdb450edf 100644 --- a/config/locales/crowdin/js-ro.yml +++ b/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ru.yml b/config/locales/crowdin/js-ru.yml index 53065f674b..a742b2a940 100644 --- a/config/locales/crowdin/js-ru.yml +++ b/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-rw.yml b/config/locales/crowdin/js-rw.yml index 1a506eb334..72ad58ecbd 100644 --- a/config/locales/crowdin/js-rw.yml +++ b/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-si.yml b/config/locales/crowdin/js-si.yml index 578a53047b..1675e40c27 100644 --- a/config/locales/crowdin/js-si.yml +++ b/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-sk.yml b/config/locales/crowdin/js-sk.yml index 204249b6f7..e42b898648 100644 --- a/config/locales/crowdin/js-sk.yml +++ b/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-sl.yml b/config/locales/crowdin/js-sl.yml index a6b30245cc..08f5ece964 100644 --- a/config/locales/crowdin/js-sl.yml +++ b/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-sv.yml b/config/locales/crowdin/js-sv.yml index d399301709..269ff49967 100644 --- a/config/locales/crowdin/js-sv.yml +++ b/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-th.yml b/config/locales/crowdin/js-th.yml index 33669220ca..9b4ba7cd78 100644 --- a/config/locales/crowdin/js-th.yml +++ b/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-tr.yml b/config/locales/crowdin/js-tr.yml index c1f392d805..9d24d71f3d 100644 --- a/config/locales/crowdin/js-tr.yml +++ b/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-uk.yml b/config/locales/crowdin/js-uk.yml index 22627f28cb..837a504dbb 100644 --- a/config/locales/crowdin/js-uk.yml +++ b/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-vi.yml b/config/locales/crowdin/js-vi.yml index ddeedfecd8..76da7ebfa1 100644 --- a/config/locales/crowdin/js-vi.yml +++ b/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-zh-CN.yml b/config/locales/crowdin/js-zh-CN.yml index 68cbe56988..a0654d0027 100644 --- a/config/locales/crowdin/js-zh-CN.yml +++ b/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-zh-TW.yml b/config/locales/crowdin/js-zh-TW.yml index f0241555c7..5c6142556b 100644 --- a/config/locales/crowdin/js-zh-TW.yml +++ b/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ko.yml b/config/locales/crowdin/ko.yml index dde46e4c23..188c04ea5e 100644 --- a/config/locales/crowdin/ko.yml +++ b/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/lol.yml b/config/locales/crowdin/lol.yml index e034ed1b9a..1dbdb87090 100644 --- a/config/locales/crowdin/lol.yml +++ b/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/lt.yml b/config/locales/crowdin/lt.yml index 18f593c438..4f0a5f0f0c 100644 --- a/config/locales/crowdin/lt.yml +++ b/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/lv.yml b/config/locales/crowdin/lv.yml index 1ef3f156ae..fbbf0c692b 100644 --- a/config/locales/crowdin/lv.yml +++ b/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ne.yml b/config/locales/crowdin/ne.yml index d28fdce19d..f1036fc292 100644 --- a/config/locales/crowdin/ne.yml +++ b/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/nl.yml b/config/locales/crowdin/nl.yml index 99d69df83b..41be6048da 100644 --- a/config/locales/crowdin/nl.yml +++ b/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/no.yml b/config/locales/crowdin/no.yml index 324a43fb7f..d96114218e 100644 --- a/config/locales/crowdin/no.yml +++ b/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/pl.yml b/config/locales/crowdin/pl.yml index e5be123583..5e1326d265 100644 --- a/config/locales/crowdin/pl.yml +++ b/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/pt.yml b/config/locales/crowdin/pt.yml index e93e7f55cb..dada83b236 100644 --- a/config/locales/crowdin/pt.yml +++ b/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ro.yml b/config/locales/crowdin/ro.yml index 63a4f0df89..d008c08d4d 100644 --- a/config/locales/crowdin/ro.yml +++ b/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ru.yml b/config/locales/crowdin/ru.yml index d55b0b52f9..e4e40da40c 100644 --- a/config/locales/crowdin/ru.yml +++ b/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/rw.yml b/config/locales/crowdin/rw.yml index 96631c26e0..c6f13bcf06 100644 --- a/config/locales/crowdin/rw.yml +++ b/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/si.yml b/config/locales/crowdin/si.yml index 9f8d018c53..1d439ebf29 100644 --- a/config/locales/crowdin/si.yml +++ b/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/sk.yml b/config/locales/crowdin/sk.yml index 3d03a13917..41746b15f8 100644 --- a/config/locales/crowdin/sk.yml +++ b/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/sl.yml b/config/locales/crowdin/sl.yml index ed5b21629f..35218c4cd2 100644 --- a/config/locales/crowdin/sl.yml +++ b/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/sv.yml b/config/locales/crowdin/sv.yml index aa70f2ecd0..28398d2006 100644 --- a/config/locales/crowdin/sv.yml +++ b/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/th.yml b/config/locales/crowdin/th.yml index fe755baac2..8f1f8b89dd 100644 --- a/config/locales/crowdin/th.yml +++ b/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/tr.yml b/config/locales/crowdin/tr.yml index ec30402a6c..c790b015ef 100644 --- a/config/locales/crowdin/tr.yml +++ b/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/uk.yml b/config/locales/crowdin/uk.yml index cb5dbc2f8b..5c33469eb9 100644 --- a/config/locales/crowdin/uk.yml +++ b/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/vi.yml b/config/locales/crowdin/vi.yml index 25ae607374..57f24a015b 100644 --- a/config/locales/crowdin/vi.yml +++ b/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/zh-CN.yml b/config/locales/crowdin/zh-CN.yml index 26e8371419..15ac7624d7 100644 --- a/config/locales/crowdin/zh-CN.yml +++ b/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/zh-TW.yml b/config/locales/crowdin/zh-TW.yml index 79f381189c..aafb7bea5e 100644 --- a/config/locales/crowdin/zh-TW.yml +++ b/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/en.seeders.standard.yml b/config/locales/en.seeders.standard.yml index bc77f1028e..6ec584bde7 100644 --- a/config/locales/en.seeders.standard.yml +++ b/config/locales/en.seeders.standard.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/locales/en.seeders.standard.yml.example b/config/locales/en.seeders.standard.yml.example index b5bbff2699..9e23b63484 100644 --- a/config/locales/en.seeders.standard.yml.example +++ b/config/locales/en.seeders.standard.yml.example @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/locales/en.yml b/config/locales/en.yml index a63917aebe..f5d8c4aa6e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/locales/js-en.yml b/config/locales/js-en.yml index 9e6a3bb630..2c7fa8998a 100644 --- a/config/locales/js-en.yml +++ b/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/routes.rb b/config/routes.rb index e7675eb845..decb9e6dd3 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/secrets.yml b/config/secrets.yml index 21ae5ee4da..46354b769b 100644 --- a/config/secrets.yml +++ b/config/secrets.yml @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/config/settings.yml b/config/settings.yml index f47884549a..8af73f083d 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/10000000000000_to_v710_aggregated_migrations.rb b/db/migrate/10000000000000_to_v710_aggregated_migrations.rb index 9b7b016bd1..be414cc980 100644 --- a/db/migrate/10000000000000_to_v710_aggregated_migrations.rb +++ b/db/migrate/10000000000000_to_v710_aggregated_migrations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20100528100562_aggregated_global_roles_migrations.rb b/db/migrate/20100528100562_aggregated_global_roles_migrations.rb index b8a36df2ba..f510e95f80 100644 --- a/db/migrate/20100528100562_aggregated_global_roles_migrations.rb +++ b/db/migrate/20100528100562_aggregated_global_roles_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20170829095701_generate_wp_closure.rb b/db/migrate/20170829095701_generate_wp_closure.rb index a215dabfc8..fcf8ed50f1 100644 --- a/db/migrate/20170829095701_generate_wp_closure.rb +++ b/db/migrate/20170829095701_generate_wp_closure.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20171129145631_add_fulltext_to_attachments.rb b/db/migrate/20171129145631_add_fulltext_to_attachments.rb index 96f2fc45ce..1533db3ae8 100644 --- a/db/migrate/20171129145631_add_fulltext_to_attachments.rb +++ b/db/migrate/20171129145631_add_fulltext_to_attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180105130053_rebuild_dag.rb b/db/migrate/20180105130053_rebuild_dag.rb index dd9933a5d2..c411162362 100644 --- a/db/migrate/20180105130053_rebuild_dag.rb +++ b/db/migrate/20180105130053_rebuild_dag.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180108132929_vacuum_relations.rb b/db/migrate/20180108132929_vacuum_relations.rb index b1a3adbc5d..ad9cb933d3 100644 --- a/db/migrate/20180108132929_vacuum_relations.rb +++ b/db/migrate/20180108132929_vacuum_relations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180116065518_add_hierarchy_paths.rb b/db/migrate/20180116065518_add_hierarchy_paths.rb index 536cd8c64a..80865c3acc 100644 --- a/db/migrate/20180116065518_add_hierarchy_paths.rb +++ b/db/migrate/20180116065518_add_hierarchy_paths.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180117065255_remove_timelines_and_reportings.rb b/db/migrate/20180117065255_remove_timelines_and_reportings.rb index da2ce215d3..18454d6b0c 100644 --- a/db/migrate/20180117065255_remove_timelines_and_reportings.rb +++ b/db/migrate/20180117065255_remove_timelines_and_reportings.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180122135443_add_tsv_columns_to_attachments.rb b/db/migrate/20180122135443_add_tsv_columns_to_attachments.rb index a05d045c15..96be87b2df 100644 --- a/db/migrate/20180122135443_add_tsv_columns_to_attachments.rb +++ b/db/migrate/20180122135443_add_tsv_columns_to_attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180305130811_remove_wiki_content_versions.rb b/db/migrate/20180305130811_remove_wiki_content_versions.rb index 7944522fd3..7372826bad 100644 --- a/db/migrate/20180305130811_remove_wiki_content_versions.rb +++ b/db/migrate/20180305130811_remove_wiki_content_versions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180419061910_timestamp_for_caching.rb b/db/migrate/20180419061910_timestamp_for_caching.rb index 7ce3674490..d1429c4e25 100644 --- a/db/migrate/20180419061910_timestamp_for_caching.rb +++ b/db/migrate/20180419061910_timestamp_for_caching.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180524084654_remove_non_null_container_on_attachments.rb b/db/migrate/20180524084654_remove_non_null_container_on_attachments.rb index 2346c136d9..24cd1269de 100644 --- a/db/migrate/20180524084654_remove_non_null_container_on_attachments.rb +++ b/db/migrate/20180524084654_remove_non_null_container_on_attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20180706150714_convert_to_markdown.rb b/db/migrate/20180706150714_convert_to_markdown.rb index d29200dda7..c85aa52a2f 100644 --- a/db/migrate/20180706150714_convert_to_markdown.rb +++ b/db/migrate/20180706150714_convert_to_markdown.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20201005120137_ensure_integer_for_relations_foreign_keys.rb b/db/migrate/20201005120137_ensure_integer_for_relations_foreign_keys.rb index 7c91027f9a..b3d3fbf848 100644 --- a/db/migrate/20201005120137_ensure_integer_for_relations_foreign_keys.rb +++ b/db/migrate/20201005120137_ensure_integer_for_relations_foreign_keys.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20201125121949_remove_renamed_cron_job.rb b/db/migrate/20201125121949_remove_renamed_cron_job.rb index 0a2a7e34dc..7d63d9ac38 100644 --- a/db/migrate/20201125121949_remove_renamed_cron_job.rb +++ b/db/migrate/20201125121949_remove_renamed_cron_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/20211005080304_tzinfo_time_zones.rb b/db/migrate/20211005080304_tzinfo_time_zones.rb index b0e3b46d08..e318606642 100644 --- a/db/migrate/20211005080304_tzinfo_time_zones.rb +++ b/db/migrate/20211005080304_tzinfo_time_zones.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/aggregated/base.rb b/db/migrate/aggregated/base.rb index e1f0d2d509..627041edf0 100644 --- a/db/migrate/aggregated/base.rb +++ b/db/migrate/aggregated/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/aggregated/to_3_0.rb b/db/migrate/aggregated/to_3_0.rb index fe98251356..00b7e9c2e7 100644 --- a/db/migrate/aggregated/to_3_0.rb +++ b/db/migrate/aggregated/to_3_0.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/aggregated/to_7_1.rb b/db/migrate/aggregated/to_7_1.rb index 614e9b9f76..1fd9a8b1c3 100644 --- a/db/migrate/aggregated/to_7_1.rb +++ b/db/migrate/aggregated/to_7_1.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/migration_utils/migration_squasher.rb b/db/migrate/migration_utils/migration_squasher.rb index 2ed4791e7e..9ce13db56a 100644 --- a/db/migrate/migration_utils/migration_squasher.rb +++ b/db/migrate/migration_utils/migration_squasher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/migration_utils/module_renamer.rb b/db/migrate/migration_utils/module_renamer.rb index 4ae7a51b79..1ce390b5d7 100644 --- a/db/migrate/migration_utils/module_renamer.rb +++ b/db/migrate/migration_utils/module_renamer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/migration_utils/permission_adder.rb b/db/migrate/migration_utils/permission_adder.rb index af863e07be..eef4ce1bf2 100644 --- a/db/migrate/migration_utils/permission_adder.rb +++ b/db/migrate/migration_utils/permission_adder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/migration_utils/setting_renamer.rb b/db/migrate/migration_utils/setting_renamer.rb index ffa7369d6a..ab801facf1 100644 --- a/db/migrate/migration_utils/setting_renamer.rb +++ b/db/migrate/migration_utils/setting_renamer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/migration_utils/utils.rb b/db/migrate/migration_utils/utils.rb index 10513e580a..07eb3e5997 100644 --- a/db/migrate/migration_utils/utils.rb +++ b/db/migrate/migration_utils/utils.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/announcements.rb b/db/migrate/tables/announcements.rb index a6084ec010..4f7be4e728 100644 --- a/db/migrate/tables/announcements.rb +++ b/db/migrate/tables/announcements.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/attachable_journals.rb b/db/migrate/tables/attachable_journals.rb index 749728bf18..bd97418673 100644 --- a/db/migrate/tables/attachable_journals.rb +++ b/db/migrate/tables/attachable_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/attachment_journals.rb b/db/migrate/tables/attachment_journals.rb index fdc1e75394..cd11d9e463 100644 --- a/db/migrate/tables/attachment_journals.rb +++ b/db/migrate/tables/attachment_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/attachments.rb b/db/migrate/tables/attachments.rb index e3a4dfcd75..2f9ce8a7ed 100644 --- a/db/migrate/tables/attachments.rb +++ b/db/migrate/tables/attachments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/auth_sources.rb b/db/migrate/tables/auth_sources.rb index c09b87e462..1645fb5de4 100644 --- a/db/migrate/tables/auth_sources.rb +++ b/db/migrate/tables/auth_sources.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/available_project_statuses.rb b/db/migrate/tables/available_project_statuses.rb index db82ebd841..bc22b0794c 100644 --- a/db/migrate/tables/available_project_statuses.rb +++ b/db/migrate/tables/available_project_statuses.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/base.rb b/db/migrate/tables/base.rb index ce4ed41d08..775bba551f 100644 --- a/db/migrate/tables/base.rb +++ b/db/migrate/tables/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/boards.rb b/db/migrate/tables/boards.rb index 3153f22870..cff377c03e 100644 --- a/db/migrate/tables/boards.rb +++ b/db/migrate/tables/boards.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/categories.rb b/db/migrate/tables/categories.rb index 9e8267297b..3eafb7e7b6 100644 --- a/db/migrate/tables/categories.rb +++ b/db/migrate/tables/categories.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/changes.rb b/db/migrate/tables/changes.rb index d3fe5e794b..2e2b00557d 100644 --- a/db/migrate/tables/changes.rb +++ b/db/migrate/tables/changes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/changeset_journals.rb b/db/migrate/tables/changeset_journals.rb index a3c0170c8e..77c6dc9a39 100644 --- a/db/migrate/tables/changeset_journals.rb +++ b/db/migrate/tables/changeset_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/changesets.rb b/db/migrate/tables/changesets.rb index a1417fa54c..b7651d8510 100644 --- a/db/migrate/tables/changesets.rb +++ b/db/migrate/tables/changesets.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/changesets_work_packages.rb b/db/migrate/tables/changesets_work_packages.rb index 1504ce9e92..eced8d960a 100644 --- a/db/migrate/tables/changesets_work_packages.rb +++ b/db/migrate/tables/changesets_work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/comments.rb b/db/migrate/tables/comments.rb index c98849dbc2..92aa8f22ea 100644 --- a/db/migrate/tables/comments.rb +++ b/db/migrate/tables/comments.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_fields.rb b/db/migrate/tables/custom_fields.rb index c2e11124b8..65cc279d0a 100644 --- a/db/migrate/tables/custom_fields.rb +++ b/db/migrate/tables/custom_fields.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_fields_projects.rb b/db/migrate/tables/custom_fields_projects.rb index e1dc039b56..e3609290e3 100644 --- a/db/migrate/tables/custom_fields_projects.rb +++ b/db/migrate/tables/custom_fields_projects.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_fields_types.rb b/db/migrate/tables/custom_fields_types.rb index 74e2b80e9b..0d55166aff 100644 --- a/db/migrate/tables/custom_fields_types.rb +++ b/db/migrate/tables/custom_fields_types.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_options.rb b/db/migrate/tables/custom_options.rb index e4eabf527b..d5f484abd3 100644 --- a/db/migrate/tables/custom_options.rb +++ b/db/migrate/tables/custom_options.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_styles.rb b/db/migrate/tables/custom_styles.rb index 37e90c7f8a..0a8efa32ef 100644 --- a/db/migrate/tables/custom_styles.rb +++ b/db/migrate/tables/custom_styles.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/custom_values.rb b/db/migrate/tables/custom_values.rb index 1b20fa7c39..b4153dd47a 100644 --- a/db/migrate/tables/custom_values.rb +++ b/db/migrate/tables/custom_values.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/customizable_journals_table.rb b/db/migrate/tables/customizable_journals_table.rb index 3af58ed224..79a068f727 100644 --- a/db/migrate/tables/customizable_journals_table.rb +++ b/db/migrate/tables/customizable_journals_table.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/delayed_jobs.rb b/db/migrate/tables/delayed_jobs.rb index ca9a101ff0..95b226092c 100644 --- a/db/migrate/tables/delayed_jobs.rb +++ b/db/migrate/tables/delayed_jobs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/design_colors.rb b/db/migrate/tables/design_colors.rb index beed063621..3db329ff5b 100644 --- a/db/migrate/tables/design_colors.rb +++ b/db/migrate/tables/design_colors.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/enabled_modules.rb b/db/migrate/tables/enabled_modules.rb index 2fd1a0ac38..3d7a47dd30 100644 --- a/db/migrate/tables/enabled_modules.rb +++ b/db/migrate/tables/enabled_modules.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/enterprise_tokens.rb b/db/migrate/tables/enterprise_tokens.rb index 733b82e659..a530640a00 100644 --- a/db/migrate/tables/enterprise_tokens.rb +++ b/db/migrate/tables/enterprise_tokens.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/enumerations.rb b/db/migrate/tables/enumerations.rb index 29bada71f6..d6a4adb1bb 100644 --- a/db/migrate/tables/enumerations.rb +++ b/db/migrate/tables/enumerations.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/forums.rb b/db/migrate/tables/forums.rb index e7b21d1d45..922341f795 100644 --- a/db/migrate/tables/forums.rb +++ b/db/migrate/tables/forums.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/group_users.rb b/db/migrate/tables/group_users.rb index 67a08c8f4d..8eb6e1b970 100644 --- a/db/migrate/tables/group_users.rb +++ b/db/migrate/tables/group_users.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/journals.rb b/db/migrate/tables/journals.rb index 4b9f784fc7..3fe88f4698 100644 --- a/db/migrate/tables/journals.rb +++ b/db/migrate/tables/journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/member_roles.rb b/db/migrate/tables/member_roles.rb index 759e174d13..d44cd01f98 100644 --- a/db/migrate/tables/member_roles.rb +++ b/db/migrate/tables/member_roles.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/members.rb b/db/migrate/tables/members.rb index b0bb77325a..1baa204b23 100644 --- a/db/migrate/tables/members.rb +++ b/db/migrate/tables/members.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/menu_items.rb b/db/migrate/tables/menu_items.rb index 8d2f90ac69..a5af32c863 100644 --- a/db/migrate/tables/menu_items.rb +++ b/db/migrate/tables/menu_items.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/message_journals.rb b/db/migrate/tables/message_journals.rb index 0182e1c6bd..ba3f473765 100644 --- a/db/migrate/tables/message_journals.rb +++ b/db/migrate/tables/message_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/messages.rb b/db/migrate/tables/messages.rb index 65c650aed2..50d6d1f90f 100644 --- a/db/migrate/tables/messages.rb +++ b/db/migrate/tables/messages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/news.rb b/db/migrate/tables/news.rb index 3d1e90c48b..99e8889263 100644 --- a/db/migrate/tables/news.rb +++ b/db/migrate/tables/news.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/news_journals.rb b/db/migrate/tables/news_journals.rb index 4908d198b9..57b25688a2 100644 --- a/db/migrate/tables/news_journals.rb +++ b/db/migrate/tables/news_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/planning_element_type_colors.rb b/db/migrate/tables/planning_element_type_colors.rb index 85395f4e3b..04727fa0d6 100644 --- a/db/migrate/tables/planning_element_type_colors.rb +++ b/db/migrate/tables/planning_element_type_colors.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/project_associations.rb b/db/migrate/tables/project_associations.rb index bc8ced7158..5828896f37 100644 --- a/db/migrate/tables/project_associations.rb +++ b/db/migrate/tables/project_associations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/project_types.rb b/db/migrate/tables/project_types.rb index bccc2f1e97..dcf2a6803d 100644 --- a/db/migrate/tables/project_types.rb +++ b/db/migrate/tables/project_types.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/projects.rb b/db/migrate/tables/projects.rb index 3c7a427d0d..654dc760a8 100644 --- a/db/migrate/tables/projects.rb +++ b/db/migrate/tables/projects.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/projects_types.rb b/db/migrate/tables/projects_types.rb index 309f0342fc..36b79fe7f5 100644 --- a/db/migrate/tables/projects_types.rb +++ b/db/migrate/tables/projects_types.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/queries.rb b/db/migrate/tables/queries.rb index 7e43f729af..e0b7fd361e 100644 --- a/db/migrate/tables/queries.rb +++ b/db/migrate/tables/queries.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/relations.rb b/db/migrate/tables/relations.rb index e60fff9c81..b351df3ed5 100644 --- a/db/migrate/tables/relations.rb +++ b/db/migrate/tables/relations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/reportings.rb b/db/migrate/tables/reportings.rb index 057d22fcc4..66cc546e91 100644 --- a/db/migrate/tables/reportings.rb +++ b/db/migrate/tables/reportings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/repositories.rb b/db/migrate/tables/repositories.rb index 948df09f53..f184bc735e 100644 --- a/db/migrate/tables/repositories.rb +++ b/db/migrate/tables/repositories.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/role_permissions.rb b/db/migrate/tables/role_permissions.rb index e05eca0717..238dfc4f8b 100644 --- a/db/migrate/tables/role_permissions.rb +++ b/db/migrate/tables/role_permissions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/roles.rb b/db/migrate/tables/roles.rb index 8cea0b3736..3667c92461 100644 --- a/db/migrate/tables/roles.rb +++ b/db/migrate/tables/roles.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/sessions.rb b/db/migrate/tables/sessions.rb index d89ce648c1..114e40e5cc 100644 --- a/db/migrate/tables/sessions.rb +++ b/db/migrate/tables/sessions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/settings.rb b/db/migrate/tables/settings.rb index f9d233a2f2..74a3f47306 100644 --- a/db/migrate/tables/settings.rb +++ b/db/migrate/tables/settings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/statuses.rb b/db/migrate/tables/statuses.rb index 7aa643778d..7b3a9eec8a 100644 --- a/db/migrate/tables/statuses.rb +++ b/db/migrate/tables/statuses.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/time_entries.rb b/db/migrate/tables/time_entries.rb index 491fe80d2a..704a6fec11 100644 --- a/db/migrate/tables/time_entries.rb +++ b/db/migrate/tables/time_entries.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/time_entry_journals.rb b/db/migrate/tables/time_entry_journals.rb index 7adae0c921..268deaefa7 100644 --- a/db/migrate/tables/time_entry_journals.rb +++ b/db/migrate/tables/time_entry_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/timelines.rb b/db/migrate/tables/timelines.rb index b5534361b0..c749cc8c1c 100644 --- a/db/migrate/tables/timelines.rb +++ b/db/migrate/tables/timelines.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/tokens.rb b/db/migrate/tables/tokens.rb index c38d93f49c..9afb96f118 100644 --- a/db/migrate/tables/tokens.rb +++ b/db/migrate/tables/tokens.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/types.rb b/db/migrate/tables/types.rb index 2f9117795a..7d213bc9a8 100644 --- a/db/migrate/tables/types.rb +++ b/db/migrate/tables/types.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/user_passwords.rb b/db/migrate/tables/user_passwords.rb index fca834dc03..895c170ecb 100644 --- a/db/migrate/tables/user_passwords.rb +++ b/db/migrate/tables/user_passwords.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/user_preferences.rb b/db/migrate/tables/user_preferences.rb index c718d517dc..0076094cf8 100644 --- a/db/migrate/tables/user_preferences.rb +++ b/db/migrate/tables/user_preferences.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/users.rb b/db/migrate/tables/users.rb index c66bea5bd3..c9c6463b04 100644 --- a/db/migrate/tables/users.rb +++ b/db/migrate/tables/users.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/versions.rb b/db/migrate/tables/versions.rb index 56f45ca91a..8632d2fcbf 100644 --- a/db/migrate/tables/versions.rb +++ b/db/migrate/tables/versions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/watchers.rb b/db/migrate/tables/watchers.rb index da83dd41ac..df73057b7a 100644 --- a/db/migrate/tables/watchers.rb +++ b/db/migrate/tables/watchers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wiki_content_journals.rb b/db/migrate/tables/wiki_content_journals.rb index 43ac95f324..a3db33a4a4 100644 --- a/db/migrate/tables/wiki_content_journals.rb +++ b/db/migrate/tables/wiki_content_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wiki_content_versions.rb b/db/migrate/tables/wiki_content_versions.rb index 7ece464617..fb373cc927 100644 --- a/db/migrate/tables/wiki_content_versions.rb +++ b/db/migrate/tables/wiki_content_versions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wiki_contents.rb b/db/migrate/tables/wiki_contents.rb index 1a3c572ce7..103bc8d356 100644 --- a/db/migrate/tables/wiki_contents.rb +++ b/db/migrate/tables/wiki_contents.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wiki_pages.rb b/db/migrate/tables/wiki_pages.rb index 01037bb864..737bacf910 100644 --- a/db/migrate/tables/wiki_pages.rb +++ b/db/migrate/tables/wiki_pages.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wiki_redirects.rb b/db/migrate/tables/wiki_redirects.rb index 0a9e8a32d8..c5359ae2a9 100644 --- a/db/migrate/tables/wiki_redirects.rb +++ b/db/migrate/tables/wiki_redirects.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/wikis.rb b/db/migrate/tables/wikis.rb index af974383ee..af905d7b12 100644 --- a/db/migrate/tables/wikis.rb +++ b/db/migrate/tables/wikis.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/work_package_journals.rb b/db/migrate/tables/work_package_journals.rb index a738223d8c..4e0ff7f3cf 100644 --- a/db/migrate/tables/work_package_journals.rb +++ b/db/migrate/tables/work_package_journals.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/work_packages.rb b/db/migrate/tables/work_packages.rb index b98c3ac3e3..c3f80e406b 100644 --- a/db/migrate/tables/work_packages.rb +++ b/db/migrate/tables/work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/migrate/tables/workflows.rb b/db/migrate/tables/workflows.rb index 3670779073..5e2b564af8 100644 --- a/db/migrate/tables/workflows.rb +++ b/db/migrate/tables/workflows.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/db/seeds.rb b/db/seeds.rb index d953b58dc7..2b2dfe03db 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/extra/mail_handler/rdm-mailhandler.rb b/extra/mail_handler/rdm-mailhandler.rb index 42727ebe58..ff8732aaf0 100644 --- a/extra/mail_handler/rdm-mailhandler.rb +++ b/extra/mail_handler/rdm-mailhandler.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/extra/svn/reposman.rb b/extra/svn/reposman.rb index a38c17ee72..047e26a344 100755 --- a/extra/svn/reposman.rb +++ b/extra/svn/reposman.rb @@ -3,7 +3,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index 7fc9b8e5f3..287e6b23e1 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/api-v3.service.spec.ts b/frontend/src/app/core/apiv3/api-v3.service.spec.ts index 24fa24cda8..b6d1c7930f 100644 --- a/frontend/src/app/core/apiv3/api-v3.service.spec.ts +++ b/frontend/src/app/core/apiv3/api-v3.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/api-v3.service.ts b/frontend/src/app/core/apiv3/api-v3.service.ts index bb5099e085..ac6c5ac04e 100644 --- a/frontend/src/app/core/apiv3/api-v3.service.ts +++ b/frontend/src/app/core/apiv3/api-v3.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/cache/cachable-apiv3-collection.ts b/frontend/src/app/core/apiv3/cache/cachable-apiv3-collection.ts index 568b545139..51f4c1a975 100644 --- a/frontend/src/app/core/apiv3/cache/cachable-apiv3-collection.ts +++ b/frontend/src/app/core/apiv3/cache/cachable-apiv3-collection.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/cache/cachable-apiv3-resource.ts b/frontend/src/app/core/apiv3/cache/cachable-apiv3-resource.ts index 85eeaef6dd..06559887bb 100644 --- a/frontend/src/app/core/apiv3/cache/cachable-apiv3-resource.ts +++ b/frontend/src/app/core/apiv3/cache/cachable-apiv3-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/cache/state-cache.service.ts b/frontend/src/app/core/apiv3/cache/state-cache.service.ts index b196a2bd78..555b31ad84 100644 --- a/frontend/src/app/core/apiv3/cache/state-cache.service.ts +++ b/frontend/src/app/core/apiv3/cache/state-cache.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/backups/apiv3-backups-path.ts b/frontend/src/app/core/apiv3/endpoints/backups/apiv3-backups-path.ts index c7d8db3d1e..1ae10086a2 100644 --- a/frontend/src/app/core/apiv3/endpoints/backups/apiv3-backups-path.ts +++ b/frontend/src/app/core/apiv3/endpoints/backups/apiv3-backups-path.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capabilities-paths.ts b/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capabilities-paths.ts index 9c4cf1dbc4..e60f49a953 100644 --- a/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capabilities-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capabilities-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capability-paths.ts b/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capability-paths.ts index 4dddedb4f1..09508495f2 100644 --- a/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capability-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/capabilities/apiv3-capability-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/capabilities/capability-cache.service.ts b/frontend/src/app/core/apiv3/endpoints/capabilities/capability-cache.service.ts index f5fd172b8d..3c8745b36b 100644 --- a/frontend/src/app/core/apiv3/endpoints/capabilities/capability-cache.service.ts +++ b/frontend/src/app/core/apiv3/endpoints/capabilities/capability-cache.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/configuration/apiv3-configuration-path.ts b/frontend/src/app/core/apiv3/endpoints/configuration/apiv3-configuration-path.ts index ae3204d916..c5bd74cba2 100644 --- a/frontend/src/app/core/apiv3/endpoints/configuration/apiv3-configuration-path.ts +++ b/frontend/src/app/core/apiv3/endpoints/configuration/apiv3-configuration-path.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-form.ts b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-form.ts index 4d601da614..a9cb9a2238 100644 --- a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-form.ts +++ b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-form.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-paths.ts b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-paths.ts index e7c9dc49f0..35159107e3 100644 --- a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grid-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grids-paths.ts b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grids-paths.ts index ce4d7c48a3..555f9fff78 100644 --- a/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grids-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/grids/apiv3-grids-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/groups/apiv3-group-paths.ts b/frontend/src/app/core/apiv3/endpoints/groups/apiv3-group-paths.ts index a89482de3c..5dbd0f1507 100644 --- a/frontend/src/app/core/apiv3/endpoints/groups/apiv3-group-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/groups/apiv3-group-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/groups/apiv3-groups-paths.ts b/frontend/src/app/core/apiv3/endpoints/groups/apiv3-groups-paths.ts index 0d1658a21c..a0206616f2 100644 --- a/frontend/src/app/core/apiv3/endpoints/groups/apiv3-groups-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/groups/apiv3-groups-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/help_texts/apiv3-help-texts-paths.ts b/frontend/src/app/core/apiv3/endpoints/help_texts/apiv3-help-texts-paths.ts index 83b0538f0e..03f60a6586 100644 --- a/frontend/src/app/core/apiv3/endpoints/help_texts/apiv3-help-texts-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/help_texts/apiv3-help-texts-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-form.ts b/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-form.ts index bc4f901b2b..0ae67b12f3 100644 --- a/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-form.ts +++ b/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-form.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-paths.ts b/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-paths.ts index b5bad3c480..fe032288b3 100644 --- a/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/memberships/apiv3-memberships-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/news/apiv3-news-paths.ts b/frontend/src/app/core/apiv3/endpoints/news/apiv3-news-paths.ts index 3627e8bd67..b480d3bdbb 100644 --- a/frontend/src/app/core/apiv3/endpoints/news/apiv3-news-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/news/apiv3-news-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notification-paths.ts b/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notification-paths.ts index 8bc3b3342d..4733eb3950 100644 --- a/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notification-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notification-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notifications-paths.ts b/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notifications-paths.ts index 966cff85ee..f7530244c5 100644 --- a/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notifications-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/notifications/apiv3-notifications-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-user-paths.ts b/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-user-paths.ts index fb0325b0a4..b1bdb794f9 100644 --- a/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-user-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-user-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-users-paths.ts b/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-users-paths.ts index f6bef07eb5..8b9c2b8a24 100644 --- a/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-users-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/placeholder-users/apiv3-placeholder-users-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-available-projects-paths.ts b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-available-projects-paths.ts index b4d7eb2d13..efe26191b7 100644 --- a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-available-projects-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-available-projects-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-copy-paths.ts b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-copy-paths.ts index 7d4bcc9119..557a1dc199 100644 --- a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-copy-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-copy-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-paths.ts b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-paths.ts index 142782b826..55e3c21e00 100644 --- a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-project-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-projects-paths.ts b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-projects-paths.ts index ae762f442d..9af2f2238f 100644 --- a/frontend/src/app/core/apiv3/endpoints/projects/apiv3-projects-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/projects/apiv3-projects-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/projects/project.cache.ts b/frontend/src/app/core/apiv3/endpoints/projects/project.cache.ts index 5d044bf203..87540b0619 100644 --- a/frontend/src/app/core/apiv3/endpoints/projects/project.cache.ts +++ b/frontend/src/app/core/apiv3/endpoints/projects/project.cache.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-queries-paths.ts b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-queries-paths.ts index 5cfc1f1047..0a6617dea5 100644 --- a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-queries-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-queries-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-form.ts b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-form.ts index 046639c1dd..5f0d4353c0 100644 --- a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-form.ts +++ b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-form.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-order.ts b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-order.ts index 329bdb5aca..edc122b55f 100644 --- a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-order.ts +++ b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-order.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-paths.ts b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-paths.ts index b4bc42acf6..31b6790670 100644 --- a/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/queries/apiv3-query-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/relations/apiv3-relations-paths.ts b/frontend/src/app/core/apiv3/endpoints/relations/apiv3-relations-paths.ts index d3cf91a8de..5ef64f8ba5 100644 --- a/frontend/src/app/core/apiv3/endpoints/relations/apiv3-relations-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/relations/apiv3-relations-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/roles/apiv3-role-paths.ts b/frontend/src/app/core/apiv3/endpoints/roles/apiv3-role-paths.ts index 1bea8f2a36..a12c778c1b 100644 --- a/frontend/src/app/core/apiv3/endpoints/roles/apiv3-role-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/roles/apiv3-role-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/roles/apiv3-roles-paths.ts b/frontend/src/app/core/apiv3/endpoints/roles/apiv3-roles-paths.ts index 9b26609c48..894d86233e 100644 --- a/frontend/src/app/core/apiv3/endpoints/roles/apiv3-roles-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/roles/apiv3-roles-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-status-paths.ts b/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-status-paths.ts index 5d92761925..a7319a22ae 100644 --- a/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-status-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-status-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-statuses-paths.ts b/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-statuses-paths.ts index 5e0c05b7d3..57087a7bdc 100644 --- a/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-statuses-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/statuses/apiv3-statuses-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entries-paths.ts b/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entries-paths.ts index 24a2c9987c..18a14c850c 100644 --- a/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entries-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entries-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entry-paths.ts b/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entry-paths.ts index 7460b4d5b7..75d1496fb4 100644 --- a/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entry-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/time-entries/apiv3-time-entry-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/time-entries/time-entry-cache.service.ts b/frontend/src/app/core/apiv3/endpoints/time-entries/time-entry-cache.service.ts index 71cde31ce5..48cc425c2b 100644 --- a/frontend/src/app/core/apiv3/endpoints/time-entries/time-entry-cache.service.ts +++ b/frontend/src/app/core/apiv3/endpoints/time-entries/time-entry-cache.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/types/apiv3-type-paths.ts b/frontend/src/app/core/apiv3/endpoints/types/apiv3-type-paths.ts index 931220cc0e..16d278ce3e 100644 --- a/frontend/src/app/core/apiv3/endpoints/types/apiv3-type-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/types/apiv3-type-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/types/apiv3-types-paths.ts b/frontend/src/app/core/apiv3/endpoints/types/apiv3-types-paths.ts index 07af705167..3ffa18cc43 100644 --- a/frontend/src/app/core/apiv3/endpoints/types/apiv3-types-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/types/apiv3-types-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-paths.ts b/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-paths.ts index 97bab502b3..cd270f1efd 100644 --- a/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-preferences-paths.ts b/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-preferences-paths.ts index 2eb7c5161c..97ac9c3269 100644 --- a/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-preferences-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/users/apiv3-user-preferences-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/users/apiv3-users-paths.ts b/frontend/src/app/core/apiv3/endpoints/users/apiv3-users-paths.ts index 093004bbb8..dd44c49c07 100644 --- a/frontend/src/app/core/apiv3/endpoints/users/apiv3-users-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/users/apiv3-users-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/versions/apiv3-version-paths.ts b/frontend/src/app/core/apiv3/endpoints/versions/apiv3-version-paths.ts index 773ae2b0eb..4f7bb970f1 100644 --- a/frontend/src/app/core/apiv3/endpoints/versions/apiv3-version-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/versions/apiv3-version-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/versions/apiv3-versions-paths.ts b/frontend/src/app/core/apiv3/endpoints/versions/apiv3-versions-paths.ts index 54d6b746a8..c21215c30b 100644 --- a/frontend/src/app/core/apiv3/endpoints/versions/apiv3-versions-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/versions/apiv3-versions-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/views/apiv3-views-paths.ts b/frontend/src/app/core/apiv3/endpoints/views/apiv3-views-paths.ts index dda92575b7..4ec5d10e74 100644 --- a/frontend/src/app/core/apiv3/endpoints/views/apiv3-views-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/views/apiv3-views-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-cached-subresource.ts b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-cached-subresource.ts index 1bba082219..175c6f9a78 100644 --- a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-cached-subresource.ts +++ b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-cached-subresource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-paths.ts b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-paths.ts index a3a81de83e..276d1106c5 100644 --- a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-package-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-packages-paths.ts b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-packages-paths.ts index 16073fa63d..01437fd6f4 100644 --- a/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-packages-paths.ts +++ b/frontend/src/app/core/apiv3/endpoints/work_packages/api-v3-work-packages-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/work_packages/work-package-cache.spec.ts b/frontend/src/app/core/apiv3/endpoints/work_packages/work-package-cache.spec.ts index e5836c7e9f..0f7d447c15 100644 --- a/frontend/src/app/core/apiv3/endpoints/work_packages/work-package-cache.spec.ts +++ b/frontend/src/app/core/apiv3/endpoints/work_packages/work-package-cache.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/endpoints/work_packages/work-package.cache.ts b/frontend/src/app/core/apiv3/endpoints/work_packages/work-package.cache.ts index 43bf5f3014..a7e2ca855e 100644 --- a/frontend/src/app/core/apiv3/endpoints/work_packages/work-package.cache.ts +++ b/frontend/src/app/core/apiv3/endpoints/work_packages/work-package.cache.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/openproject-api-v3.module.ts b/frontend/src/app/core/apiv3/openproject-api-v3.module.ts index 0099e6a9cf..2a2638709c 100644 --- a/frontend/src/app/core/apiv3/openproject-api-v3.module.ts +++ b/frontend/src/app/core/apiv3/openproject-api-v3.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/paths/apiv3-list-resource.interface.ts b/frontend/src/app/core/apiv3/paths/apiv3-list-resource.interface.ts index bc2990073c..531b1fa71e 100644 --- a/frontend/src/app/core/apiv3/paths/apiv3-list-resource.interface.ts +++ b/frontend/src/app/core/apiv3/paths/apiv3-list-resource.interface.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/virtual/apiv3-board-path.ts b/frontend/src/app/core/apiv3/virtual/apiv3-board-path.ts index ca5f87ee3e..aeb823f912 100644 --- a/frontend/src/app/core/apiv3/virtual/apiv3-board-path.ts +++ b/frontend/src/app/core/apiv3/virtual/apiv3-board-path.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/apiv3/virtual/apiv3-boards-paths.ts b/frontend/src/app/core/apiv3/virtual/apiv3-boards-paths.ts index 95637812f1..b91c9c5bdd 100644 --- a/frontend/src/app/core/apiv3/virtual/apiv3-boards-paths.ts +++ b/frontend/src/app/core/apiv3/virtual/apiv3-boards-paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/admin_users.js b/frontend/src/app/core/augmenting/dynamic-scripts/admin_users.js index b04551db81..8be4f9ba6b 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/admin_users.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/admin_users.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs.js index 94802cbf79..b5a0d956fa 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/backlog.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/backlog.js index ca44d931da..5572aa8130 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/backlog.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/backlog.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/burndown.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/burndown.js index 7d4c104c1d..f109df9b3f 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/burndown.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/burndown.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/common.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/common.js index 450762f2f5..8166ae5a41 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/common.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/common.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/editable_inplace.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/editable_inplace.js index a85b106df2..5db410dbaf 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/editable_inplace.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/editable_inplace.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/impediment.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/impediment.js index f549cf8032..60109dbdba 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/impediment.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/impediment.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/master_backlog.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/master_backlog.js index 0749f008c8..22a37f96c0 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/master_backlog.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/master_backlog.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/model.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/model.js index 4f61440ffd..b26d10eb01 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/model.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/model.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/show_main.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/show_main.js index bdc4aecbbd..c862a44b41 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/show_main.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/show_main.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/sprint.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/sprint.js index c2bceb2bfa..ec02961f06 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/sprint.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/sprint.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/story.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/story.js index 258eb28e40..eef0f5fc26 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/story.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/story.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/task.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/task.js index 137bc20ea4..c54805f109 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/task.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/task.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/taskboard.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/taskboard.js index a0145a7a3d..616d6f3089 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/taskboard.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/taskboard.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/work_package.js b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/work_package.js index e96aef0407..ad9f6afca7 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/work_package.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/backlogs/work_package.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/custom_fields.js b/frontend/src/app/core/augmenting/dynamic-scripts/custom_fields.js index 5304637b8e..0a22cac151 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/custom_fields.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/custom_fields.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/forums.js b/frontend/src/app/core/augmenting/dynamic-scripts/forums.js index ef2a0a2ad3..924ad6ad79 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/forums.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/forums.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/global_roles.ts b/frontend/src/app/core/augmenting/dynamic-scripts/global_roles.ts index 9ee44a898b..4281dab902 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/global_roles.ts +++ b/frontend/src/app/core/augmenting/dynamic-scripts/global_roles.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/members_form.js b/frontend/src/app/core/augmenting/dynamic-scripts/members_form.js index 6f7fdedffe..51cebb6af0 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/members_form.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/members_form.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/new_user.js b/frontend/src/app/core/augmenting/dynamic-scripts/new_user.js index 9058815781..a44a1a04c8 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/new_user.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/new_user.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/project.js b/frontend/src/app/core/augmenting/dynamic-scripts/project.js index 7d151fd472..c13bc19b3f 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/project.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/project.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/project_form_listener.js b/frontend/src/app/core/augmenting/dynamic-scripts/project_form_listener.js index 9011722484..b163e22b8b 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/project_form_listener.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/project_form_listener.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/repository_navigation.js b/frontend/src/app/core/augmenting/dynamic-scripts/repository_navigation.js index 54e0b0666b..284193388a 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/repository_navigation.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/repository_navigation.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/dynamic-scripts/repository_settings.js b/frontend/src/app/core/augmenting/dynamic-scripts/repository_settings.js index b88142bb72..7ae8d16bd8 100644 --- a/frontend/src/app/core/augmenting/dynamic-scripts/repository_settings.js +++ b/frontend/src/app/core/augmenting/dynamic-scripts/repository_settings.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/openproject-augmenting.module.ts b/frontend/src/app/core/augmenting/openproject-augmenting.module.ts index 680e7b4fe9..b24b5f0afa 100644 --- a/frontend/src/app/core/augmenting/openproject-augmenting.module.ts +++ b/frontend/src/app/core/augmenting/openproject-augmenting.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/augmenting/services/path-script.augment.service.ts b/frontend/src/app/core/augmenting/services/path-script.augment.service.ts index 23310cce9d..9d8ea4ace2 100644 --- a/frontend/src/app/core/augmenting/services/path-script.augment.service.ts +++ b/frontend/src/app/core/augmenting/services/path-script.augment.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/backup/op-backup.service.ts b/frontend/src/app/core/backup/op-backup.service.ts index 46aca3e65a..0a783330f6 100644 --- a/frontend/src/app/core/backup/op-backup.service.ts +++ b/frontend/src/app/core/backup/op-backup.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/config/configuration.service.ts b/frontend/src/app/core/config/configuration.service.ts index 184d966c5c..ceb148a222 100644 --- a/frontend/src/app/core/config/configuration.service.ts +++ b/frontend/src/app/core/config/configuration.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/current-project/current-project.service.spec.ts b/frontend/src/app/core/current-project/current-project.service.spec.ts index b853c25ef5..99e02629ec 100644 --- a/frontend/src/app/core/current-project/current-project.service.spec.ts +++ b/frontend/src/app/core/current-project/current-project.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/current-project/current-project.service.ts b/frontend/src/app/core/current-project/current-project.service.ts index b5f8382439..d2a6d3feef 100644 --- a/frontend/src/app/core/current-project/current-project.service.ts +++ b/frontend/src/app/core/current-project/current-project.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/current-user/current-user.service.spec.ts b/frontend/src/app/core/current-user/current-user.service.spec.ts index 100c72cadf..36ca42531d 100644 --- a/frontend/src/app/core/current-user/current-user.service.spec.ts +++ b/frontend/src/app/core/current-user/current-user.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/current-user/current-user.service.ts b/frontend/src/app/core/current-user/current-user.service.ts index 489903512c..ee9de6c646 100644 --- a/frontend/src/app/core/current-user/current-user.service.ts +++ b/frontend/src/app/core/current-user/current-user.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/current-user/current-user.store.ts b/frontend/src/app/core/current-user/current-user.store.ts index 8bb53a81c7..cf2ea28bc0 100644 --- a/frontend/src/app/core/current-user/current-user.store.ts +++ b/frontend/src/app/core/current-user/current-user.store.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/datetime/timezone.service.spec.ts b/frontend/src/app/core/datetime/timezone.service.spec.ts index 7f9217937c..1b48fb77c4 100644 --- a/frontend/src/app/core/datetime/timezone.service.spec.ts +++ b/frontend/src/app/core/datetime/timezone.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/datetime/timezone.service.ts b/frontend/src/app/core/datetime/timezone.service.ts index e741fc6427..7a44312c41 100644 --- a/frontend/src/app/core/datetime/timezone.service.ts +++ b/frontend/src/app/core/datetime/timezone.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/enterprise/banners.service.ts b/frontend/src/app/core/enterprise/banners.service.ts index a7a00c0720..3c1b088ee7 100644 --- a/frontend/src/app/core/enterprise/banners.service.ts +++ b/frontend/src/app/core/enterprise/banners.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/errors/sentry/sentry-reporter.ts b/frontend/src/app/core/errors/sentry/sentry-reporter.ts index 7cf9fa093a..e2edb9f487 100644 --- a/frontend/src/app/core/errors/sentry/sentry-reporter.ts +++ b/frontend/src/app/core/errors/sentry/sentry-reporter.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/expression/expression.service.ts b/frontend/src/app/core/expression/expression.service.ts index 9d5eeae0b7..cab64ac0c7 100644 --- a/frontend/src/app/core/expression/expression.service.ts +++ b/frontend/src/app/core/expression/expression.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/file-upload/op-direct-file-upload.service.ts b/frontend/src/app/core/file-upload/op-direct-file-upload.service.ts index c2e1a961a6..50e7953bd7 100644 --- a/frontend/src/app/core/file-upload/op-direct-file-upload.service.ts +++ b/frontend/src/app/core/file-upload/op-direct-file-upload.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/file-upload/op-file-upload.service.spec.ts b/frontend/src/app/core/file-upload/op-file-upload.service.spec.ts index 32af971d21..3144244d05 100644 --- a/frontend/src/app/core/file-upload/op-file-upload.service.spec.ts +++ b/frontend/src/app/core/file-upload/op-file-upload.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/file-upload/op-file-upload.service.ts b/frontend/src/app/core/file-upload/op-file-upload.service.ts index 301ac2500c..a35e2794c6 100644 --- a/frontend/src/app/core/file-upload/op-file-upload.service.ts +++ b/frontend/src/app/core/file-upload/op-file-upload.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/global-search-work-packages-entry.component.ts b/frontend/src/app/core/global_search/global-search-work-packages-entry.component.ts index 8b32005e01..ebbf7b89ae 100644 --- a/frontend/src/app/core/global_search/global-search-work-packages-entry.component.ts +++ b/frontend/src/app/core/global_search/global-search-work-packages-entry.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/global-search-work-packages.component.ts b/frontend/src/app/core/global_search/global-search-work-packages.component.ts index 5bdd4780f5..6bd2f6665a 100644 --- a/frontend/src/app/core/global_search/global-search-work-packages.component.ts +++ b/frontend/src/app/core/global_search/global-search-work-packages.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/input/global-search-input.component.ts b/frontend/src/app/core/global_search/input/global-search-input.component.ts index f30b5b9fd4..507efda81e 100644 --- a/frontend/src/app/core/global_search/input/global-search-input.component.ts +++ b/frontend/src/app/core/global_search/input/global-search-input.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/openproject-global-search.module.ts b/frontend/src/app/core/global_search/openproject-global-search.module.ts index 887c529884..b6b0a155dd 100644 --- a/frontend/src/app/core/global_search/openproject-global-search.module.ts +++ b/frontend/src/app/core/global_search/openproject-global-search.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/services/global-search.service.spec.ts b/frontend/src/app/core/global_search/services/global-search.service.spec.ts index e1d5ae0490..8753309bc1 100644 --- a/frontend/src/app/core/global_search/services/global-search.service.spec.ts +++ b/frontend/src/app/core/global_search/services/global-search.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/services/global-search.service.ts b/frontend/src/app/core/global_search/services/global-search.service.ts index 25739e22d3..a2cc619aa0 100644 --- a/frontend/src/app/core/global_search/services/global-search.service.ts +++ b/frontend/src/app/core/global_search/services/global-search.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/tabs/global-search-tabs.component.ts b/frontend/src/app/core/global_search/tabs/global-search-tabs.component.ts index abc0a6a7a5..efdd815c4f 100644 --- a/frontend/src/app/core/global_search/tabs/global-search-tabs.component.ts +++ b/frontend/src/app/core/global_search/tabs/global-search-tabs.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/global_search/title/global-search-title.component.ts b/frontend/src/app/core/global_search/title/global-search-title.component.ts index 191662ee99..cdfb879c95 100644 --- a/frontend/src/app/core/global_search/title/global-search-title.component.ts +++ b/frontend/src/app/core/global_search/title/global-search-title.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/gon/gon.service.ts b/frontend/src/app/core/gon/gon.service.ts index 866c740092..463d36971b 100644 --- a/frontend/src/app/core/gon/gon.service.ts +++ b/frontend/src/app/core/gon/gon.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/html-sanitize/html-sanitize.service.ts b/frontend/src/app/core/html-sanitize/html-sanitize.service.ts index c6f4896e8d..2bacf3742f 100644 --- a/frontend/src/app/core/html-sanitize/html-sanitize.service.ts +++ b/frontend/src/app/core/html-sanitize/html-sanitize.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/loading-indicator/loading-indicator.service.ts b/frontend/src/app/core/loading-indicator/loading-indicator.service.ts index 3c750c0c4f..bf4da1cb50 100644 --- a/frontend/src/app/core/loading-indicator/loading-indicator.service.ts +++ b/frontend/src/app/core/loading-indicator/loading-indicator.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/main-menu/main-menu-toggle.component.ts b/frontend/src/app/core/main-menu/main-menu-toggle.component.ts index 3fe54a5431..a94641aea0 100644 --- a/frontend/src/app/core/main-menu/main-menu-toggle.component.ts +++ b/frontend/src/app/core/main-menu/main-menu-toggle.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/main-menu/main-menu-toggle.service.ts b/frontend/src/app/core/main-menu/main-menu-toggle.service.ts index 6b720822e8..0c35a135ae 100644 --- a/frontend/src/app/core/main-menu/main-menu-toggle.service.ts +++ b/frontend/src/app/core/main-menu/main-menu-toggle.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/model-auth/model-auth.service.spec.ts b/frontend/src/app/core/model-auth/model-auth.service.spec.ts index 4b9c020dfc..9ff05b4d4b 100644 --- a/frontend/src/app/core/model-auth/model-auth.service.spec.ts +++ b/frontend/src/app/core/model-auth/model-auth.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/model-auth/model-auth.service.ts b/frontend/src/app/core/model-auth/model-auth.service.ts index ad6b7e0392..efbb14fef5 100644 --- a/frontend/src/app/core/model-auth/model-auth.service.ts +++ b/frontend/src/app/core/model-auth/model-auth.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/path-helper/path-helper.service.ts b/frontend/src/app/core/path-helper/path-helper.service.ts index 5469dee1c7..4a2699c3a8 100644 --- a/frontend/src/app/core/path-helper/path-helper.service.ts +++ b/frontend/src/app/core/path-helper/path-helper.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/routing/base/application-base.component.ts b/frontend/src/app/core/routing/base/application-base.component.ts index 60dd57146e..580a9be183 100644 --- a/frontend/src/app/core/routing/base/application-base.component.ts +++ b/frontend/src/app/core/routing/base/application-base.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/routing/first-route-service.ts b/frontend/src/app/core/routing/first-route-service.ts index dbb11d0f41..483edb9d4c 100644 --- a/frontend/src/app/core/routing/first-route-service.ts +++ b/frontend/src/app/core/routing/first-route-service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/routing/openproject-router.module.ts b/frontend/src/app/core/routing/openproject-router.module.ts index 49ab194e3d..d77b6bdd15 100644 --- a/frontend/src/app/core/routing/openproject-router.module.ts +++ b/frontend/src/app/core/routing/openproject-router.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/routing/openproject.routes.ts b/frontend/src/app/core/routing/openproject.routes.ts index b7e64375bd..a0af681e80 100644 --- a/frontend/src/app/core/routing/openproject.routes.ts +++ b/frontend/src/app/core/routing/openproject.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/schemas/schema-cache.service.ts b/frontend/src/app/core/schemas/schema-cache.service.ts index 9d02d08da8..3a422a8345 100644 --- a/frontend/src/app/core/schemas/schema-cache.service.ts +++ b/frontend/src/app/core/schemas/schema-cache.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/components/admin/backup.component.ts b/frontend/src/app/core/setup/globals/components/admin/backup.component.ts index 8ae87c1bce..63ea24a314 100644 --- a/frontend/src/app/core/setup/globals/components/admin/backup.component.ts +++ b/frontend/src/app/core/setup/globals/components/admin/backup.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-helpers.ts b/frontend/src/app/core/setup/globals/global-helpers.ts index a57429a4e8..a57f0ed3ae 100644 --- a/frontend/src/app/core/setup/globals/global-helpers.ts +++ b/frontend/src/app/core/setup/globals/global-helpers.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners.ts b/frontend/src/app/core/setup/globals/global-listeners.ts index 62d846e9d5..6592a3e8bf 100644 --- a/frontend/src/app/core/setup/globals/global-listeners.ts +++ b/frontend/src/app/core/setup/globals/global-listeners.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/action-menu.ts b/frontend/src/app/core/setup/globals/global-listeners/action-menu.ts index 017dd11eb6..9cbf66d70b 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/action-menu.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/action-menu.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/color-preview.ts b/frontend/src/app/core/setup/globals/global-listeners/color-preview.ts index 2dfb1b2b07..6ab866204f 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/color-preview.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/color-preview.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/danger-zone-validation.ts b/frontend/src/app/core/setup/globals/global-listeners/danger-zone-validation.ts index 645950ee26..df0efb144f 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/danger-zone-validation.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/danger-zone-validation.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/preview-trigger.service.ts b/frontend/src/app/core/setup/globals/global-listeners/preview-trigger.service.ts index 19b0ca6352..735c73006c 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/preview-trigger.service.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/preview-trigger.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/refresh-on-form-changes.ts b/frontend/src/app/core/setup/globals/global-listeners/refresh-on-form-changes.ts index 814e764e1e..f995adebe9 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/refresh-on-form-changes.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/refresh-on-form-changes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/request-for-confirmation.ts b/frontend/src/app/core/setup/globals/global-listeners/request-for-confirmation.ts index ef9f07a248..e830fa46b9 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/request-for-confirmation.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/request-for-confirmation.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/toggable-fieldset.ts b/frontend/src/app/core/setup/globals/global-listeners/toggable-fieldset.ts index 9c1a969052..85a31a836f 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/toggable-fieldset.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/toggable-fieldset.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/top-menu-scroll.ts b/frontend/src/app/core/setup/globals/global-listeners/top-menu-scroll.ts index 2b8a0887a6..5985dd1862 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/top-menu-scroll.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/top-menu-scroll.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/global-listeners/top-menu.ts b/frontend/src/app/core/setup/globals/global-listeners/top-menu.ts index a020de0e2c..09c098233a 100644 --- a/frontend/src/app/core/setup/globals/global-listeners/top-menu.ts +++ b/frontend/src/app/core/setup/globals/global-listeners/top-menu.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/openproject.ts b/frontend/src/app/core/setup/globals/openproject.ts index 6fcca52166..eda05c3b43 100644 --- a/frontend/src/app/core/setup/globals/openproject.ts +++ b/frontend/src/app/core/setup/globals/openproject.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/globals/tree-menu.ts b/frontend/src/app/core/setup/globals/tree-menu.ts index a0e7ba303f..4fbf3f5ba5 100644 --- a/frontend/src/app/core/setup/globals/tree-menu.ts +++ b/frontend/src/app/core/setup/globals/tree-menu.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/init-globals.ts b/frontend/src/app/core/setup/init-globals.ts index f000c6abdc..18c7cbb169 100644 --- a/frontend/src/app/core/setup/init-globals.ts +++ b/frontend/src/app/core/setup/init-globals.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/init-locale.ts b/frontend/src/app/core/setup/init-locale.ts index 7912429258..aed8e785b6 100644 --- a/frontend/src/app/core/setup/init-locale.ts +++ b/frontend/src/app/core/setup/init-locale.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/setup/init-vendors.ts b/frontend/src/app/core/setup/init-vendors.ts index 392d089dc8..dbac0c8e7f 100644 --- a/frontend/src/app/core/setup/init-vendors.ts +++ b/frontend/src/app/core/setup/init-vendors.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/core/state/openproject-state.module.ts b/frontend/src/app/core/state/openproject-state.module.ts index 391137755b..ac287f28e0 100644 --- a/frontend/src/app/core/state/openproject-state.module.ts +++ b/frontend/src/app/core/state/openproject-state.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/admin/openproject-admin.module.ts b/frontend/src/app/features/admin/openproject-admin.module.ts index 1dc297c5f9..f24dcd7011 100644 --- a/frontend/src/app/features/admin/openproject-admin.module.ts +++ b/frontend/src/app/features/admin/openproject-admin.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/admin/types/group-edit-in-place.component.ts b/frontend/src/app/features/admin/types/group-edit-in-place.component.ts index 676f23c9f5..0840bf33c0 100644 --- a/frontend/src/app/features/admin/types/group-edit-in-place.component.ts +++ b/frontend/src/app/features/admin/types/group-edit-in-place.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/api-docs/openproject-api-docs.module.ts b/frontend/src/app/features/api-docs/openproject-api-docs.module.ts index 9698316c17..c8b74ed76b 100644 --- a/frontend/src/app/features/api-docs/openproject-api-docs.module.ts +++ b/frontend/src/app/features/api-docs/openproject-api-docs.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/api-docs/openproject-api-docs.routes.ts b/frontend/src/app/features/api-docs/openproject-api-docs.routes.ts index 9486105d75..4b3dbc4ffe 100644 --- a/frontend/src/app/features/api-docs/openproject-api-docs.routes.ts +++ b/frontend/src/app/features/api-docs/openproject-api-docs.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/api-docs/swagger-ui/swagger-ui.component.ts b/frontend/src/app/features/api-docs/swagger-ui/swagger-ui.component.ts index 0fe269df53..99552b2775 100644 --- a/frontend/src/app/features/api-docs/swagger-ui/swagger-ui.component.ts +++ b/frontend/src/app/features/api-docs/swagger-ui/swagger-ui.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/backlogs/openproject-backlogs.module.ts b/frontend/src/app/features/backlogs/openproject-backlogs.module.ts index c17283f78e..129918eac9 100644 --- a/frontend/src/app/features/backlogs/openproject-backlogs.module.ts +++ b/frontend/src/app/features/backlogs/openproject-backlogs.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/backlogs/openproject-backlogs.routes.ts b/frontend/src/app/features/backlogs/openproject-backlogs.routes.ts index 16c57d473f..606a913c25 100644 --- a/frontend/src/app/features/backlogs/openproject-backlogs.routes.ts +++ b/frontend/src/app/features/backlogs/openproject-backlogs.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/bcf-api-request.service.ts b/frontend/src/app/features/bim/bcf/api/bcf-api-request.service.ts index 2f4a1ba645..7c923287c3 100644 --- a/frontend/src/app/features/bim/bcf/api/bcf-api-request.service.ts +++ b/frontend/src/app/features/bim/bcf/api/bcf-api-request.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/bcf-api.model.ts b/frontend/src/app/features/bim/bcf/api/bcf-api.model.ts index 3fb169181a..e3021e2fa1 100644 --- a/frontend/src/app/features/bim/bcf/api/bcf-api.model.ts +++ b/frontend/src/app/features/bim/bcf/api/bcf-api.model.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/bcf-api.service.spec.ts b/frontend/src/app/features/bim/bcf/api/bcf-api.service.spec.ts index 0508233bd3..c1fa09dfb6 100644 --- a/frontend/src/app/features/bim/bcf/api/bcf-api.service.spec.ts +++ b/frontend/src/app/features/bim/bcf/api/bcf-api.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/bcf-api.service.ts b/frontend/src/app/features/bim/bcf/api/bcf-api.service.ts index 32a3b92778..e26963127f 100644 --- a/frontend/src/app/features/bim/bcf/api/bcf-api.service.ts +++ b/frontend/src/app/features/bim/bcf/api/bcf-api.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.paths.ts b/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.paths.ts index 6429c9980f..ce95ab9d2b 100644 --- a/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.paths.ts +++ b/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.resource.ts b/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.resource.ts index 543f125d3a..2714fab399 100644 --- a/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.resource.ts +++ b/frontend/src/app/features/bim/bcf/api/topics/bcf-topic.resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-collection.paths.ts b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-collection.paths.ts index 26564ad770..97fc1e0c27 100644 --- a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-collection.paths.ts +++ b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-collection.paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-item.interface.ts b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-item.interface.ts index aa0745875b..30242849f1 100644 --- a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-item.interface.ts +++ b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-item.interface.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-selection.paths.ts b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-selection.paths.ts index 50784980d5..dcd1dbd968 100644 --- a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-selection.paths.ts +++ b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-selection.paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-visibility.paths.ts b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-visibility.paths.ts index 7101db9dce..74c0c210e6 100644 --- a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-visibility.paths.ts +++ b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint-visibility.paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint.paths.ts b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint.paths.ts index f823a44097..054b5262be 100644 --- a/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint.paths.ts +++ b/frontend/src/app/features/bim/bcf/api/viewpoints/bcf-viewpoint.paths.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-new-wp-attribute-group.component.ts b/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-new-wp-attribute-group.component.ts index a1b92f54fd..d75e408979 100644 --- a/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-new-wp-attribute-group.component.ts +++ b/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-new-wp-attribute-group.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-wp-attribute-group.component.ts b/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-wp-attribute-group.component.ts index 4095b586d7..45244881bb 100644 --- a/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-wp-attribute-group.component.ts +++ b/frontend/src/app/features/bim/bcf/bcf-wp-attribute-group/bcf-wp-attribute-group.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/fields/display/bcf-thumbnail-field.module.ts b/frontend/src/app/features/bim/bcf/fields/display/bcf-thumbnail-field.module.ts index 6ff12772dc..31dca855c1 100644 --- a/frontend/src/app/features/bim/bcf/fields/display/bcf-thumbnail-field.module.ts +++ b/frontend/src/app/features/bim/bcf/fields/display/bcf-thumbnail-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/helper/bcf-path-helper.service.ts b/frontend/src/app/features/bim/bcf/helper/bcf-path-helper.service.ts index f5ef0bc9de..8894fec4f5 100644 --- a/frontend/src/app/features/bim/bcf/helper/bcf-path-helper.service.ts +++ b/frontend/src/app/features/bim/bcf/helper/bcf-path-helper.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/helper/viewpoints.service.ts b/frontend/src/app/features/bim/bcf/helper/viewpoints.service.ts index 9202a03ab6..1ce1e3b33d 100644 --- a/frontend/src/app/features/bim/bcf/helper/viewpoints.service.ts +++ b/frontend/src/app/features/bim/bcf/helper/viewpoints.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/bcf/openproject-bcf.module.ts b/frontend/src/app/features/bim/bcf/openproject-bcf.module.ts index 6b309c3288..b19030abfa 100644 --- a/frontend/src/app/features/bim/bcf/openproject-bcf.module.ts +++ b/frontend/src/app/features/bim/bcf/openproject-bcf.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/bcf/list/bcf-list.component.ts b/frontend/src/app/features/bim/ifc_models/bcf/list/bcf-list.component.ts index 9339e0330c..517c854bf9 100644 --- a/frontend/src/app/features/bim/ifc_models/bcf/list/bcf-list.component.ts +++ b/frontend/src/app/features/bim/ifc_models/bcf/list/bcf-list.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/bcf/split/left/bcf-split-left.component.ts b/frontend/src/app/features/bim/ifc_models/bcf/split/left/bcf-split-left.component.ts index d32fed1c10..0613a7bd21 100644 --- a/frontend/src/app/features/bim/ifc_models/bcf/split/left/bcf-split-left.component.ts +++ b/frontend/src/app/features/bim/ifc_models/bcf/split/left/bcf-split-left.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/bcf/split/right/bcf-split-right.component.ts b/frontend/src/app/features/bim/ifc_models/bcf/split/right/bcf-split-right.component.ts index 4634184061..496d794b60 100644 --- a/frontend/src/app/features/bim/ifc_models/bcf/split/right/bcf-split-right.component.ts +++ b/frontend/src/app/features/bim/ifc_models/bcf/split/right/bcf-split-right.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.component.ts b/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.component.ts index 132cf8afe0..4851b060b7 100644 --- a/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.component.ts +++ b/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.service.ts b/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.service.ts index d899ecadf5..34714d1ffd 100644 --- a/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.service.ts +++ b/frontend/src/app/features/bim/ifc_models/ifc-viewer/ifc-viewer.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.module.ts b/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.module.ts index f7613ad3aa..ff15265329 100644 --- a/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.module.ts +++ b/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.routes.ts b/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.routes.ts index 2e57442de0..541d6d73f2 100644 --- a/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.routes.ts +++ b/frontend/src/app/features/bim/ifc_models/openproject-ifc-models.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/pages/viewer/bcf-view.service.ts b/frontend/src/app/features/bim/ifc_models/pages/viewer/bcf-view.service.ts index 7e38116303..9e5873dac1 100644 --- a/frontend/src/app/features/bim/ifc_models/pages/viewer/bcf-view.service.ts +++ b/frontend/src/app/features/bim/ifc_models/pages/viewer/bcf-view.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/pages/viewer/ifc-viewer-page.component.ts b/frontend/src/app/features/bim/ifc_models/pages/viewer/ifc-viewer-page.component.ts index c3384dd922..518587e170 100644 --- a/frontend/src/app/features/bim/ifc_models/pages/viewer/ifc-viewer-page.component.ts +++ b/frontend/src/app/features/bim/ifc_models/pages/viewer/ifc-viewer-page.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-export-button.component.ts b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-export-button.component.ts index ec92322f70..3fca935a33 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-export-button.component.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-export-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-import-button.component.ts b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-import-button.component.ts index 1bab17e977..b41fb64a90 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-import-button.component.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/bcf-import-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/refresh-button.component.ts b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/refresh-button.component.ts index 3d78ab1510..f62026eb14 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/refresh-button.component.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/import-export-bcf/refresh-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/manage-ifc-models-button/bim-manage-ifc-models-button.component.ts b/frontend/src/app/features/bim/ifc_models/toolbar/manage-ifc-models-button/bim-manage-ifc-models-button.component.ts index 49593d3c8d..520d31be0e 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/manage-ifc-models-button/bim-manage-ifc-models-button.component.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/manage-ifc-models-button/bim-manage-ifc-models-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-button.component.ts b/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-button.component.ts index 507bb24517..29a9e13845 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-button.component.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-dropdown.directive.ts b/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-dropdown.directive.ts index 7b7c927715..e12af75c66 100644 --- a/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-dropdown.directive.ts +++ b/frontend/src/app/features/bim/ifc_models/toolbar/view-toggle/bcf-view-toggle-dropdown.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/openproject-bim.module.ts b/frontend/src/app/features/bim/openproject-bim.module.ts index f460052efa..1decacdb8f 100644 --- a/frontend/src/app/features/bim/openproject-bim.module.ts +++ b/frontend/src/app/features/bim/openproject-bim.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/bim/revit_add_in/revit-bridge.service.ts b/frontend/src/app/features/bim/revit_add_in/revit-bridge.service.ts index 33ff56090e..773f843d7d 100644 --- a/frontend/src/app/features/bim/revit_add_in/revit-bridge.service.ts +++ b/frontend/src/app/features/bim/revit_add_in/revit-bridge.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/add-list-modal/add-list-modal.component.ts b/frontend/src/app/features/boards/add-list-modal/add-list-modal.component.ts index e2da4cdcf1..ae91c074bf 100644 --- a/frontend/src/app/features/boards/add-list-modal/add-list-modal.component.ts +++ b/frontend/src/app/features/boards/add-list-modal/add-list-modal.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/add-card-dropdown/add-card-dropdown-menu.directive.ts b/frontend/src/app/features/boards/board/add-card-dropdown/add-card-dropdown-menu.directive.ts index f0e43d0932..ffcb1a066d 100644 --- a/frontend/src/app/features/boards/board/add-card-dropdown/add-card-dropdown-menu.directive.ts +++ b/frontend/src/app/features/boards/board/add-card-dropdown/add-card-dropdown-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/add-list-modal/add-list-modal.component.ts b/frontend/src/app/features/boards/board/add-list-modal/add-list-modal.component.ts index 571224dc99..937381bbb4 100644 --- a/frontend/src/app/features/boards/board/add-list-modal/add-list-modal.component.ts +++ b/frontend/src/app/features/boards/board/add-list-modal/add-list-modal.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-actions/assignee/assignee-board-header.component.ts b/frontend/src/app/features/boards/board/board-actions/assignee/assignee-board-header.component.ts index ea51b062f8..a8c79ca0f2 100644 --- a/frontend/src/app/features/boards/board/board-actions/assignee/assignee-board-header.component.ts +++ b/frontend/src/app/features/boards/board/board-actions/assignee/assignee-board-header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-actions/status/status-board-header.component.ts b/frontend/src/app/features/boards/board/board-actions/status/status-board-header.component.ts index 2f92b7f34c..7c03856d13 100644 --- a/frontend/src/app/features/boards/board/board-actions/status/status-board-header.component.ts +++ b/frontend/src/app/features/boards/board/board-actions/status/status-board-header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-actions/subproject/subproject-board-header.component.ts b/frontend/src/app/features/boards/board/board-actions/subproject/subproject-board-header.component.ts index c718939d20..0cfb365ead 100644 --- a/frontend/src/app/features/boards/board/board-actions/subproject/subproject-board-header.component.ts +++ b/frontend/src/app/features/boards/board/board-actions/subproject/subproject-board-header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-actions/subtasks/subtasks-board-header.component.ts b/frontend/src/app/features/boards/board/board-actions/subtasks/subtasks-board-header.component.ts index 2d6a89b012..02fa70095b 100644 --- a/frontend/src/app/features/boards/board/board-actions/subtasks/subtasks-board-header.component.ts +++ b/frontend/src/app/features/boards/board/board-actions/subtasks/subtasks-board-header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-actions/version/version-board-header.component.ts b/frontend/src/app/features/boards/board/board-actions/version/version-board-header.component.ts index 1192a2c078..ce73241aec 100644 --- a/frontend/src/app/features/boards/board/board-actions/version/version-board-header.component.ts +++ b/frontend/src/app/features/boards/board/board-actions/version/version-board-header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-list/board-inline-create.service.ts b/frontend/src/app/features/boards/board/board-list/board-inline-create.service.ts index 889fd2d6b3..3b9869a6fb 100644 --- a/frontend/src/app/features/boards/board/board-list/board-inline-create.service.ts +++ b/frontend/src/app/features/boards/board/board-list/board-inline-create.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/board-list/board-list-menu.component.ts b/frontend/src/app/features/boards/board/board-list/board-list-menu.component.ts index 3ff1f282b8..edb59e67e3 100644 --- a/frontend/src/app/features/boards/board/board-list/board-list-menu.component.ts +++ b/frontend/src/app/features/boards/board/board-list/board-list-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/inline-add/board-inline-add-autocompleter.component.ts b/frontend/src/app/features/boards/board/inline-add/board-inline-add-autocompleter.component.ts index ba3f4f4abc..179e0ed266 100644 --- a/frontend/src/app/features/boards/board/inline-add/board-inline-add-autocompleter.component.ts +++ b/frontend/src/app/features/boards/board/inline-add/board-inline-add-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/board/toolbar-menu/boards-toolbar-menu.directive.ts b/frontend/src/app/features/boards/board/toolbar-menu/boards-toolbar-menu.directive.ts index 7e02dd3918..b0e4ff9539 100644 --- a/frontend/src/app/features/boards/board/toolbar-menu/boards-toolbar-menu.directive.ts +++ b/frontend/src/app/features/boards/board/toolbar-menu/boards-toolbar-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/new-board-modal/new-board-modal.component.ts b/frontend/src/app/features/boards/new-board-modal/new-board-modal.component.ts index 71d53977e3..3000487343 100644 --- a/frontend/src/app/features/boards/new-board-modal/new-board-modal.component.ts +++ b/frontend/src/app/features/boards/new-board-modal/new-board-modal.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/openproject-boards.module.ts b/frontend/src/app/features/boards/openproject-boards.module.ts index 5bbe361b88..c529dc3738 100644 --- a/frontend/src/app/features/boards/openproject-boards.module.ts +++ b/frontend/src/app/features/boards/openproject-boards.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/boards/openproject-boards.routes.ts b/frontend/src/app/features/boards/openproject-boards.routes.ts index b9fb294a78..6555a11b28 100644 --- a/frontend/src/app/features/boards/openproject-boards.routes.ts +++ b/frontend/src/app/features/boards/openproject-boards.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/calendar/calendar.lazy-routes.ts b/frontend/src/app/features/calendar/calendar.lazy-routes.ts index 557e8862f0..dec9ba9280 100644 --- a/frontend/src/app/features/calendar/calendar.lazy-routes.ts +++ b/frontend/src/app/features/calendar/calendar.lazy-routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/calendar/calendar.routes.ts b/frontend/src/app/features/calendar/calendar.routes.ts index 5e53a8c7e5..07de93c10b 100644 --- a/frontend/src/app/features/calendar/calendar.routes.ts +++ b/frontend/src/app/features/calendar/calendar.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/calendar/openproject-calendar.module.ts b/frontend/src/app/features/calendar/openproject-calendar.module.ts index fbbc91bd39..5ab89645f0 100644 --- a/frontend/src/app/features/calendar/openproject-calendar.module.ts +++ b/frontend/src/app/features/calendar/openproject-calendar.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/calendar/wp-calendar-page/wp-calendar-page.component.ts b/frontend/src/app/features/calendar/wp-calendar-page/wp-calendar-page.component.ts index 3a81c544f2..2aac5fe7cc 100644 --- a/frontend/src/app/features/calendar/wp-calendar-page/wp-calendar-page.component.ts +++ b/frontend/src/app/features/calendar/wp-calendar-page/wp-calendar-page.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/dashboards/openproject-dashboards.module.ts b/frontend/src/app/features/dashboards/openproject-dashboards.module.ts index 65188edaef..bdc0ebb274 100644 --- a/frontend/src/app/features/dashboards/openproject-dashboards.module.ts +++ b/frontend/src/app/features/dashboards/openproject-dashboards.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-saved-trial.component.ts b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-saved-trial.component.ts index d2bf820fb2..91f71e09bd 100644 --- a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-saved-trial.component.ts +++ b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-saved-trial.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.base.ts b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.base.ts index 321d5d6099..5133a15fe9 100644 --- a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.base.ts +++ b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.base.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.component.ts b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.component.ts index 215017b293..60802805f5 100644 --- a/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.component.ts +++ b/frontend/src/app/features/enterprise/enterprise-active-trial/ee-active-trial.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-base.component.ts b/frontend/src/app/features/enterprise/enterprise-base.component.ts index 73f0490283..58fac8e02c 100644 --- a/frontend/src/app/features/enterprise/enterprise-base.component.ts +++ b/frontend/src/app/features/enterprise/enterprise-base.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.ts b/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.ts index 3d7a76aa20..32549ac389 100644 --- a/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.ts +++ b/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial.modal.ts b/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial.modal.ts index fae97a34cd..55d5c26524 100644 --- a/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial.modal.ts +++ b/frontend/src/app/features/enterprise/enterprise-modal/enterprise-trial.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/enterprise-trial-waiting/ee-trial-waiting.component.ts b/frontend/src/app/features/enterprise/enterprise-trial-waiting/ee-trial-waiting.component.ts index 397dd0ea40..7aec5cfa2e 100644 --- a/frontend/src/app/features/enterprise/enterprise-trial-waiting/ee-trial-waiting.component.ts +++ b/frontend/src/app/features/enterprise/enterprise-trial-waiting/ee-trial-waiting.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/free-trial-button/free-trial-button.component.ts b/frontend/src/app/features/enterprise/free-trial-button/free-trial-button.component.ts index 339f85f421..ed11bf5e52 100644 --- a/frontend/src/app/features/enterprise/free-trial-button/free-trial-button.component.ts +++ b/frontend/src/app/features/enterprise/free-trial-button/free-trial-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/enterprise/openproject-enterprise.module.ts b/frontend/src/app/features/enterprise/openproject-enterprise.module.ts index 6e88418225..d5d2fa0ec4 100644 --- a/frontend/src/app/features/enterprise/openproject-enterprise.module.ts +++ b/frontend/src/app/features/enterprise/openproject-enterprise.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/hal-link/hal-link.ts b/frontend/src/app/features/hal/hal-link/hal-link.ts index 48aebc079f..72aaeeb58d 100644 --- a/frontend/src/app/features/hal/hal-link/hal-link.ts +++ b/frontend/src/app/features/hal/hal-link/hal-link.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/helpers/lazy-accessor.spec.ts b/frontend/src/app/features/hal/helpers/lazy-accessor.spec.ts index 43a89d21bb..25ed0687dd 100644 --- a/frontend/src/app/features/hal/helpers/lazy-accessor.spec.ts +++ b/frontend/src/app/features/hal/helpers/lazy-accessor.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/helpers/lazy-accessor.ts b/frontend/src/app/features/hal/helpers/lazy-accessor.ts index d67d53fad5..cf87f0ab8d 100644 --- a/frontend/src/app/features/hal/helpers/lazy-accessor.ts +++ b/frontend/src/app/features/hal/helpers/lazy-accessor.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/openproject-hal.module.ts b/frontend/src/app/features/hal/openproject-hal.module.ts index 070b1c5156..9198b6c566 100644 --- a/frontend/src/app/features/hal/openproject-hal.module.ts +++ b/frontend/src/app/features/hal/openproject-hal.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/attachment-collection-resource.ts b/frontend/src/app/features/hal/resources/attachment-collection-resource.ts index 67362f383f..607ba5b1ab 100644 --- a/frontend/src/app/features/hal/resources/attachment-collection-resource.ts +++ b/frontend/src/app/features/hal/resources/attachment-collection-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/capability-resource.ts b/frontend/src/app/features/hal/resources/capability-resource.ts index 394091ef41..5b25c9e41d 100644 --- a/frontend/src/app/features/hal/resources/capability-resource.ts +++ b/frontend/src/app/features/hal/resources/capability-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/collection-resource.ts b/frontend/src/app/features/hal/resources/collection-resource.ts index 67bacaf672..5b5cd7cd95 100644 --- a/frontend/src/app/features/hal/resources/collection-resource.ts +++ b/frontend/src/app/features/hal/resources/collection-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/configuration-resource.ts b/frontend/src/app/features/hal/resources/configuration-resource.ts index 1ede7b45c9..35b27cd5be 100644 --- a/frontend/src/app/features/hal/resources/configuration-resource.ts +++ b/frontend/src/app/features/hal/resources/configuration-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/custom-action-resource.ts b/frontend/src/app/features/hal/resources/custom-action-resource.ts index 435bab287d..cc491e1898 100644 --- a/frontend/src/app/features/hal/resources/custom-action-resource.ts +++ b/frontend/src/app/features/hal/resources/custom-action-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/error-resource.ts b/frontend/src/app/features/hal/resources/error-resource.ts index d7f9f475c1..a69732c7b1 100644 --- a/frontend/src/app/features/hal/resources/error-resource.ts +++ b/frontend/src/app/features/hal/resources/error-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/form-resource.ts b/frontend/src/app/features/hal/resources/form-resource.ts index 0795530816..77d1a4fc8a 100644 --- a/frontend/src/app/features/hal/resources/form-resource.ts +++ b/frontend/src/app/features/hal/resources/form-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/grid-resource.ts b/frontend/src/app/features/hal/resources/grid-resource.ts index b06e4dc5e4..b6eaa124cd 100644 --- a/frontend/src/app/features/hal/resources/grid-resource.ts +++ b/frontend/src/app/features/hal/resources/grid-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/grid-widget-resource.ts b/frontend/src/app/features/hal/resources/grid-widget-resource.ts index 15e9b21149..4639a4acb4 100644 --- a/frontend/src/app/features/hal/resources/grid-widget-resource.ts +++ b/frontend/src/app/features/hal/resources/grid-widget-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/group-resource.ts b/frontend/src/app/features/hal/resources/group-resource.ts index 63809a142c..685949e270 100644 --- a/frontend/src/app/features/hal/resources/group-resource.ts +++ b/frontend/src/app/features/hal/resources/group-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/hal-resource.spec.ts b/frontend/src/app/features/hal/resources/hal-resource.spec.ts index 8911815f60..e8f192c72a 100644 --- a/frontend/src/app/features/hal/resources/hal-resource.spec.ts +++ b/frontend/src/app/features/hal/resources/hal-resource.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/hal-resource.ts b/frontend/src/app/features/hal/resources/hal-resource.ts index dab7059830..f638084784 100644 --- a/frontend/src/app/features/hal/resources/hal-resource.ts +++ b/frontend/src/app/features/hal/resources/hal-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/help-text-resource.ts b/frontend/src/app/features/hal/resources/help-text-resource.ts index a2d5e548d9..09e1049632 100644 --- a/frontend/src/app/features/hal/resources/help-text-resource.ts +++ b/frontend/src/app/features/hal/resources/help-text-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/meeting-content-resource.ts b/frontend/src/app/features/hal/resources/meeting-content-resource.ts index 537244cc79..768cc8df4d 100644 --- a/frontend/src/app/features/hal/resources/meeting-content-resource.ts +++ b/frontend/src/app/features/hal/resources/meeting-content-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/membership-resource.ts b/frontend/src/app/features/hal/resources/membership-resource.ts index b368786cce..6a7b711427 100644 --- a/frontend/src/app/features/hal/resources/membership-resource.ts +++ b/frontend/src/app/features/hal/resources/membership-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/mixins/attachable-mixin.ts b/frontend/src/app/features/hal/resources/mixins/attachable-mixin.ts index 0b358bf36b..0ad2bdeda9 100644 --- a/frontend/src/app/features/hal/resources/mixins/attachable-mixin.ts +++ b/frontend/src/app/features/hal/resources/mixins/attachable-mixin.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/news-resource.ts b/frontend/src/app/features/hal/resources/news-resource.ts index 3c19db776b..e7f778a929 100644 --- a/frontend/src/app/features/hal/resources/news-resource.ts +++ b/frontend/src/app/features/hal/resources/news-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/placeholder-user-resource.ts b/frontend/src/app/features/hal/resources/placeholder-user-resource.ts index 8c96f36f88..ba7bdc01a2 100644 --- a/frontend/src/app/features/hal/resources/placeholder-user-resource.ts +++ b/frontend/src/app/features/hal/resources/placeholder-user-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/post-resource.ts b/frontend/src/app/features/hal/resources/post-resource.ts index fe59423592..55dbcaace5 100644 --- a/frontend/src/app/features/hal/resources/post-resource.ts +++ b/frontend/src/app/features/hal/resources/post-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/project-resource.ts b/frontend/src/app/features/hal/resources/project-resource.ts index d395984369..2445e6a37c 100644 --- a/frontend/src/app/features/hal/resources/project-resource.ts +++ b/frontend/src/app/features/hal/resources/project-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-filter-instance-resource.ts b/frontend/src/app/features/hal/resources/query-filter-instance-resource.ts index 2093ac1067..bf230d9755 100644 --- a/frontend/src/app/features/hal/resources/query-filter-instance-resource.ts +++ b/frontend/src/app/features/hal/resources/query-filter-instance-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-filter-instance-schema-resource.ts b/frontend/src/app/features/hal/resources/query-filter-instance-schema-resource.ts index 0de0c6fec7..e9a0663b2a 100644 --- a/frontend/src/app/features/hal/resources/query-filter-instance-schema-resource.ts +++ b/frontend/src/app/features/hal/resources/query-filter-instance-schema-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-filter-resource.ts b/frontend/src/app/features/hal/resources/query-filter-resource.ts index b04592b98e..52d6adaca5 100644 --- a/frontend/src/app/features/hal/resources/query-filter-resource.ts +++ b/frontend/src/app/features/hal/resources/query-filter-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-form-resource.ts b/frontend/src/app/features/hal/resources/query-form-resource.ts index 14fae4816b..0a214a534b 100644 --- a/frontend/src/app/features/hal/resources/query-form-resource.ts +++ b/frontend/src/app/features/hal/resources/query-form-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-group-by-resource.ts b/frontend/src/app/features/hal/resources/query-group-by-resource.ts index 6f0d98b24d..9e89b7b579 100644 --- a/frontend/src/app/features/hal/resources/query-group-by-resource.ts +++ b/frontend/src/app/features/hal/resources/query-group-by-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-operator-resource.ts b/frontend/src/app/features/hal/resources/query-operator-resource.ts index 7d2d11cedb..2cb1091aaa 100644 --- a/frontend/src/app/features/hal/resources/query-operator-resource.ts +++ b/frontend/src/app/features/hal/resources/query-operator-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-resource.ts b/frontend/src/app/features/hal/resources/query-resource.ts index 52049d740f..fdd7a55389 100644 --- a/frontend/src/app/features/hal/resources/query-resource.ts +++ b/frontend/src/app/features/hal/resources/query-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-schema-resource.ts b/frontend/src/app/features/hal/resources/query-schema-resource.ts index 95aca95472..ce6afb1bce 100644 --- a/frontend/src/app/features/hal/resources/query-schema-resource.ts +++ b/frontend/src/app/features/hal/resources/query-schema-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/query-sort-by-resource.ts b/frontend/src/app/features/hal/resources/query-sort-by-resource.ts index 9e2cdcd078..fa6f910a38 100644 --- a/frontend/src/app/features/hal/resources/query-sort-by-resource.ts +++ b/frontend/src/app/features/hal/resources/query-sort-by-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/relation-resource.ts b/frontend/src/app/features/hal/resources/relation-resource.ts index 5e08ddcb4f..9b96e185a0 100644 --- a/frontend/src/app/features/hal/resources/relation-resource.ts +++ b/frontend/src/app/features/hal/resources/relation-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/role-resource.ts b/frontend/src/app/features/hal/resources/role-resource.ts index 8b57732e34..1ba5afe91f 100644 --- a/frontend/src/app/features/hal/resources/role-resource.ts +++ b/frontend/src/app/features/hal/resources/role-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/root-resource.ts b/frontend/src/app/features/hal/resources/root-resource.ts index 9403ca5142..c47ec64873 100644 --- a/frontend/src/app/features/hal/resources/root-resource.ts +++ b/frontend/src/app/features/hal/resources/root-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/schema-dependency-resource.ts b/frontend/src/app/features/hal/resources/schema-dependency-resource.ts index 2b92d511d0..3d3241485e 100644 --- a/frontend/src/app/features/hal/resources/schema-dependency-resource.ts +++ b/frontend/src/app/features/hal/resources/schema-dependency-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/schema-resource.ts b/frontend/src/app/features/hal/resources/schema-resource.ts index 5d026b1b41..ac1e99bc31 100644 --- a/frontend/src/app/features/hal/resources/schema-resource.ts +++ b/frontend/src/app/features/hal/resources/schema-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/status-resource.ts b/frontend/src/app/features/hal/resources/status-resource.ts index db03a8b922..dc4fd33ed5 100644 --- a/frontend/src/app/features/hal/resources/status-resource.ts +++ b/frontend/src/app/features/hal/resources/status-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/time-entry-resource.ts b/frontend/src/app/features/hal/resources/time-entry-resource.ts index bdeab56574..eff332e41b 100644 --- a/frontend/src/app/features/hal/resources/time-entry-resource.ts +++ b/frontend/src/app/features/hal/resources/time-entry-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/type-resource.ts b/frontend/src/app/features/hal/resources/type-resource.ts index 7c53763431..e0fb15d1cf 100644 --- a/frontend/src/app/features/hal/resources/type-resource.ts +++ b/frontend/src/app/features/hal/resources/type-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/user-resource.ts b/frontend/src/app/features/hal/resources/user-resource.ts index 43ece8e4e2..f22e999b57 100644 --- a/frontend/src/app/features/hal/resources/user-resource.ts +++ b/frontend/src/app/features/hal/resources/user-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/version-resource.ts b/frontend/src/app/features/hal/resources/version-resource.ts index ddbf511304..b426e01519 100644 --- a/frontend/src/app/features/hal/resources/version-resource.ts +++ b/frontend/src/app/features/hal/resources/version-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/wiki-page-resource.ts b/frontend/src/app/features/hal/resources/wiki-page-resource.ts index 7655cbc5dd..fc7f31ff25 100644 --- a/frontend/src/app/features/hal/resources/wiki-page-resource.ts +++ b/frontend/src/app/features/hal/resources/wiki-page-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/work-package-resource.spec.ts b/frontend/src/app/features/hal/resources/work-package-resource.spec.ts index 2e445b3b0d..abbfec081f 100644 --- a/frontend/src/app/features/hal/resources/work-package-resource.spec.ts +++ b/frontend/src/app/features/hal/resources/work-package-resource.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/work-package-resource.ts b/frontend/src/app/features/hal/resources/work-package-resource.ts index 2087c75d34..ff3972d3aa 100644 --- a/frontend/src/app/features/hal/resources/work-package-resource.ts +++ b/frontend/src/app/features/hal/resources/work-package-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/resources/wp-collection-resource.ts b/frontend/src/app/features/hal/resources/wp-collection-resource.ts index b1ae56d47c..1f2ea13073 100644 --- a/frontend/src/app/features/hal/resources/wp-collection-resource.ts +++ b/frontend/src/app/features/hal/resources/wp-collection-resource.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/schemas/hal-payload.helper.ts b/frontend/src/app/features/hal/schemas/hal-payload.helper.ts index 6453e2f3a0..48217136da 100644 --- a/frontend/src/app/features/hal/schemas/hal-payload.helper.ts +++ b/frontend/src/app/features/hal/schemas/hal-payload.helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/schemas/schema-proxy.ts b/frontend/src/app/features/hal/schemas/schema-proxy.ts index a06a0740d3..0a74abaedb 100644 --- a/frontend/src/app/features/hal/schemas/schema-proxy.ts +++ b/frontend/src/app/features/hal/schemas/schema-proxy.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/schemas/work-package-schema-proxy.ts b/frontend/src/app/features/hal/schemas/work-package-schema-proxy.ts index f72048c82f..a2956396e0 100644 --- a/frontend/src/app/features/hal/schemas/work-package-schema-proxy.ts +++ b/frontend/src/app/features/hal/schemas/work-package-schema-proxy.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/services/hal-resource-notification.service.ts b/frontend/src/app/features/hal/services/hal-resource-notification.service.ts index d0de798688..e8229bf64c 100644 --- a/frontend/src/app/features/hal/services/hal-resource-notification.service.ts +++ b/frontend/src/app/features/hal/services/hal-resource-notification.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/services/hal-resource-sorting.service.ts b/frontend/src/app/features/hal/services/hal-resource-sorting.service.ts index 030503560c..6d361a54da 100644 --- a/frontend/src/app/features/hal/services/hal-resource-sorting.service.ts +++ b/frontend/src/app/features/hal/services/hal-resource-sorting.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/services/hal-resource.config.ts b/frontend/src/app/features/hal/services/hal-resource.config.ts index 10e92f9419..2f2225465a 100644 --- a/frontend/src/app/features/hal/services/hal-resource.config.ts +++ b/frontend/src/app/features/hal/services/hal-resource.config.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/services/hal-resource.service.ts b/frontend/src/app/features/hal/services/hal-resource.service.ts index 07bf4a1726..c49259b275 100644 --- a/frontend/src/app/features/hal/services/hal-resource.service.ts +++ b/frontend/src/app/features/hal/services/hal-resource.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/hal/services/url-params-encoder.ts b/frontend/src/app/features/hal/services/url-params-encoder.ts index b0869ce972..efe48447db 100644 --- a/frontend/src/app/features/hal/services/url-params-encoder.ts +++ b/frontend/src/app/features/hal/services/url-params-encoder.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/homescreen/blocks/new-features.component.spec.ts b/frontend/src/app/features/homescreen/blocks/new-features.component.spec.ts index b664804f55..7e109cceed 100644 --- a/frontend/src/app/features/homescreen/blocks/new-features.component.spec.ts +++ b/frontend/src/app/features/homescreen/blocks/new-features.component.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/homescreen/blocks/new-features.component.ts b/frontend/src/app/features/homescreen/blocks/new-features.component.ts index 178d54faff..056340d7a9 100644 --- a/frontend/src/app/features/homescreen/blocks/new-features.component.ts +++ b/frontend/src/app/features/homescreen/blocks/new-features.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/in-app-notifications/center/empty-state/empty-state.component.ts b/frontend/src/app/features/in-app-notifications/center/empty-state/empty-state.component.ts index c4464f492d..56093b0827 100644 --- a/frontend/src/app/features/in-app-notifications/center/empty-state/empty-state.component.ts +++ b/frontend/src/app/features/in-app-notifications/center/empty-state/empty-state.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/in-app-notifications/center/menu/menu.component.ts b/frontend/src/app/features/in-app-notifications/center/menu/menu.component.ts index 391020640b..435224b6d7 100644 --- a/frontend/src/app/features/in-app-notifications/center/menu/menu.component.ts +++ b/frontend/src/app/features/in-app-notifications/center/menu/menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/in-app-notifications/in-app-notifications.lazy-routes.ts b/frontend/src/app/features/in-app-notifications/in-app-notifications.lazy-routes.ts index 7ce9cded8c..2462a87d83 100644 --- a/frontend/src/app/features/in-app-notifications/in-app-notifications.lazy-routes.ts +++ b/frontend/src/app/features/in-app-notifications/in-app-notifications.lazy-routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/in-app-notifications/in-app-notifications.routes.ts b/frontend/src/app/features/in-app-notifications/in-app-notifications.routes.ts index e5a869595a..aa05a40066 100644 --- a/frontend/src/app/features/in-app-notifications/in-app-notifications.routes.ts +++ b/frontend/src/app/features/in-app-notifications/in-app-notifications.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/invite-user-modal/invite-user-modal-augment.service.ts b/frontend/src/app/features/invite-user-modal/invite-user-modal-augment.service.ts index 8068293ad0..219a0ca4d6 100644 --- a/frontend/src/app/features/invite-user-modal/invite-user-modal-augment.service.ts +++ b/frontend/src/app/features/invite-user-modal/invite-user-modal-augment.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/invite-user-modal/invite-user-modal.service.ts b/frontend/src/app/features/invite-user-modal/invite-user-modal.service.ts index 332603d1b8..d454838610 100644 --- a/frontend/src/app/features/invite-user-modal/invite-user-modal.service.ts +++ b/frontend/src/app/features/invite-user-modal/invite-user-modal.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/job-status/openproject-job-status.module.ts b/frontend/src/app/features/job-status/openproject-job-status.module.ts index 0642d183b5..9a7651309f 100644 --- a/frontend/src/app/features/job-status/openproject-job-status.module.ts +++ b/frontend/src/app/features/job-status/openproject-job-status.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/my-page/openproject-my-page.module.ts b/frontend/src/app/features/my-page/openproject-my-page.module.ts index 3f1bad2802..9146deee40 100644 --- a/frontend/src/app/features/my-page/openproject-my-page.module.ts +++ b/frontend/src/app/features/my-page/openproject-my-page.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/overview/openproject-overview.module.ts b/frontend/src/app/features/overview/openproject-overview.module.ts index 3600c0befa..c8ce3a0cf4 100644 --- a/frontend/src/app/features/overview/openproject-overview.module.ts +++ b/frontend/src/app/features/overview/openproject-overview.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/plugins/hook-service.spec.ts b/frontend/src/app/features/plugins/hook-service.spec.ts index 6bcc8c68d2..8caed0fe73 100644 --- a/frontend/src/app/features/plugins/hook-service.spec.ts +++ b/frontend/src/app/features/plugins/hook-service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/plugins/hook-service.ts b/frontend/src/app/features/plugins/hook-service.ts index 883bd36c88..f6003d0fc8 100644 --- a/frontend/src/app/features/plugins/hook-service.ts +++ b/frontend/src/app/features/plugins/hook-service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/plugins/openproject-plugins.module.ts b/frontend/src/app/features/plugins/openproject-plugins.module.ts index 38d4285eba..225059b485 100644 --- a/frontend/src/app/features/plugins/openproject-plugins.module.ts +++ b/frontend/src/app/features/plugins/openproject-plugins.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/projects/openproject-projects.module.ts b/frontend/src/app/features/projects/openproject-projects.module.ts index ad57e6a685..c9c9aff333 100644 --- a/frontend/src/app/features/projects/openproject-projects.module.ts +++ b/frontend/src/app/features/projects/openproject-projects.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/openproject-reporting.module.ts b/frontend/src/app/features/reporting/openproject-reporting.module.ts index f36b4cdad8..29a380aaad 100644 --- a/frontend/src/app/features/reporting/openproject-reporting.module.ts +++ b/frontend/src/app/features/reporting/openproject-reporting.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/openproject-reporting.routes.ts b/frontend/src/app/features/reporting/openproject-reporting.routes.ts index 644bc0e3e0..2a2a677e45 100644 --- a/frontend/src/app/features/reporting/openproject-reporting.routes.ts +++ b/frontend/src/app/features/reporting/openproject-reporting.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine.js b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine.js index c1891ba339..388f478a56 100644 --- a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine.js +++ b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/controls.js b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/controls.js index bb1acf4db7..9da62f1bcd 100644 --- a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/controls.js +++ b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/controls.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/filters.js b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/filters.js index 39ff231cbf..6ec539db49 100644 --- a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/filters.js +++ b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/filters.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/group_bys.js b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/group_bys.js index e1e092527b..35c9efb718 100644 --- a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/group_bys.js +++ b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/group_bys.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/restore_query.js b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/restore_query.js index f735090ca0..ab9c1c1417 100644 --- a/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/restore_query.js +++ b/frontend/src/app/features/reporting/reporting-page/functionality/reporting_engine/restore_query.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/team-planner/team-planner/assignee/add-assignee.component.ts b/frontend/src/app/features/team-planner/team-planner/assignee/add-assignee.component.ts index 7d8197c2f7..656782218d 100644 --- a/frontend/src/app/features/team-planner/team-planner/assignee/add-assignee.component.ts +++ b/frontend/src/app/features/team-planner/team-planner/assignee/add-assignee.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/team-planner/team-planner/team-planner.lazy-routes.ts b/frontend/src/app/features/team-planner/team-planner/team-planner.lazy-routes.ts index 348054b1d1..12e28088fc 100644 --- a/frontend/src/app/features/team-planner/team-planner/team-planner.lazy-routes.ts +++ b/frontend/src/app/features/team-planner/team-planner/team-planner.lazy-routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/team-planner/team-planner/team-planner.routes.ts b/frontend/src/app/features/team-planner/team-planner/team-planner.routes.ts index e91bbf147a..4d16950a51 100644 --- a/frontend/src/app/features/team-planner/team-planner/team-planner.routes.ts +++ b/frontend/src/app/features/team-planner/team-planner/team-planner.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/user-preferences/state/user-preferences.store.ts b/frontend/src/app/features/user-preferences/state/user-preferences.store.ts index 239b76253c..23e0e37397 100644 --- a/frontend/src/app/features/user-preferences/state/user-preferences.store.ts +++ b/frontend/src/app/features/user-preferences/state/user-preferences.store.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/user-preferences/user-preferences.lazy-routes.ts b/frontend/src/app/features/user-preferences/user-preferences.lazy-routes.ts index e1c91c24ed..544ac637de 100644 --- a/frontend/src/app/features/user-preferences/user-preferences.lazy-routes.ts +++ b/frontend/src/app/features/user-preferences/user-preferences.lazy-routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/user-preferences/user-preferences.routes.ts b/frontend/src/app/features/user-preferences/user-preferences.routes.ts index f717d7e714..3cfdc06e73 100644 --- a/frontend/src/app/features/user-preferences/user-preferences.routes.ts +++ b/frontend/src/app/features/user-preferences/user-preferences.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/back-routing/back-button.component.ts b/frontend/src/app/features/work-packages/components/back-routing/back-button.component.ts index 682f0d84c5..78ce757f07 100644 --- a/frontend/src/app/features/work-packages/components/back-routing/back-button.component.ts +++ b/frontend/src/app/features/work-packages/components/back-routing/back-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/back-routing/back-routing.service.ts b/frontend/src/app/features/work-packages/components/back-routing/back-routing.service.ts index 4d8132658a..032811424a 100644 --- a/frontend/src/app/features/work-packages/components/back-routing/back-routing.service.ts +++ b/frontend/src/app/features/work-packages/components/back-routing/back-routing.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/edit-actions-bar/wp-edit-actions-bar.component.ts b/frontend/src/app/features/work-packages/components/edit-actions-bar/wp-edit-actions-bar.component.ts index f63b658031..b0081e8157 100644 --- a/frontend/src/app/features/work-packages/components/edit-actions-bar/wp-edit-actions-bar.component.ts +++ b/frontend/src/app/features/work-packages/components/edit-actions-bar/wp-edit-actions-bar.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/abstract-filter-date-time-value/abstract-filter-date-time-value.controller.ts b/frontend/src/app/features/work-packages/components/filters/abstract-filter-date-time-value/abstract-filter-date-time-value.controller.ts index 8e93cceaf2..16aad74542 100644 --- a/frontend/src/app/features/work-packages/components/filters/abstract-filter-date-time-value/abstract-filter-date-time-value.controller.ts +++ b/frontend/src/app/features/work-packages/components/filters/abstract-filter-date-time-value/abstract-filter-date-time-value.controller.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-boolean-value/filter-boolean-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-boolean-value/filter-boolean-value.component.ts index 217f207bb1..4c79fcbb9b 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-boolean-value/filter-boolean-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-boolean-value/filter-boolean-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-container/filter-container.directive.ts b/frontend/src/app/features/work-packages/components/filters/filter-container/filter-container.directive.ts index 4db3bf220b..8f203e6d72 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-container/filter-container.directive.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-container/filter-container.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-date-time-value/filter-date-time-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-date-time-value/filter-date-time-value.component.ts index 2bd8e0b9b6..6897478b5e 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-date-time-value/filter-date-time-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-date-time-value/filter-date-time-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-date-times-value/filter-date-times-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-date-times-value/filter-date-times-value.component.ts index 03b7b1887e..6fdd00ee72 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-date-times-value/filter-date-times-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-date-times-value/filter-date-times-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-date-value/filter-date-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-date-value/filter-date-value.component.ts index ebd583b14c..010d07750c 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-date-value/filter-date-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-date-value/filter-date-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-dates-value/filter-dates-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-dates-value/filter-dates-value.component.ts index 5236f93832..8ef502ba22 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-dates-value/filter-dates-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-dates-value/filter-dates-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-integer-value/filter-integer-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-integer-value/filter-integer-value.component.ts index 72e5262efe..23fb9d426e 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-integer-value/filter-integer-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-integer-value/filter-integer-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-string-value/filter-string-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-string-value/filter-string-value.component.ts index a9d3fd014e..8c523ed5cf 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-string-value/filter-string-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-string-value/filter-string-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/filter-toggled-multiselect-value/filter-toggled-multiselect-value.component.ts b/frontend/src/app/features/work-packages/components/filters/filter-toggled-multiselect-value/filter-toggled-multiselect-value.component.ts index a48dbaba95..8f467c0dcc 100644 --- a/frontend/src/app/features/work-packages/components/filters/filter-toggled-multiselect-value/filter-toggled-multiselect-value.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/filter-toggled-multiselect-value/filter-toggled-multiselect-value.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/query-filter/query-filter.component.ts b/frontend/src/app/features/work-packages/components/filters/query-filter/query-filter.component.ts index bdbc7ac9d4..4068045ed2 100644 --- a/frontend/src/app/features/work-packages/components/filters/query-filter/query-filter.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/query-filter/query-filter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/query-filters/query-filters.component.ts b/frontend/src/app/features/work-packages/components/filters/query-filters/query-filters.component.ts index 5d60ba64ef..73e95ae817 100644 --- a/frontend/src/app/features/work-packages/components/filters/query-filters/query-filters.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/query-filters/query-filters.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/quick-filter-by-text-input/quick-filter-by-text-input.component.ts b/frontend/src/app/features/work-packages/components/filters/quick-filter-by-text-input/quick-filter-by-text-input.component.ts index 21319a215c..a37bc28537 100644 --- a/frontend/src/app/features/work-packages/components/filters/quick-filter-by-text-input/quick-filter-by-text-input.component.ts +++ b/frontend/src/app/features/work-packages/components/filters/quick-filter-by-text-input/quick-filter-by-text-input.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/filters/wp-filters/wp-filters.service.ts b/frontend/src/app/features/work-packages/components/filters/wp-filters/wp-filters.service.ts index 91de5b31e0..ac76f8297a 100644 --- a/frontend/src/app/features/work-packages/components/filters/wp-filters/wp-filters.service.ts +++ b/frontend/src/app/features/work-packages/components/filters/wp-filters/wp-filters.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/work-package-comment/work-package-comment.component.ts b/frontend/src/app/features/work-packages/components/work-package-comment/work-package-comment.component.ts index 938201e247..ce9c50d721 100644 --- a/frontend/src/app/features/work-packages/components/work-package-comment/work-package-comment.component.ts +++ b/frontend/src/app/features/work-packages/components/work-package-comment/work-package-comment.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/work-package-comment/wp-comment-field.component.ts b/frontend/src/app/features/work-packages/components/work-package-comment/wp-comment-field.component.ts index 9874fbfab4..ef764140a0 100644 --- a/frontend/src/app/features/work-packages/components/work-package-comment/wp-comment-field.component.ts +++ b/frontend/src/app/features/work-packages/components/work-package-comment/wp-comment-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-activity/activity-entry.component.ts b/frontend/src/app/features/work-packages/components/wp-activity/activity-entry.component.ts index 9955f7fea2..ee0107b4ab 100644 --- a/frontend/src/app/features/work-packages/components/wp-activity/activity-entry.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-activity/activity-entry.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-activity/comment-service.ts b/frontend/src/app/features/work-packages/components/wp-activity/comment-service.ts index e9ccc0de62..2fee81ad41 100644 --- a/frontend/src/app/features/work-packages/components/wp-activity/comment-service.ts +++ b/frontend/src/app/features/work-packages/components/wp-activity/comment-service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-activity/revision/revision-activity.component.ts b/frontend/src/app/features/work-packages/components/wp-activity/revision/revision-activity.component.ts index 9fd3700b48..6a39ccea8b 100644 --- a/frontend/src/app/features/work-packages/components/wp-activity/revision/revision-activity.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-activity/revision/revision-activity.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-activity/user/user-activity.component.ts b/frontend/src/app/features/work-packages/components/wp-activity/user/user-activity.component.ts index bb33bd1f42..8538970fb3 100644 --- a/frontend/src/app/features/work-packages/components/wp-activity/user/user-activity.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-activity/user/user-activity.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb-parent.component.ts b/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb-parent.component.ts index 81c27097b8..8264bcdb9e 100644 --- a/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb-parent.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb-parent.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb.component.ts b/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb.component.ts index 61f8c21d9c..b2a5eeea35 100644 --- a/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-breadcrumb/wp-breadcrumb.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-buttons.module.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-buttons.module.ts index c452199c8e..1aa3d9e75f 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-buttons.module.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-buttons.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-create-button/wp-create-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-create-button/wp-create-button.component.ts index 8945138bc8..0d8ec7742c 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-create-button/wp-create-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-create-button/wp-create-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-details-view-button/wp-details-view-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-details-view-button/wp-details-view-button.component.ts index f9a6eb86d3..41cfdd6311 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-details-view-button/wp-details-view-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-details-view-button/wp-details-view-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-filter-button/wp-filter-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-filter-button/wp-filter-button.component.ts index 915d43b160..f7f74c5a8e 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-filter-button/wp-filter-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-filter-button/wp-filter-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-fold-toggle-button/wp-fold-toggle-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-fold-toggle-button/wp-fold-toggle-button.component.ts index 696cf82355..cfd73d780a 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-fold-toggle-button/wp-fold-toggle-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-fold-toggle-button/wp-fold-toggle-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-settings-button/wp-settings-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-settings-button/wp-settings-button.component.ts index 588ef50607..ae2ad06970 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-settings-button/wp-settings-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-settings-button/wp-settings-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-status-button/wp-status-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-status-button/wp-status-button.component.ts index a8ccdaf544..9fb2e4b2ce 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-status-button/wp-status-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-status-button/wp-status-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-timeline-toggle-button/wp-timeline-toggle-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-timeline-toggle-button/wp-timeline-toggle-button.component.ts index c4a38bf15b..bd5a36756b 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-timeline-toggle-button/wp-timeline-toggle-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-timeline-toggle-button/wp-timeline-toggle-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/wp-view-toggle-button/work-package-view-toggle-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/wp-view-toggle-button/work-package-view-toggle-button.component.ts index f0bead6aa4..9e48a4b362 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/wp-view-toggle-button/work-package-view-toggle-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/wp-view-toggle-button/work-package-view-toggle-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-buttons/zen-mode-toggle-button/zen-mode-toggle-button.component.ts b/frontend/src/app/features/work-packages/components/wp-buttons/zen-mode-toggle-button/zen-mode-toggle-button.component.ts index 552a362a82..bbe6e7581d 100644 --- a/frontend/src/app/features/work-packages/components/wp-buttons/zen-mode-toggle-button/zen-mode-toggle-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-buttons/zen-mode-toggle-button/zen-mode-toggle-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-full-view.component.ts b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-full-view.component.ts index a8de2b1f0a..82d082d104 100644 --- a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-full-view.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-full-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-split-view.component.ts b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-split-view.component.ts index 6e16a2a78a..57a7b54951 100644 --- a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-split-view.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy-split-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy.controller.ts b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy.controller.ts index 18c8953cbe..aa6a519966 100644 --- a/frontend/src/app/features/work-packages/components/wp-copy/wp-copy.controller.ts +++ b/frontend/src/app/features/work-packages/components/wp-copy/wp-copy.controller.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-custom-actions/date-action/custom-date-action-admin.component.ts b/frontend/src/app/features/work-packages/components/wp-custom-actions/date-action/custom-date-action-admin.component.ts index 1bce816693..d908c9e2ce 100644 --- a/frontend/src/app/features/work-packages/components/wp-custom-actions/date-action/custom-date-action-admin.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-custom-actions/date-action/custom-date-action-admin.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions.component.ts b/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions.component.ts index c948d1104b..9bea0bd9f0 100644 --- a/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions/wp-custom-action.component.ts b/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions/wp-custom-action.component.ts index 389cf2a042..3161cdab5c 100644 --- a/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions/wp-custom-action.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-custom-actions/wp-custom-actions/wp-custom-action.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-details/wp-details-toolbar.component.ts b/frontend/src/app/features/work-packages/components/wp-details/wp-details-toolbar.component.ts index f66e559c40..740c156c17 100644 --- a/frontend/src/app/features/work-packages/components/wp-details/wp-details-toolbar.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-details/wp-details-toolbar.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-edit-form/table-edit-form.ts b/frontend/src/app/features/work-packages/components/wp-edit-form/table-edit-form.ts index 3e52113b97..4429551757 100644 --- a/frontend/src/app/features/work-packages/components/wp-edit-form/table-edit-form.ts +++ b/frontend/src/app/features/work-packages/components/wp-edit-form/table-edit-form.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-edit-form/work-package-filter-values.spec.ts b/frontend/src/app/features/work-packages/components/wp-edit-form/work-package-filter-values.spec.ts index 23f5efd981..4058936b63 100644 --- a/frontend/src/app/features/work-packages/components/wp-edit-form/work-package-filter-values.spec.ts +++ b/frontend/src/app/features/work-packages/components/wp-edit-form/work-package-filter-values.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-edit/wp-edit-field/wp-replacement-label.component.ts b/frontend/src/app/features/work-packages/components/wp-edit/wp-edit-field/wp-replacement-label.component.ts index 3fbbae88a7..f3d8f0331a 100644 --- a/frontend/src/app/features/work-packages/components/wp-edit/wp-edit-field/wp-replacement-label.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-edit/wp-edit-field/wp-replacement-label.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-form-group/wp-attribute-group.component.ts b/frontend/src/app/features/work-packages/components/wp-form-group/wp-attribute-group.component.ts index 4b1c5e455f..93ecc36ad4 100644 --- a/frontend/src/app/features/work-packages/components/wp-form-group/wp-attribute-group.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-form-group/wp-attribute-group.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-grid/wp-grid.component.ts b/frontend/src/app/features/work-packages/components/wp-grid/wp-grid.component.ts index fce1bab203..a8837c2d7d 100644 --- a/frontend/src/app/features/work-packages/components/wp-grid/wp-grid.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-grid/wp-grid.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.component.ts b/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.component.ts index 90ec008685..818dc4fbd6 100644 --- a/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.service.ts b/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.service.ts index 5d23be1cf3..8aaccb3460 100644 --- a/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-inline-create/wp-inline-create.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-list/wp-list-checksum.service.ts b/frontend/src/app/features/work-packages/components/wp-list/wp-list-checksum.service.ts index e609aee3e8..af63d7ea9d 100644 --- a/frontend/src/app/features/work-packages/components/wp-list/wp-list-checksum.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-list/wp-list-checksum.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-list/wp-list-invalid-query.service.ts b/frontend/src/app/features/work-packages/components/wp-list/wp-list-invalid-query.service.ts index 871790d69b..98176851ec 100644 --- a/frontend/src/app/features/work-packages/components/wp-list/wp-list-invalid-query.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-list/wp-list-invalid-query.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-list/wp-list.service.ts b/frontend/src/app/features/work-packages/components/wp-list/wp-list.service.ts index 200d31e6c5..0cc62bdded 100644 --- a/frontend/src/app/features/work-packages/components/wp-list/wp-list.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-list/wp-list.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-new/wp-create.component.ts b/frontend/src/app/features/work-packages/components/wp-new/wp-create.component.ts index f15fbc0f9b..3c166dbb57 100644 --- a/frontend/src/app/features/work-packages/components/wp-new/wp-create.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-new/wp-create.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-new/wp-create.service.ts b/frontend/src/app/features/work-packages/components/wp-new/wp-create.service.ts index ed6f391cf7..61f3b046a6 100644 --- a/frontend/src/app/features/work-packages/components/wp-new/wp-create.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-new/wp-create.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-new/wp-new-full-view.component.ts b/frontend/src/app/features/work-packages/components/wp-new/wp-new-full-view.component.ts index d38a9c3a5e..fbc4060293 100644 --- a/frontend/src/app/features/work-packages/components/wp-new/wp-new-full-view.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-new/wp-new-full-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-new/wp-new-split-view.component.ts b/frontend/src/app/features/work-packages/components/wp-new/wp-new-split-view.component.ts index 9c3a16a8ea..17342d3903 100644 --- a/frontend/src/app/features/work-packages/components/wp-new/wp-new-split-view.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-new/wp-new-split-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-query/query-param-listener.service.ts b/frontend/src/app/features/work-packages/components/wp-query/query-param-listener.service.ts index 9fa136a9df..16660f1703 100644 --- a/frontend/src/app/features/work-packages/components/wp-query/query-param-listener.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-query/query-param-listener.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.spec.ts b/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.spec.ts index 27612c0aae..cb10952b5f 100644 --- a/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.spec.ts +++ b/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.ts b/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.ts index 3682a7e66e..51ceff4941 100644 --- a/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.ts +++ b/frontend/src/app/features/work-packages/components/wp-query/url-params-helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-inline-create.service.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-inline-create.service.ts index 0554088eca..de1a84b986 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-inline-create.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-inline-create.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-query.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-query.component.ts index a267b627bb..5eb404b9d4 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-query.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/children/wp-children-query.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/inline/add-existing/wp-relation-inline-add-existing.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/inline/add-existing/wp-relation-inline-add-existing.component.ts index 5f06b99088..23876806cb 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/inline/add-existing/wp-relation-inline-add-existing.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/inline/add-existing/wp-relation-inline-add-existing.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-inline-create.service.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-inline-create.service.ts index 5d3819959a..6b1fda9464 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-inline-create.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-inline-create.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-query.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-query.component.ts index 69ab42cd7c..a6882cbe12 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-query.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/relations/wp-relation-query.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-inline-create.service.interface.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-inline-create.service.interface.ts index d73cabace9..17796dbaf4 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-inline-create.service.interface.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-inline-create.service.interface.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-query.base.ts b/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-query.base.ts index c7eb1fa6c3..5f20e5d2ab 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-query.base.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/embedded/wp-relation-query.base.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-create/wp-relations-autocomplete/wp-relations-autocomplete.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-create/wp-relations-autocomplete/wp-relations-autocomplete.component.ts index 730808314b..5be2a55c7d 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-create/wp-relations-autocomplete/wp-relations-autocomplete.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-create/wp-relations-autocomplete/wp-relations-autocomplete.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-group/wp-relations-group.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-group/wp-relations-group.component.ts index 59ab96cb27..05cd7ae895 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-group/wp-relations-group.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-group/wp-relations-group.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.directive.ts b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.directive.ts index 8f1d1f6e53..6a27324296 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.service.ts b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.service.ts index 591ef5db5e..39378e7100 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations-hierarchy/wp-relations-hierarchy.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations.component.ts b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations.component.ts index 8abae17508..300d741253 100644 --- a/frontend/src/app/features/work-packages/components/wp-relations/wp-relations.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-relations/wp-relations.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-base.controller.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-base.controller.ts index 54fe742e10..61acc4832c 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-base.controller.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-base.controller.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-entry-info.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-entry-info.ts index a3dfbe3004..2786766b2e 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-entry-info.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-entry-info.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-on-overview.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-on-overview.component.ts index 24e11ffb29..bcc7ca371c 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-on-overview.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-on-overview.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-tab.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-tab.component.ts index 756a1ed18e..9bf8da6477 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-tab.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/activity-tab.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/wp-activity.service.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/wp-activity.service.ts index eb17b779e8..e6e5738f36 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/wp-activity.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/activity-panel/wp-activity.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.spec.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.spec.ts index bef7581c3b..1bb3ce4c67 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.spec.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.ts index 9790a97401..a34cf05195 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/keep-tab/keep-tab.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/overview-tab/overview-tab.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/overview-tab/overview-tab.component.ts index df4dead453..6e4bc23ddf 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/overview-tab/overview-tab.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/overview-tab/overview-tab.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/relations-tab/relations-tab.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/relations-tab/relations-tab.component.ts index 125fde88d4..80fb1bfb30 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/relations-tab/relations-tab.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/relations-tab/relations-tab.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/watchers-tab.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/watchers-tab.component.ts index 53829d54c5..1c20bae5a1 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/watchers-tab.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/watchers-tab.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watcher-entry.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watcher-entry.component.ts index d889bf09ec..71743e288d 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watcher-entry.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watcher-entry.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watchers.service.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watchers.service.ts index 9e9113d6b0..d76b2e6fbc 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watchers.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/watchers-tab/wp-watchers.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/wp-linked-resource-cache.service.ts b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/wp-linked-resource-cache.service.ts index 4f8d8734f8..d8fc7d8da5 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view-tabs/wp-linked-resource-cache.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view-tabs/wp-linked-resource-cache.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-single-view/wp-single-view.component.ts b/frontend/src/app/features/work-packages/components/wp-single-view/wp-single-view.component.ts index fb9baa5209..ab2b8ddb74 100644 --- a/frontend/src/app/features/work-packages/components/wp-single-view/wp-single-view.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-single-view/wp-single-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-subject/wp-subject.component.ts b/frontend/src/app/features/work-packages/components/wp-subject/wp-subject.component.ts index 37474bb81b..75b8df7607 100644 --- a/frontend/src/app/features/work-packages/components/wp-subject/wp-subject.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-subject/wp-subject.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/context-menu-helper/wp-context-menu-helper.service.ts b/frontend/src/app/features/work-packages/components/wp-table/context-menu-helper/wp-context-menu-helper.service.ts index ae052d1be7..24b19a44ed 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/context-menu-helper/wp-context-menu-helper.service.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/context-menu-helper/wp-context-menu-helper.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/embedded/embedded-tables-macro.component.ts b/frontend/src/app/features/work-packages/components/wp-table/embedded/embedded-tables-macro.component.ts index 87b79de792..b34ecb59da 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/embedded/embedded-tables-macro.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/embedded/embedded-tables-macro.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/sort-header/sort-header.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/sort-header/sort-header.directive.ts index 55ccdef782..71e40d98b1 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/sort-header/sort-header.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/sort-header/sort-header.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.spec.ts b/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.spec.ts index 83d994c345..5aae7bbefd 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.spec.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.ts b/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.ts index 6acb381430..08ab2aa600 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/table-pagination/wp-table-pagination.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell-mouse-handler.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell-mouse-handler.ts index 50785bf935..bea9d5a77e 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell-mouse-handler.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell-mouse-handler.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell.ts index af1b13f426..51633f6d2d 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cell.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cells-renderer.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cells-renderer.ts index a797930402..caf189621c 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cells-renderer.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/cells/wp-timeline-cells-renderer.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/container/wp-timeline-container.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/container/wp-timeline-container.directive.ts index d64d50ac0e..a8558695e8 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/container/wp-timeline-container.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/container/wp-timeline-container.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-relations.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-relations.directive.ts index 5847941d99..715ed7a3fb 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-relations.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-relations.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-static-elements.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-static-elements.directive.ts index 565e46cfd6..d9c0a835a2 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-static-elements.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline-static-elements.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline.today-line.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline.today-line.ts index dd692dbfb6..224dd42158 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline.today-line.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/global-elements/wp-timeline.today-line.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/grid/wp-timeline-grid.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/grid/wp-timeline-grid.directive.ts index d81d38b96c..ab5ca5192d 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/grid/wp-timeline-grid.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/grid/wp-timeline-grid.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/header/wp-timeline-header.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/header/wp-timeline-header.directive.ts index 75cdcf899c..675d866f19 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/header/wp-timeline-header.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/header/wp-timeline-header.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/timeline/wp-timeline.ts b/frontend/src/app/features/work-packages/components/wp-table/timeline/wp-timeline.ts index 37a8f41a86..a12ae1926d 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/timeline/wp-timeline.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/timeline/wp-timeline.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/wp-table-configuration.ts b/frontend/src/app/features/work-packages/components/wp-table/wp-table-configuration.ts index b3af09bc91..47154e5959 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/wp-table-configuration.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/wp-table-configuration.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/wp-table-hover-sync.ts b/frontend/src/app/features/work-packages/components/wp-table/wp-table-hover-sync.ts index 9e1428fe99..48acf0f414 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/wp-table-hover-sync.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/wp-table-hover-sync.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/wp-table-scroll-sync.ts b/frontend/src/app/features/work-packages/components/wp-table/wp-table-scroll-sync.ts index ad3a41f34c..e5f4e07070 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/wp-table-scroll-sync.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/wp-table-scroll-sync.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/wp-table-sums-row/wp-table-sums-row.directive.ts b/frontend/src/app/features/work-packages/components/wp-table/wp-table-sums-row/wp-table-sums-row.directive.ts index 686f968005..1575471d7c 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/wp-table-sums-row/wp-table-sums-row.directive.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/wp-table-sums-row/wp-table-sums-row.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-table/wp-table.component.ts b/frontend/src/app/features/work-packages/components/wp-table/wp-table.component.ts index e481284352..082f451626 100644 --- a/frontend/src/app/features/work-packages/components/wp-table/wp-table.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-table/wp-table.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-tabs/components/wp-tab-wrapper/wp-tab-wrapper.component.ts b/frontend/src/app/features/work-packages/components/wp-tabs/components/wp-tab-wrapper/wp-tab-wrapper.component.ts index deafe92f16..046ac32a68 100644 --- a/frontend/src/app/features/work-packages/components/wp-tabs/components/wp-tab-wrapper/wp-tab-wrapper.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-tabs/components/wp-tab-wrapper/wp-tab-wrapper.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-type-status/wp-type-status.component.ts b/frontend/src/app/features/work-packages/components/wp-type-status/wp-type-status.component.ts index 2352e393a2..f4e12970bc 100644 --- a/frontend/src/app/features/work-packages/components/wp-type-status/wp-type-status.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-type-status/wp-type-status.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/components/wp-watcher-button/wp-watcher-button.component.ts b/frontend/src/app/features/work-packages/components/wp-watcher-button/wp-watcher-button.component.ts index 59da84119d..6f0804db31 100644 --- a/frontend/src/app/features/work-packages/components/wp-watcher-button/wp-watcher-button.component.ts +++ b/frontend/src/app/features/work-packages/components/wp-watcher-button/wp-watcher-button.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-graph-query-space.directive.ts b/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-graph-query-space.directive.ts index 7afeb8bd86..95c7783ca4 100644 --- a/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-graph-query-space.directive.ts +++ b/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-graph-query-space.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-query-space.directive.ts b/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-query-space.directive.ts index 4cd6d41afa..6334bc06d3 100644 --- a/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-query-space.directive.ts +++ b/frontend/src/app/features/work-packages/directives/query-space/wp-isolated-query-space.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/openproject-work-package-routes.module.ts b/frontend/src/app/features/work-packages/openproject-work-package-routes.module.ts index 556f707f49..cd80f50835 100644 --- a/frontend/src/app/features/work-packages/openproject-work-package-routes.module.ts +++ b/frontend/src/app/features/work-packages/openproject-work-package-routes.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/openproject-work-packages.module.ts b/frontend/src/app/features/work-packages/openproject-work-packages.module.ts index 18fc9e9bc9..0909262949 100644 --- a/frontend/src/app/features/work-packages/openproject-work-packages.module.ts +++ b/frontend/src/app/features/work-packages/openproject-work-packages.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/partitioned-query-space-page/partitioned-query-space-page.component.ts b/frontend/src/app/features/work-packages/routing/partitioned-query-space-page/partitioned-query-space-page.component.ts index 7663aeb927..c13882a421 100644 --- a/frontend/src/app/features/work-packages/routing/partitioned-query-space-page/partitioned-query-space-page.component.ts +++ b/frontend/src/app/features/work-packages/routing/partitioned-query-space-page/partitioned-query-space-page.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/split-view-routes.helper.ts b/frontend/src/app/features/work-packages/routing/split-view-routes.helper.ts index 13f343320e..44c4d8061d 100644 --- a/frontend/src/app/features/work-packages/routing/split-view-routes.helper.ts +++ b/frontend/src/app/features/work-packages/routing/split-view-routes.helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/split-view-routes.template.ts b/frontend/src/app/features/work-packages/routing/split-view-routes.template.ts index c03b48025e..c860d0f3e7 100644 --- a/frontend/src/app/features/work-packages/routing/split-view-routes.template.ts +++ b/frontend/src/app/features/work-packages/routing/split-view-routes.template.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/work-packages-routes.ts b/frontend/src/app/features/work-packages/routing/work-packages-routes.ts index 385c334e5b..3bb1e5df6c 100644 --- a/frontend/src/app/features/work-packages/routing/work-packages-routes.ts +++ b/frontend/src/app/features/work-packages/routing/work-packages-routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-base/wp--base.component.ts b/frontend/src/app/features/work-packages/routing/wp-base/wp--base.component.ts index b1ec42bf2e..6283df253b 100644 --- a/frontend/src/app/features/work-packages/routing/wp-base/wp--base.component.ts +++ b/frontend/src/app/features/work-packages/routing/wp-base/wp--base.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-edit-form/wp-edit-form-routing.service.ts b/frontend/src/app/features/work-packages/routing/wp-edit-form/wp-edit-form-routing.service.ts index 1f8dfcf99c..69b978c115 100644 --- a/frontend/src/app/features/work-packages/routing/wp-edit-form/wp-edit-form-routing.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-edit-form/wp-edit-form-routing.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-full-view/wp-full-view.component.ts b/frontend/src/app/features/work-packages/routing/wp-full-view/wp-full-view.component.ts index e0405b7063..85eda07680 100644 --- a/frontend/src/app/features/work-packages/routing/wp-full-view/wp-full-view.component.ts +++ b/frontend/src/app/features/work-packages/routing/wp-full-view/wp-full-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-list-view/wp-list-view.component.ts b/frontend/src/app/features/work-packages/routing/wp-list-view/wp-list-view.component.ts index cc143b9c75..11b86f51b7 100644 --- a/frontend/src/app/features/work-packages/routing/wp-list-view/wp-list-view.component.ts +++ b/frontend/src/app/features/work-packages/routing/wp-list-view/wp-list-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-split-view/wp-split-view.component.ts b/frontend/src/app/features/work-packages/routing/wp-split-view/wp-split-view.component.ts index 5ed79df12c..96d56e1ca3 100644 --- a/frontend/src/app/features/work-packages/routing/wp-split-view/wp-split-view.component.ts +++ b/frontend/src/app/features/work-packages/routing/wp-split-view/wp-split-view.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-hierarchies.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-hierarchies.ts index 64825542fb..2c99005f22 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-hierarchies.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-hierarchies.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-highlight.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-highlight.ts index c593dbe538..61905a4530 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-highlight.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-highlight.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-pagination.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-pagination.ts index d4cc993eff..19f7f6e7de 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-pagination.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-pagination.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-relation-columns.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-relation-columns.ts index 0d63a7d577..b521542644 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-relation-columns.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-relation-columns.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-timeline.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-timeline.ts index 7f12f1061d..9c368f4150 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-timeline.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-table-timeline.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-additional-elements.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-additional-elements.service.ts index 8f69769feb..54b1d4bf72 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-additional-elements.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-additional-elements.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-base.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-base.service.ts index d8dfd0040f..17feeb5975 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-base.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-base.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-collapsed-groups.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-collapsed-groups.service.ts index 8f112e0eb0..668b09f8fe 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-collapsed-groups.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-collapsed-groups.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-columns.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-columns.service.ts index bf4a57aa95..b35aaedceb 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-columns.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-columns.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-display-representation.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-display-representation.service.ts index 77462ad340..e974323cd7 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-display-representation.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-display-representation.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-filters.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-filters.service.ts index ec8b17d7d5..8ec664dc1f 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-filters.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-filters.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-focus.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-focus.service.ts index 7ced7523cf..485202eba7 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-focus.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-focus.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-group-by.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-group-by.service.ts index 9d49608ced..7d674d6649 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-group-by.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-group-by.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-hierarchy-indentation.service.spec.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-hierarchy-indentation.service.spec.ts index 604143e62a..460fbfe91e 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-hierarchy-indentation.service.spec.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-hierarchy-indentation.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-order.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-order.service.ts index 8d384694e9..f327fcabd2 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-order.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-order.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-pagination.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-pagination.service.ts index f631cd1218..dc441cfeee 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-pagination.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-pagination.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-relation-columns.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-relation-columns.service.ts index 04a9b36681..a83234e7b2 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-relation-columns.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-relation-columns.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sort-by.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sort-by.service.ts index e98ae54c94..b6ff24e790 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sort-by.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sort-by.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sum.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sum.service.ts index c5705951e5..87c291a229 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sum.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-sum.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-timeline.service.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-timeline.service.ts index 21a21dd549..c6cdb1896b 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-timeline.service.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/view-services/wp-view-timeline.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/work-package-single-view.base.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/work-package-single-view.base.ts index 2433304a42..55d18e2f33 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/work-package-single-view.base.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/work-package-single-view.base.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-base/work-packages-view.base.ts b/frontend/src/app/features/work-packages/routing/wp-view-base/work-packages-view.base.ts index 99645152c0..dd3e7dfb50 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-base/work-packages-view.base.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-base/work-packages-view.base.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/routing/wp-view-page/wp-view-page.component.ts b/frontend/src/app/features/work-packages/routing/wp-view-page/wp-view-page.component.ts index 9c6063033a..33a985341f 100644 --- a/frontend/src/app/features/work-packages/routing/wp-view-page/wp-view-page.component.ts +++ b/frontend/src/app/features/work-packages/routing/wp-view-page/wp-view-page.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/services/notifications/work-package-notification.service.ts b/frontend/src/app/features/work-packages/services/notifications/work-package-notification.service.ts index 49a26c1a61..82319cfebc 100644 --- a/frontend/src/app/features/work-packages/services/notifications/work-package-notification.service.ts +++ b/frontend/src/app/features/work-packages/services/notifications/work-package-notification.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/services/work-package-authorization.service.ts b/frontend/src/app/features/work-packages/services/work-package-authorization.service.ts index f3812af517..9081ba6c5d 100644 --- a/frontend/src/app/features/work-packages/services/work-package-authorization.service.ts +++ b/frontend/src/app/features/work-packages/services/work-package-authorization.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/features/work-packages/services/work-package.service.ts b/frontend/src/app/features/work-packages/services/work-package.service.ts index 358f1eb811..aeed03172b 100644 --- a/frontend/src/app/features/work-packages/services/work-package.service.ts +++ b/frontend/src/app/features/work-packages/services/work-package.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/attachment-list/attachment-list-item.component.ts b/frontend/src/app/shared/components/attachments/attachment-list/attachment-list-item.component.ts index a8d74d4083..7dde581309 100644 --- a/frontend/src/app/shared/components/attachments/attachment-list/attachment-list-item.component.ts +++ b/frontend/src/app/shared/components/attachments/attachment-list/attachment-list-item.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/attachment-list/attachment-list.component.ts b/frontend/src/app/shared/components/attachments/attachment-list/attachment-list.component.ts index fa6ae17374..2aca40be87 100644 --- a/frontend/src/app/shared/components/attachments/attachment-list/attachment-list.component.ts +++ b/frontend/src/app/shared/components/attachments/attachment-list/attachment-list.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/attachments-upload/attachments-upload.component.ts b/frontend/src/app/shared/components/attachments/attachments-upload/attachments-upload.component.ts index f74bb2fa4f..f0eed08d65 100644 --- a/frontend/src/app/shared/components/attachments/attachments-upload/attachments-upload.component.ts +++ b/frontend/src/app/shared/components/attachments/attachments-upload/attachments-upload.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/attachments.component.ts b/frontend/src/app/shared/components/attachments/attachments.component.ts index e5cba6d63e..cc67002db8 100644 --- a/frontend/src/app/shared/components/attachments/attachments.component.ts +++ b/frontend/src/app/shared/components/attachments/attachments.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/authoring/authoring.component.ts b/frontend/src/app/shared/components/attachments/authoring/authoring.component.ts index c2176530ef..788869a4fc 100644 --- a/frontend/src/app/shared/components/attachments/authoring/authoring.component.ts +++ b/frontend/src/app/shared/components/attachments/authoring/authoring.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attachments/openproject-attachments.module.ts b/frontend/src/app/shared/components/attachments/openproject-attachments.module.ts index c6d943192e..cc334e6db3 100644 --- a/frontend/src/app/shared/components/attachments/openproject-attachments.module.ts +++ b/frontend/src/app/shared/components/attachments/openproject-attachments.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.component.ts b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.component.ts index e36c927051..db9d1ec32a 100644 --- a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.component.ts +++ b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.modal.ts b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.modal.ts index 5a311ab4ad..b083312618 100644 --- a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.modal.ts +++ b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.service.ts b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.service.ts index ccf30fb195..6c290fb428 100644 --- a/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.service.ts +++ b/frontend/src/app/shared/components/attribute-help-texts/attribute-help-text.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/autocomplete-select-decoration/autocomplete-select-decoration.component.ts b/frontend/src/app/shared/components/autocompleter/autocomplete-select-decoration/autocomplete-select-decoration.component.ts index 36010f02b8..af1ffd9848 100644 --- a/frontend/src/app/shared/components/autocompleter/autocomplete-select-decoration/autocomplete-select-decoration.component.ts +++ b/frontend/src/app/shared/components/autocompleter/autocomplete-select-decoration/autocomplete-select-decoration.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/create-autocompleter/create-autocompleter.component.ts b/frontend/src/app/shared/components/autocompleter/create-autocompleter/create-autocompleter.component.ts index 2ff14f26b7..0d89e5bfab 100644 --- a/frontend/src/app/shared/components/autocompleter/create-autocompleter/create-autocompleter.component.ts +++ b/frontend/src/app/shared/components/autocompleter/create-autocompleter/create-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/members-autocompleter/members.module.ts b/frontend/src/app/shared/components/autocompleter/members-autocompleter/members.module.ts index 1614516c9d..01e80162e3 100644 --- a/frontend/src/app/shared/components/autocompleter/members-autocompleter/members.module.ts +++ b/frontend/src/app/shared/components/autocompleter/members-autocompleter/members.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/project-menu-autocomplete/project-menu-autocomplete.component.ts b/frontend/src/app/shared/components/autocompleter/project-menu-autocomplete/project-menu-autocomplete.component.ts index 2cd7b76d7c..28c5bd9d24 100644 --- a/frontend/src/app/shared/components/autocompleter/project-menu-autocomplete/project-menu-autocomplete.component.ts +++ b/frontend/src/app/shared/components/autocompleter/project-menu-autocomplete/project-menu-autocomplete.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/te-work-package-autocompleter/te-work-package-autocompleter.component.ts b/frontend/src/app/shared/components/autocompleter/te-work-package-autocompleter/te-work-package-autocompleter.component.ts index ae4e138f60..4a1961265e 100644 --- a/frontend/src/app/shared/components/autocompleter/te-work-package-autocompleter/te-work-package-autocompleter.component.ts +++ b/frontend/src/app/shared/components/autocompleter/te-work-package-autocompleter/te-work-package-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/user-autocompleter/user-autocompleter.component.ts b/frontend/src/app/shared/components/autocompleter/user-autocompleter/user-autocompleter.component.ts index 836674f216..366f256bf5 100644 --- a/frontend/src/app/shared/components/autocompleter/user-autocompleter/user-autocompleter.component.ts +++ b/frontend/src/app/shared/components/autocompleter/user-autocompleter/user-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/version-autocompleter/version-autocompleter.component.ts b/frontend/src/app/shared/components/autocompleter/version-autocompleter/version-autocompleter.component.ts index a2ca5afda1..4ec45c7536 100644 --- a/frontend/src/app/shared/components/autocompleter/version-autocompleter/version-autocompleter.component.ts +++ b/frontend/src/app/shared/components/autocompleter/version-autocompleter/version-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/autocompleter/work-package-autocompleter/wp-autocompleter.component.ts b/frontend/src/app/shared/components/autocompleter/work-package-autocompleter/wp-autocompleter.component.ts index 66b0eac70d..0a71fa9ca9 100644 --- a/frontend/src/app/shared/components/autocompleter/work-package-autocompleter/wp-autocompleter.component.ts +++ b/frontend/src/app/shared/components/autocompleter/work-package-autocompleter/wp-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/collapsible-section/collapsible-section.component.ts b/frontend/src/app/shared/components/collapsible-section/collapsible-section.component.ts index 98dfce2dcc..03c625a8c9 100644 --- a/frontend/src/app/shared/components/collapsible-section/collapsible-section.component.ts +++ b/frontend/src/app/shared/components/collapsible-section/collapsible-section.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/colors/colors-autocompleter.component.ts b/frontend/src/app/shared/components/colors/colors-autocompleter.component.ts index c61726dc72..36724434d7 100644 --- a/frontend/src/app/shared/components/colors/colors-autocompleter.component.ts +++ b/frontend/src/app/shared/components/colors/colors-autocompleter.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/copy-to-clipboard/copy-to-clipboard.directive.ts b/frontend/src/app/shared/components/copy-to-clipboard/copy-to-clipboard.directive.ts index 3fc152275f..aa5a100aac 100644 --- a/frontend/src/app/shared/components/copy-to-clipboard/copy-to-clipboard.directive.ts +++ b/frontend/src/app/shared/components/copy-to-clipboard/copy-to-clipboard.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/date/op-date-time.component.ts b/frontend/src/app/shared/components/date/op-date-time.component.ts index c2b26b4574..9b3189e9f8 100644 --- a/frontend/src/app/shared/components/date/op-date-time.component.ts +++ b/frontend/src/app/shared/components/date/op-date-time.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/datepicker/datepicker.modal.helper.ts b/frontend/src/app/shared/components/datepicker/datepicker.modal.helper.ts index d9d7471606..710e769c0a 100644 --- a/frontend/src/app/shared/components/datepicker/datepicker.modal.helper.ts +++ b/frontend/src/app/shared/components/datepicker/datepicker.modal.helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/datepicker/datepicker.modal.ts b/frontend/src/app/shared/components/datepicker/datepicker.modal.ts index 1d28bf1d10..212932d955 100644 --- a/frontend/src/app/shared/components/datepicker/datepicker.modal.ts +++ b/frontend/src/app/shared/components/datepicker/datepicker.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/editable-toolbar-title/editable-toolbar-title.component.ts b/frontend/src/app/shared/components/editable-toolbar-title/editable-toolbar-title.component.ts index 0b8b3eedf8..eec6f7ac22 100644 --- a/frontend/src/app/shared/components/editable-toolbar-title/editable-toolbar-title.component.ts +++ b/frontend/src/app/shared/components/editable-toolbar-title/editable-toolbar-title.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/editor/components/ckeditor-augmented-textarea/ckeditor-augmented-textarea.component.ts b/frontend/src/app/shared/components/editor/components/ckeditor-augmented-textarea/ckeditor-augmented-textarea.component.ts index c79633ce12..c23dc73ef2 100644 --- a/frontend/src/app/shared/components/editor/components/ckeditor-augmented-textarea/ckeditor-augmented-textarea.component.ts +++ b/frontend/src/app/shared/components/editor/components/ckeditor-augmented-textarea/ckeditor-augmented-textarea.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/editor/components/ckeditor/ckeditor-preview.service.ts b/frontend/src/app/shared/components/editor/components/ckeditor/ckeditor-preview.service.ts index 8f38424800..80674bc2ba 100644 --- a/frontend/src/app/shared/components/editor/components/ckeditor/ckeditor-preview.service.ts +++ b/frontend/src/app/shared/components/editor/components/ckeditor/ckeditor-preview.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts b/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts index 4b0922b1d9..815f02fcf9 100644 --- a/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts +++ b/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/editor/openproject-editor.module.ts b/frontend/src/app/shared/components/editor/openproject-editor.module.ts index 70d12f152f..200fc14d31 100644 --- a/frontend/src/app/shared/components/editor/openproject-editor.module.ts +++ b/frontend/src/app/shared/components/editor/openproject-editor.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/display-field.initializer.ts b/frontend/src/app/shared/components/fields/display/display-field.initializer.ts index 39f397198d..e7fdeaabbe 100644 --- a/frontend/src/app/shared/components/fields/display/display-field.initializer.ts +++ b/frontend/src/app/shared/components/fields/display/display-field.initializer.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/display-field.module.ts b/frontend/src/app/shared/components/fields/display/display-field.module.ts index 31f5d0f1b8..409980de11 100644 --- a/frontend/src/app/shared/components/fields/display/display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/display-field.service.ts b/frontend/src/app/shared/components/fields/display/display-field.service.ts index 23c401ab32..7020126962 100644 --- a/frontend/src/app/shared/components/fields/display/display-field.service.ts +++ b/frontend/src/app/shared/components/fields/display/display-field.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/boolean-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/boolean-display-field.module.ts index f272af084f..0191c172c8 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/boolean-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/boolean-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/combined-date-display.field.ts b/frontend/src/app/shared/components/fields/display/field-types/combined-date-display.field.ts index 2a0d8ea31a..b949539881 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/combined-date-display.field.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/combined-date-display.field.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/date-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/date-display-field.module.ts index abdfd4dc6d..5083b57c06 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/date-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/date-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/datetime-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/datetime-display-field.module.ts index 6e5e4f81a4..4ea6524545 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/datetime-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/datetime-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/duration-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/duration-display-field.module.ts index 672768ceb7..d32a6b4f32 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/duration-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/duration-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/float-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/float-display-field.module.ts index fd2c04538b..38af1f9809 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/float-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/float-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/formattable-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/formattable-display-field.module.ts index e248dd4ead..2ec2b1d17f 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/formattable-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/formattable-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/highlightable-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/highlightable-display-field.module.ts index c2905ebde3..6735a76e45 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/highlightable-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/highlightable-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/highlighted-resource-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/highlighted-resource-display-field.module.ts index 58f9642fb5..8294c3d4b0 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/highlighted-resource-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/highlighted-resource-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/id-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/id-display-field.module.ts index 882cc398b3..2611e6d1f9 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/id-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/id-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/integer-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/integer-display-field.module.ts index 56a4857248..389bfef98a 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/integer-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/integer-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/linked-work-package-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/linked-work-package-display-field.module.ts index b59522dd12..fda81e24fd 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/linked-work-package-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/linked-work-package-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-custom-options-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-custom-options-display-field.module.ts index eb35556729..53c9cf2ec8 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-custom-options-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-custom-options-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-user-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-user-display-field.module.ts index 8026243339..0e60a4eb22 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-user-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/multiple-lines-user-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/multiple-user-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/multiple-user-display-field.module.ts index a1ff916a53..28e3921009 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/multiple-user-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/multiple-user-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/plain-formattable-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/plain-formattable-display-field.module.ts index 8feb278e81..e57e8d5e00 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/plain-formattable-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/plain-formattable-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/progress-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/progress-display-field.module.ts index 42239422a9..db0378b8f6 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/progress-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/progress-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/progress-text-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/progress-text-display-field.module.ts index 9c346aa139..b535838da8 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/progress-text-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/progress-text-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/project-status-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/project-status-display-field.module.ts index 78e9b91b2b..f7e2b1a010 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/project-status-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/project-status-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/resource-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/resource-display-field.module.ts index f53cc70efb..6bdba9e12c 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/resource-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/resource-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/resources-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/resources-display-field.module.ts index 3a0641a42c..8a3078f5db 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/resources-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/resources-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/text-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/text-display-field.module.ts index de38deac66..df372a0134 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/text-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/text-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/type-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/type-display-field.module.ts index 2707b64f10..24d17302f9 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/type-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/type-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/user-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/user-display-field.module.ts index 18a7104d52..c62e2df250 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/user-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/user-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/work-package-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/work-package-display-field.module.ts index 1f7350bbc9..dc685a63a8 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/work-package-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/work-package-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/wp-id-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/wp-id-display-field.module.ts index 0fe0f81173..c690dd5054 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/wp-id-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/wp-id-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/display/field-types/wp-spent-time-display-field.module.ts b/frontend/src/app/shared/components/fields/display/field-types/wp-spent-time-display-field.module.ts index 206e567c4c..5c59633014 100644 --- a/frontend/src/app/shared/components/fields/display/field-types/wp-spent-time-display-field.module.ts +++ b/frontend/src/app/shared/components/fields/display/field-types/wp-spent-time-display-field.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/edit-field.component.ts index d40c13b378..a02191759d 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-field.initializer.ts b/frontend/src/app/shared/components/fields/edit/edit-field.initializer.ts index 1e9f1641f3..70e8a5f4b5 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-field.initializer.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-field.initializer.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-field.service.ts b/frontend/src/app/shared/components/fields/edit/edit-field.service.ts index c495ea6eec..087a92b4eb 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-field.service.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-field.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form-routing.service.ts b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form-routing.service.ts index cd54c77d1c..7fdc6862fc 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form-routing.service.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form-routing.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.component.ts b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.component.ts index b15bfe2159..59d615f934 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.component.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.ts b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.ts index cbd89a007e..8da1dc2afd 100644 --- a/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.ts +++ b/frontend/src/app/shared/components/fields/edit/edit-form/edit-form.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/editing-portal/edit-field-handler.ts b/frontend/src/app/shared/components/fields/edit/editing-portal/edit-field-handler.ts index 46cfb99863..3b529aecdf 100644 --- a/frontend/src/app/shared/components/fields/edit/editing-portal/edit-field-handler.ts +++ b/frontend/src/app/shared/components/fields/edit/editing-portal/edit-field-handler.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-controls/edit-field-controls.component.ts b/frontend/src/app/shared/components/fields/edit/field-controls/edit-field-controls.component.ts index ee91dd239a..4af5640bc1 100644 --- a/frontend/src/app/shared/components/fields/edit/field-controls/edit-field-controls.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-controls/edit-field-controls.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-handler/hal-resource-edit-field-handler.ts b/frontend/src/app/shared/components/fields/edit/field-handler/hal-resource-edit-field-handler.ts index 0a20027e0b..7b69088bc1 100644 --- a/frontend/src/app/shared/components/fields/edit/field-handler/hal-resource-edit-field-handler.ts +++ b/frontend/src/app/shared/components/fields/edit/field-handler/hal-resource-edit-field-handler.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/boolean-edit-field/boolean-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/boolean-edit-field/boolean-edit-field.component.ts index a9eae5d2c9..4423b348d0 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/boolean-edit-field/boolean-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/boolean-edit-field/boolean-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/combined-date-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/combined-date-edit-field.component.ts index b139dee544..d4a86a49fd 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/combined-date-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/combined-date-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/date-edit-field/date-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/date-edit-field/date-edit-field.component.ts index b7891099f7..d30c5a9b2c 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/date-edit-field/date-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/date-edit-field/date-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/duration-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/duration-edit-field.component.ts index 9882dbd0b9..9494e31e41 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/duration-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/duration-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/multi-select-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/multi-select-edit-field.component.ts index 12deec026f..6aaf7d2887 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/multi-select-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/multi-select-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/plain-formattable-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/plain-formattable-edit-field.component.ts index adca006709..4fc500d08d 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/plain-formattable-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/plain-formattable-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/project-status-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/project-status-edit-field.component.ts index d0e5d9c1b0..cb6c91259c 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/project-status-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/project-status-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-autocompleter-register.service.ts b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-autocompleter-register.service.ts index 3211733ac7..3bc9c263f0 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-autocompleter-register.service.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-autocompleter-register.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts index 6b30c4a0a1..d70fc976ab 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/select-edit-field/select-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/te-work-package-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/te-work-package-edit-field.component.ts index 06d5600477..59d85ba0ba 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/te-work-package-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/te-work-package-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/text-edit-field/text-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/text-edit-field/text-edit-field.component.ts index 90a0de0e7f..4395ba36d3 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/text-edit-field/text-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/text-edit-field/text-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field-types/work-package-edit-field.component.ts b/frontend/src/app/shared/components/fields/edit/field-types/work-package-edit-field.component.ts index 36f1903b7b..cfd48a9333 100644 --- a/frontend/src/app/shared/components/fields/edit/field-types/work-package-edit-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field-types/work-package-edit-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/field/editable-attribute-field.component.ts b/frontend/src/app/shared/components/fields/edit/field/editable-attribute-field.component.ts index b8568b4d78..65d58e5e42 100644 --- a/frontend/src/app/shared/components/fields/edit/field/editable-attribute-field.component.ts +++ b/frontend/src/app/shared/components/fields/edit/field/editable-attribute-field.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/edit/services/hal-resource-editing.service.ts b/frontend/src/app/shared/components/fields/edit/services/hal-resource-editing.service.ts index 511a4a4a5c..c496369c20 100644 --- a/frontend/src/app/shared/components/fields/edit/services/hal-resource-editing.service.ts +++ b/frontend/src/app/shared/components/fields/edit/services/hal-resource-editing.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/field.base.ts b/frontend/src/app/shared/components/fields/field.base.ts index 7b2ffa65bd..8afafc3a71 100644 --- a/frontend/src/app/shared/components/fields/field.base.ts +++ b/frontend/src/app/shared/components/fields/field.base.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/field.service.ts b/frontend/src/app/shared/components/fields/field.service.ts index cc9d91feae..7e0e6152c0 100644 --- a/frontend/src/app/shared/components/fields/field.service.ts +++ b/frontend/src/app/shared/components/fields/field.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/macros/attribute-label-macro.component.ts b/frontend/src/app/shared/components/fields/macros/attribute-label-macro.component.ts index bdb59d0e5f..f041decba8 100644 --- a/frontend/src/app/shared/components/fields/macros/attribute-label-macro.component.ts +++ b/frontend/src/app/shared/components/fields/macros/attribute-label-macro.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/macros/attribute-model-loader.service.ts b/frontend/src/app/shared/components/fields/macros/attribute-model-loader.service.ts index f2394cef75..efc4da736e 100644 --- a/frontend/src/app/shared/components/fields/macros/attribute-model-loader.service.ts +++ b/frontend/src/app/shared/components/fields/macros/attribute-model-loader.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/macros/attribute-value-macro.component.ts b/frontend/src/app/shared/components/fields/macros/attribute-value-macro.component.ts index 6dcbbab311..35cb2087ca 100644 --- a/frontend/src/app/shared/components/fields/macros/attribute-value-macro.component.ts +++ b/frontend/src/app/shared/components/fields/macros/attribute-value-macro.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/macros/work-package-quickinfo-macro.component.ts b/frontend/src/app/shared/components/fields/macros/work-package-quickinfo-macro.component.ts index 758afcd761..69d35ba249 100644 --- a/frontend/src/app/shared/components/fields/macros/work-package-quickinfo-macro.component.ts +++ b/frontend/src/app/shared/components/fields/macros/work-package-quickinfo-macro.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/fields/openproject-fields.module.ts b/frontend/src/app/shared/components/fields/openproject-fields.module.ts index 5e14fe51c0..7ca2677a99 100644 --- a/frontend/src/app/shared/components/fields/openproject-fields.module.ts +++ b/frontend/src/app/shared/components/fields/openproject-fields.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/openproject-grids.module.ts b/frontend/src/app/shared/components/grids/openproject-grids.module.ts index 1c5fe6e7a2..f9cc0d133d 100644 --- a/frontend/src/app/shared/components/grids/openproject-grids.module.ts +++ b/frontend/src/app/shared/components/grids/openproject-grids.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/header/header.component.ts b/frontend/src/app/shared/components/grids/widgets/header/header.component.ts index d9e25857dc..4d3d8de4a3 100644 --- a/frontend/src/app/shared/components/grids/widgets/header/header.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/header/header.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/menu/widget-abstract-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/menu/widget-abstract-menu.component.ts index 5e8ac4579d..4c73ef4869 100644 --- a/frontend/src/app/shared/components/grids/widgets/menu/widget-abstract-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/menu/widget-abstract-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/menu/widget-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/menu/widget-menu.component.ts index 2ad99ed83c..cca6fb0616 100644 --- a/frontend/src/app/shared/components/grids/widgets/menu/widget-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/menu/widget-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/menu/wp-set-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/menu/wp-set-menu.component.ts index 24f2c52b7a..a958042e55 100644 --- a/frontend/src/app/shared/components/grids/widgets/menu/wp-set-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/menu/wp-set-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/project-description/project-description.component.ts b/frontend/src/app/shared/components/grids/widgets/project-description/project-description.component.ts index 91f997c2f4..7b73086ef2 100644 --- a/frontend/src/app/shared/components/grids/widgets/project-description/project-description.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/project-description/project-description.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/project-details/project-details.component.ts b/frontend/src/app/shared/components/grids/widgets/project-details/project-details.component.ts index dae00f5365..1336c5b761 100644 --- a/frontend/src/app/shared/components/grids/widgets/project-details/project-details.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/project-details/project-details.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/project-status/project-status.component.ts b/frontend/src/app/shared/components/grids/widgets/project-status/project-status.component.ts index 1ef5151509..2c206914c8 100644 --- a/frontend/src/app/shared/components/grids/widgets/project-status/project-status.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/project-status/project-status.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/time-entries/current-user/time-entries-current-user-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/time-entries/current-user/time-entries-current-user-menu.component.ts index 85a6770a2d..8534cae119 100644 --- a/frontend/src/app/shared/components/grids/widgets/time-entries/current-user/time-entries-current-user-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/time-entries/current-user/time-entries-current-user-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/wp-calendar/wp-calendar.component.ts b/frontend/src/app/shared/components/grids/widgets/wp-calendar/wp-calendar.component.ts index 26b23c7b20..cdf6cf6f4e 100644 --- a/frontend/src/app/shared/components/grids/widgets/wp-calendar/wp-calendar.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/wp-calendar/wp-calendar.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/wp-graph/wp-graph-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/wp-graph/wp-graph-menu.component.ts index 35afef988d..f91ca0a577 100644 --- a/frontend/src/app/shared/components/grids/widgets/wp-graph/wp-graph-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/wp-graph/wp-graph-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/wp-overview/wp-overview.component.ts b/frontend/src/app/shared/components/grids/widgets/wp-overview/wp-overview.component.ts index 3bb9096ef0..eaf6433883 100644 --- a/frontend/src/app/shared/components/grids/widgets/wp-overview/wp-overview.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/wp-overview/wp-overview.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/grids/widgets/wp-table/wp-table-menu.component.ts b/frontend/src/app/shared/components/grids/widgets/wp-table/wp-table-menu.component.ts index 0e7279eb27..4aa08dac11 100644 --- a/frontend/src/app/shared/components/grids/widgets/wp-table/wp-table-menu.component.ts +++ b/frontend/src/app/shared/components/grids/widgets/wp-table/wp-table-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/hide-section/add-section-dropdown/add-section-dropdown.component.ts b/frontend/src/app/shared/components/hide-section/add-section-dropdown/add-section-dropdown.component.ts index d83d4e8c54..0dabf9a853 100644 --- a/frontend/src/app/shared/components/hide-section/add-section-dropdown/add-section-dropdown.component.ts +++ b/frontend/src/app/shared/components/hide-section/add-section-dropdown/add-section-dropdown.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/hide-section/hide-section-link/hide-section-link.component.ts b/frontend/src/app/shared/components/hide-section/hide-section-link/hide-section-link.component.ts index ff43cf146b..72705a01b0 100644 --- a/frontend/src/app/shared/components/hide-section/hide-section-link/hide-section-link.component.ts +++ b/frontend/src/app/shared/components/hide-section/hide-section-link/hide-section-link.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/hide-section/hide-section.service.ts b/frontend/src/app/shared/components/hide-section/hide-section.service.ts index 782c5964e5..64fe4b415b 100644 --- a/frontend/src/app/shared/components/hide-section/hide-section.service.ts +++ b/frontend/src/app/shared/components/hide-section/hide-section.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/hide-section/show-section-dropdown.component.ts b/frontend/src/app/shared/components/hide-section/show-section-dropdown.component.ts index 2997195ce6..a730f8cfc9 100644 --- a/frontend/src/app/shared/components/hide-section/show-section-dropdown.component.ts +++ b/frontend/src/app/shared/components/hide-section/show-section-dropdown.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/icon/icon.component.ts b/frontend/src/app/shared/components/icon/icon.component.ts index f0cee25b82..40a8367b54 100644 --- a/frontend/src/app/shared/components/icon/icon.component.ts +++ b/frontend/src/app/shared/components/icon/icon.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/icon/op-icon.spec.ts b/frontend/src/app/shared/components/icon/op-icon.spec.ts index fe9e39e6f4..a899b9bdd3 100644 --- a/frontend/src/app/shared/components/icon/op-icon.spec.ts +++ b/frontend/src/app/shared/components/icon/op-icon.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modal/modal-wrapper-augment.service.ts b/frontend/src/app/shared/components/modal/modal-wrapper-augment.service.ts index a90f6cce2b..bb669391d5 100644 --- a/frontend/src/app/shared/components/modal/modal-wrapper-augment.service.ts +++ b/frontend/src/app/shared/components/modal/modal-wrapper-augment.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.modal.ts b/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.modal.ts index eddf6cde4d..a7ea5c6a0e 100644 --- a/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.modal.ts +++ b/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.service.ts b/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.service.ts index f85e480498..70d44e7251 100644 --- a/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.service.ts +++ b/frontend/src/app/shared/components/modals/confirm-dialog/confirm-dialog.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/confirm-form-submit/confirm-form-submit.directive.ts b/frontend/src/app/shared/components/modals/confirm-form-submit/confirm-form-submit.directive.ts index 1c506ddb5d..c04d560b01 100644 --- a/frontend/src/app/shared/components/modals/confirm-form-submit/confirm-form-submit.directive.ts +++ b/frontend/src/app/shared/components/modals/confirm-form-submit/confirm-form-submit.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/editor/editor-macros.service.ts b/frontend/src/app/shared/components/modals/editor/editor-macros.service.ts index 5cd3847dd2..aec476eede 100644 --- a/frontend/src/app/shared/components/modals/editor/editor-macros.service.ts +++ b/frontend/src/app/shared/components/modals/editor/editor-macros.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/editor/macro-child-pages-modal/child-pages-macro.modal.ts b/frontend/src/app/shared/components/modals/editor/macro-child-pages-modal/child-pages-macro.modal.ts index 88e6a8ee83..1e2da28e53 100644 --- a/frontend/src/app/shared/components/modals/editor/macro-child-pages-modal/child-pages-macro.modal.ts +++ b/frontend/src/app/shared/components/modals/editor/macro-child-pages-modal/child-pages-macro.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/editor/macro-code-block-modal/code-block-macro.modal.ts b/frontend/src/app/shared/components/modals/editor/macro-code-block-modal/code-block-macro.modal.ts index 10a1cf86a4..7b19b314ed 100644 --- a/frontend/src/app/shared/components/modals/editor/macro-code-block-modal/code-block-macro.modal.ts +++ b/frontend/src/app/shared/components/modals/editor/macro-code-block-modal/code-block-macro.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/editor/macro-wiki-include-page-modal/wiki-include-page-macro.modal.ts b/frontend/src/app/shared/components/modals/editor/macro-wiki-include-page-modal/wiki-include-page-macro.modal.ts index dc6bb438c1..c990b6b87a 100644 --- a/frontend/src/app/shared/components/modals/editor/macro-wiki-include-page-modal/wiki-include-page-macro.modal.ts +++ b/frontend/src/app/shared/components/modals/editor/macro-wiki-include-page-modal/wiki-include-page-macro.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/editor/macro-wp-button-modal/wp-button-macro.modal.ts b/frontend/src/app/shared/components/modals/editor/macro-wp-button-modal/wp-button-macro.modal.ts index c070733357..dd84ca871a 100644 --- a/frontend/src/app/shared/components/modals/editor/macro-wp-button-modal/wp-button-macro.modal.ts +++ b/frontend/src/app/shared/components/modals/editor/macro-wp-button-modal/wp-button-macro.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/modal-wrapper/dynamic-content.modal.ts b/frontend/src/app/shared/components/modals/modal-wrapper/dynamic-content.modal.ts index 540f5b2237..8e6c9cdcf0 100644 --- a/frontend/src/app/shared/components/modals/modal-wrapper/dynamic-content.modal.ts +++ b/frontend/src/app/shared/components/modals/modal-wrapper/dynamic-content.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/preview-modal/wp-preview-modal/wp-preview.modal.ts b/frontend/src/app/shared/components/modals/preview-modal/wp-preview-modal/wp-preview.modal.ts index 20660cdc19..c9d3b44109 100644 --- a/frontend/src/app/shared/components/modals/preview-modal/wp-preview-modal/wp-preview.modal.ts +++ b/frontend/src/app/shared/components/modals/preview-modal/wp-preview-modal/wp-preview.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/request-for-confirmation/password-confirmation.modal.ts b/frontend/src/app/shared/components/modals/request-for-confirmation/password-confirmation.modal.ts index a5edec850e..008ec51922 100644 --- a/frontend/src/app/shared/components/modals/request-for-confirmation/password-confirmation.modal.ts +++ b/frontend/src/app/shared/components/modals/request-for-confirmation/password-confirmation.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/save-modal/save-query.modal.ts b/frontend/src/app/shared/components/modals/save-modal/save-query.modal.ts index 222e09260e..eb3215d593 100644 --- a/frontend/src/app/shared/components/modals/save-modal/save-query.modal.ts +++ b/frontend/src/app/shared/components/modals/save-modal/save-query.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/share-modal/query-sharing.modal.ts b/frontend/src/app/shared/components/modals/share-modal/query-sharing.modal.ts index 1706209453..87721c6183 100644 --- a/frontend/src/app/shared/components/modals/share-modal/query-sharing.modal.ts +++ b/frontend/src/app/shared/components/modals/share-modal/query-sharing.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/modals/wp-destroy-modal/wp-destroy.modal.ts b/frontend/src/app/shared/components/modals/wp-destroy-modal/wp-destroy.modal.ts index 1b814e11c1..5f7c6cbd41 100644 --- a/frontend/src/app/shared/components/modals/wp-destroy-modal/wp-destroy.modal.ts +++ b/frontend/src/app/shared/components/modals/wp-destroy-modal/wp-destroy.modal.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/no-results/no-results.component.ts b/frontend/src/app/shared/components/no-results/no-results.component.ts index 2f85898030..7032417b1f 100644 --- a/frontend/src/app/shared/components/no-results/no-results.component.ts +++ b/frontend/src/app/shared/components/no-results/no-results.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/op-columns-context-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/op-columns-context-menu.directive.ts index 65cb4248ff..648fdd0a03 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/op-columns-context-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/op-columns-context-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/op-settings-dropdown-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/op-settings-dropdown-menu.directive.ts index 519d9fd098..1f191c1ede 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/op-settings-dropdown-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/op-settings-dropdown-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/op-types-context-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/op-types-context-menu.directive.ts index 682ae79881..d770987ad6 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/op-types-context-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/op-types-context-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/wp-create-settings-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/wp-create-settings-menu.directive.ts index f5f8e25da6..9d8e3a8dae 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/wp-create-settings-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/wp-create-settings-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/wp-group-toggle-dropdown-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/wp-group-toggle-dropdown-menu.directive.ts index bb864900fe..2236f3c254 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/wp-group-toggle-dropdown-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/wp-group-toggle-dropdown-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/wp-status-dropdown-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/wp-status-dropdown-menu.directive.ts index fa3067fc72..d498aa0a0c 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/wp-status-dropdown-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/wp-status-dropdown-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/handlers/wp-view-dropdown-menu.directive.ts b/frontend/src/app/shared/components/op-context-menu/handlers/wp-view-dropdown-menu.directive.ts index 2974093360..3f23364dd5 100644 --- a/frontend/src/app/shared/components/op-context-menu/handlers/wp-view-dropdown-menu.directive.ts +++ b/frontend/src/app/shared/components/op-context-menu/handlers/wp-view-dropdown-menu.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-context-menu/icon-triggered-context-menu/icon-triggered-context-menu.component.ts b/frontend/src/app/shared/components/op-context-menu/icon-triggered-context-menu/icon-triggered-context-menu.component.ts index 0ef1046610..d6e74cdbb3 100644 --- a/frontend/src/app/shared/components/op-context-menu/icon-triggered-context-menu/icon-triggered-context-menu.component.ts +++ b/frontend/src/app/shared/components/op-context-menu/icon-triggered-context-menu/icon-triggered-context-menu.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-date-picker/date-picker.directive.ts b/frontend/src/app/shared/components/op-date-picker/date-picker.directive.ts index 76669b26db..cace6765f4 100644 --- a/frontend/src/app/shared/components/op-date-picker/date-picker.directive.ts +++ b/frontend/src/app/shared/components/op-date-picker/date-picker.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-date-picker/datepicker.ts b/frontend/src/app/shared/components/op-date-picker/datepicker.ts index 6291be4ec0..ddd7e8e9b3 100644 --- a/frontend/src/app/shared/components/op-date-picker/datepicker.ts +++ b/frontend/src/app/shared/components/op-date-picker/datepicker.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-date-picker/op-single-date-picker/op-single-date-picker.component.ts b/frontend/src/app/shared/components/op-date-picker/op-single-date-picker/op-single-date-picker.component.ts index 319dbc2344..15c02ea991 100644 --- a/frontend/src/app/shared/components/op-date-picker/op-single-date-picker/op-single-date-picker.component.ts +++ b/frontend/src/app/shared/components/op-date-picker/op-single-date-picker/op-single-date-picker.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-view-select/op-static-queries.service.ts b/frontend/src/app/shared/components/op-view-select/op-static-queries.service.ts index a8d42cfb00..a2fdd1a649 100644 --- a/frontend/src/app/shared/components/op-view-select/op-static-queries.service.ts +++ b/frontend/src/app/shared/components/op-view-select/op-static-queries.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/op-view-select/op-view-select.component.ts b/frontend/src/app/shared/components/op-view-select/op-view-select.component.ts index c2903ce42e..6d24a2c3fa 100644 --- a/frontend/src/app/shared/components/op-view-select/op-view-select.component.ts +++ b/frontend/src/app/shared/components/op-view-select/op-view-select.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/persistent-toggle/persistent-toggle.component.ts b/frontend/src/app/shared/components/persistent-toggle/persistent-toggle.component.ts index 51150ee8aa..01aa4173a1 100644 --- a/frontend/src/app/shared/components/persistent-toggle/persistent-toggle.component.ts +++ b/frontend/src/app/shared/components/persistent-toggle/persistent-toggle.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/principal/principal-helper.ts b/frontend/src/app/shared/components/principal/principal-helper.ts index c14c703d3b..4c70b1c991 100644 --- a/frontend/src/app/shared/components/principal/principal-helper.ts +++ b/frontend/src/app/shared/components/principal/principal-helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/principal/principal.component.ts b/frontend/src/app/shared/components/principal/principal.component.ts index b6225e4703..d86101a74a 100644 --- a/frontend/src/app/shared/components/principal/principal.component.ts +++ b/frontend/src/app/shared/components/principal/principal.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/remote-field-updater/remote-field-updater.component.ts b/frontend/src/app/shared/components/remote-field-updater/remote-field-updater.component.ts index 503f74c50a..fe4f73422f 100644 --- a/frontend/src/app/shared/components/remote-field-updater/remote-field-updater.component.ts +++ b/frontend/src/app/shared/components/remote-field-updater/remote-field-updater.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/resizer/resizer/main-menu-resizer.component.ts b/frontend/src/app/shared/components/resizer/resizer/main-menu-resizer.component.ts index d1fcdd62f0..a376f8a6ad 100644 --- a/frontend/src/app/shared/components/resizer/resizer/main-menu-resizer.component.ts +++ b/frontend/src/app/shared/components/resizer/resizer/main-menu-resizer.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/resizer/resizer/wp-resizer.component.ts b/frontend/src/app/shared/components/resizer/resizer/wp-resizer.component.ts index 113376cb09..50adfecc7d 100644 --- a/frontend/src/app/shared/components/resizer/resizer/wp-resizer.component.ts +++ b/frontend/src/app/shared/components/resizer/resizer/wp-resizer.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/slide-toggle/slide-toggle.component.ts b/frontend/src/app/shared/components/slide-toggle/slide-toggle.component.ts index f30182c40a..36a77000a8 100644 --- a/frontend/src/app/shared/components/slide-toggle/slide-toggle.component.ts +++ b/frontend/src/app/shared/components/slide-toggle/slide-toggle.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/table-pagination/pagination-instance.ts b/frontend/src/app/shared/components/table-pagination/pagination-instance.ts index 3e3ca9af2f..53422f4868 100644 --- a/frontend/src/app/shared/components/table-pagination/pagination-instance.ts +++ b/frontend/src/app/shared/components/table-pagination/pagination-instance.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/table-pagination/pagination-service.ts b/frontend/src/app/shared/components/table-pagination/pagination-service.ts index c4af634161..cee5f20233 100644 --- a/frontend/src/app/shared/components/table-pagination/pagination-service.ts +++ b/frontend/src/app/shared/components/table-pagination/pagination-service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/table-pagination/table-pagination.component.ts b/frontend/src/app/shared/components/table-pagination/table-pagination.component.ts index 3b8521a0fe..c506f77b98 100644 --- a/frontend/src/app/shared/components/table-pagination/table-pagination.component.ts +++ b/frontend/src/app/shared/components/table-pagination/table-pagination.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/tabs/content-tabs/content-tabs.component.ts b/frontend/src/app/shared/components/tabs/content-tabs/content-tabs.component.ts index 5263ae4756..ba0999535f 100644 --- a/frontend/src/app/shared/components/tabs/content-tabs/content-tabs.component.ts +++ b/frontend/src/app/shared/components/tabs/content-tabs/content-tabs.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/tabs/openproject-tabs.module.ts b/frontend/src/app/shared/components/tabs/openproject-tabs.module.ts index 9bdb3869ca..6410c6a224 100644 --- a/frontend/src/app/shared/components/tabs/openproject-tabs.module.ts +++ b/frontend/src/app/shared/components/tabs/openproject-tabs.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/time_entries/openproject-time-entries.module.ts b/frontend/src/app/shared/components/time_entries/openproject-time-entries.module.ts index 5193436f5b..f5100fbdb3 100644 --- a/frontend/src/app/shared/components/time_entries/openproject-time-entries.module.ts +++ b/frontend/src/app/shared/components/time_entries/openproject-time-entries.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/toaster/toast.component.ts b/frontend/src/app/shared/components/toaster/toast.component.ts index 28c52e53e9..a1426e3e9f 100644 --- a/frontend/src/app/shared/components/toaster/toast.component.ts +++ b/frontend/src/app/shared/components/toaster/toast.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/toaster/toast.service.spec.ts b/frontend/src/app/shared/components/toaster/toast.service.spec.ts index fe0a26e117..26e7693fe8 100644 --- a/frontend/src/app/shared/components/toaster/toast.service.spec.ts +++ b/frontend/src/app/shared/components/toaster/toast.service.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/toaster/toast.service.ts b/frontend/src/app/shared/components/toaster/toast.service.ts index 1271724ac2..7d81493437 100644 --- a/frontend/src/app/shared/components/toaster/toast.service.ts +++ b/frontend/src/app/shared/components/toaster/toast.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/toaster/toasts-container.component.ts b/frontend/src/app/shared/components/toaster/toasts-container.component.ts index bd74eaf462..7a14f1de88 100644 --- a/frontend/src/app/shared/components/toaster/toasts-container.component.ts +++ b/frontend/src/app/shared/components/toaster/toasts-container.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/toaster/upload-progress.component.ts b/frontend/src/app/shared/components/toaster/upload-progress.component.ts index 93984ac689..c586ffb363 100644 --- a/frontend/src/app/shared/components/toaster/upload-progress.component.ts +++ b/frontend/src/app/shared/components/toaster/upload-progress.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/user-link/user-link.component.spec.ts b/frontend/src/app/shared/components/user-link/user-link.component.spec.ts index ec79d73268..6f0b010699 100644 --- a/frontend/src/app/shared/components/user-link/user-link.component.spec.ts +++ b/frontend/src/app/shared/components/user-link/user-link.component.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/user-link/user-link.component.ts b/frontend/src/app/shared/components/user-link/user-link.component.ts index dff8a3890c..224f259faf 100644 --- a/frontend/src/app/shared/components/user-link/user-link.component.ts +++ b/frontend/src/app/shared/components/user-link/user-link.component.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/components/work-package-graphs/openproject-work-package-graphs.module.ts b/frontend/src/app/shared/components/work-package-graphs/openproject-work-package-graphs.module.ts index f6fe92b56a..2b825eacea 100644 --- a/frontend/src/app/shared/components/work-package-graphs/openproject-work-package-graphs.module.ts +++ b/frontend/src/app/shared/components/work-package-graphs/openproject-work-package-graphs.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/a11y/keyboard-shortcut.service.ts b/frontend/src/app/shared/directives/a11y/keyboard-shortcut.service.ts index ee39e5a64d..6a71de21a8 100644 --- a/frontend/src/app/shared/directives/a11y/keyboard-shortcut.service.ts +++ b/frontend/src/app/shared/directives/a11y/keyboard-shortcut.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/focus/contain-helpers.ts b/frontend/src/app/shared/directives/focus/contain-helpers.ts index 6db378e813..376a22ce91 100644 --- a/frontend/src/app/shared/directives/focus/contain-helpers.ts +++ b/frontend/src/app/shared/directives/focus/contain-helpers.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/focus/focus-helper.ts b/frontend/src/app/shared/directives/focus/focus-helper.ts index 79349bb80d..a5c63ebeb5 100644 --- a/frontend/src/app/shared/directives/focus/focus-helper.ts +++ b/frontend/src/app/shared/directives/focus/focus-helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/focus/focus-within.directive.ts b/frontend/src/app/shared/directives/focus/focus-within.directive.ts index 76663134f5..d1293c54c3 100644 --- a/frontend/src/app/shared/directives/focus/focus-within.directive.ts +++ b/frontend/src/app/shared/directives/focus/focus-within.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/highlight-col/highlight-col.directive.ts b/frontend/src/app/shared/directives/highlight-col/highlight-col.directive.ts index f94a7364b3..8b51d3f0e3 100644 --- a/frontend/src/app/shared/directives/highlight-col/highlight-col.directive.ts +++ b/frontend/src/app/shared/directives/highlight-col/highlight-col.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/directives/op-drag-scroll/op-drag-scroll.directive.ts b/frontend/src/app/shared/directives/op-drag-scroll/op-drag-scroll.directive.ts index 3843cc8d68..709c60c8af 100644 --- a/frontend/src/app/shared/directives/op-drag-scroll/op-drag-scroll.directive.ts +++ b/frontend/src/app/shared/directives/op-drag-scroll/op-drag-scroll.directive.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/helpers/api-v3/api-v3-filter-builder.ts b/frontend/src/app/shared/helpers/api-v3/api-v3-filter-builder.ts index cbe152e842..b9462fafa3 100644 --- a/frontend/src/app/shared/helpers/api-v3/api-v3-filter-builder.ts +++ b/frontend/src/app/shared/helpers/api-v3/api-v3-filter-builder.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/helpers/drag-and-drop/reorder-delta-builder.spec.ts b/frontend/src/app/shared/helpers/drag-and-drop/reorder-delta-builder.spec.ts index 00387209b8..460c1dae1a 100644 --- a/frontend/src/app/shared/helpers/drag-and-drop/reorder-delta-builder.spec.ts +++ b/frontend/src/app/shared/helpers/drag-and-drop/reorder-delta-builder.spec.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/helpers/link-handling/link-handling.ts b/frontend/src/app/shared/helpers/link-handling/link-handling.ts index 679df45830..b1a5a150e0 100644 --- a/frontend/src/app/shared/helpers/link-handling/link-handling.ts +++ b/frontend/src/app/shared/helpers/link-handling/link-handling.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/helpers/routing/mobile-guard.helper.ts b/frontend/src/app/shared/helpers/routing/mobile-guard.helper.ts index 0376b005bf..0562835b0a 100644 --- a/frontend/src/app/shared/helpers/routing/mobile-guard.helper.ts +++ b/frontend/src/app/shared/helpers/routing/mobile-guard.helper.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/shared/shared.module.ts b/frontend/src/app/shared/shared.module.ts index 6b52d52174..9b1bd3f531 100644 --- a/frontend/src/app/shared/shared.module.ts +++ b/frontend/src/app/shared/shared.module.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/app/spot/spot.routes.ts b/frontend/src/app/spot/spot.routes.ts index dc29d6047f..81727a01cd 100644 --- a/frontend/src/app/spot/spot.routes.ts +++ b/frontend/src/app/spot/spot.routes.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_accounts.sass b/frontend/src/global_styles/content/_accounts.sass index c199d9cfdf..346941e380 100644 --- a/frontend/src/global_styles/content/_accounts.sass +++ b/frontend/src/global_styles/content/_accounts.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_accounts_mobile.sass b/frontend/src/global_styles/content/_accounts_mobile.sass index 5471231e33..7b40955de5 100644 --- a/frontend/src/global_styles/content/_accounts_mobile.sass +++ b/frontend/src/global_styles/content/_accounts_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_advanced_filters.sass b/frontend/src/global_styles/content/_advanced_filters.sass index 1965dafaa5..85054d5d6e 100644 --- a/frontend/src/global_styles/content/_advanced_filters.sass +++ b/frontend/src/global_styles/content/_advanced_filters.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_ajax_indicator.sass b/frontend/src/global_styles/content/_ajax_indicator.sass index ccf57d18b9..bab9d75e46 100644 --- a/frontend/src/global_styles/content/_ajax_indicator.sass +++ b/frontend/src/global_styles/content/_ajax_indicator.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_attributes_group.sass b/frontend/src/global_styles/content/_attributes_group.sass index ff060bdc0e..85455f7a37 100644 --- a/frontend/src/global_styles/content/_attributes_group.sass +++ b/frontend/src/global_styles/content/_attributes_group.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_attributes_key_value.sass b/frontend/src/global_styles/content/_attributes_key_value.sass index c91e7272e2..998f80873d 100644 --- a/frontend/src/global_styles/content/_attributes_key_value.sass +++ b/frontend/src/global_styles/content/_attributes_key_value.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_augmented.sass b/frontend/src/global_styles/content/_augmented.sass index 1f169f9162..14b4bb57be 100644 --- a/frontend/src/global_styles/content/_augmented.sass +++ b/frontend/src/global_styles/content/_augmented.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_autocomplete.sass b/frontend/src/global_styles/content/_autocomplete.sass index ff477a967b..42bf03d0a0 100644 --- a/frontend/src/global_styles/content/_autocomplete.sass +++ b/frontend/src/global_styles/content/_autocomplete.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_badges.sass b/frontend/src/global_styles/content/_badges.sass index ceef8bc4e7..aca9d87413 100644 --- a/frontend/src/global_styles/content/_badges.sass +++ b/frontend/src/global_styles/content/_badges.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_blockquotes.sass b/frontend/src/global_styles/content/_blockquotes.sass index 58aff33cd9..34bec4d6ce 100644 --- a/frontend/src/global_styles/content/_blockquotes.sass +++ b/frontend/src/global_styles/content/_blockquotes.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_boxes.sass b/frontend/src/global_styles/content/_boxes.sass index 5f36f4f6c9..3ba6795c43 100644 --- a/frontend/src/global_styles/content/_boxes.sass +++ b/frontend/src/global_styles/content/_boxes.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_buttons.sass b/frontend/src/global_styles/content/_buttons.sass index 1be85f11df..21eae57c94 100644 --- a/frontend/src/global_styles/content/_buttons.sass +++ b/frontend/src/global_styles/content/_buttons.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_comments.sass b/frontend/src/global_styles/content/_comments.sass index 9033a4ea35..3a283ab378 100644 --- a/frontend/src/global_styles/content/_comments.sass +++ b/frontend/src/global_styles/content/_comments.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_context_menu.sass b/frontend/src/global_styles/content/_context_menu.sass index 51db1454ea..e83dc87af5 100644 --- a/frontend/src/global_styles/content/_context_menu.sass +++ b/frontend/src/global_styles/content/_context_menu.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_contextual.sass b/frontend/src/global_styles/content/_contextual.sass index 5378d7de60..17e349a2c8 100644 --- a/frontend/src/global_styles/content/_contextual.sass +++ b/frontend/src/global_styles/content/_contextual.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_copy_to_clipboard.sass b/frontend/src/global_styles/content/_copy_to_clipboard.sass index d17b853778..225b38c17e 100644 --- a/frontend/src/global_styles/content/_copy_to_clipboard.sass +++ b/frontend/src/global_styles/content/_copy_to_clipboard.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_custom_actions.sass b/frontend/src/global_styles/content/_custom_actions.sass index 9fb2243ce6..5a9da905f4 100644 --- a/frontend/src/global_styles/content/_custom_actions.sass +++ b/frontend/src/global_styles/content/_custom_actions.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_datepicker.sass b/frontend/src/global_styles/content/_datepicker.sass index d8833a2196..61bf6343ed 100644 --- a/frontend/src/global_styles/content/_datepicker.sass +++ b/frontend/src/global_styles/content/_datepicker.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_diff.sass b/frontend/src/global_styles/content/_diff.sass index ff8c539595..3df4bfc992 100644 --- a/frontend/src/global_styles/content/_diff.sass +++ b/frontend/src/global_styles/content/_diff.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_focus_within.sass b/frontend/src/global_styles/content/_focus_within.sass index c4d753c3a5..16da7e5a2b 100644 --- a/frontend/src/global_styles/content/_focus_within.sass +++ b/frontend/src/global_styles/content/_focus_within.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_form_error_messages.sass b/frontend/src/global_styles/content/_form_error_messages.sass index 6d3b599d25..1db58018aa 100644 --- a/frontend/src/global_styles/content/_form_error_messages.sass +++ b/frontend/src/global_styles/content/_form_error_messages.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_forms.sass b/frontend/src/global_styles/content/_forms.sass index 61ca670565..4756dbe80e 100644 --- a/frontend/src/global_styles/content/_forms.sass +++ b/frontend/src/global_styles/content/_forms.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_forms_mobile.sass b/frontend/src/global_styles/content/_forms_mobile.sass index c8175f0125..a044ff87ac 100644 --- a/frontend/src/global_styles/content/_forms_mobile.sass +++ b/frontend/src/global_styles/content/_forms_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_headings.sass b/frontend/src/global_styles/content/_headings.sass index 3f2c05567e..a89d31c379 100644 --- a/frontend/src/global_styles/content/_headings.sass +++ b/frontend/src/global_styles/content/_headings.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_help_texts.sass b/frontend/src/global_styles/content/_help_texts.sass index b8f28b2d22..e683d07844 100644 --- a/frontend/src/global_styles/content/_help_texts.sass +++ b/frontend/src/global_styles/content/_help_texts.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_hidden.sass b/frontend/src/global_styles/content/_hidden.sass index 16cad50d2e..c19df905c9 100644 --- a/frontend/src/global_styles/content/_hidden.sass +++ b/frontend/src/global_styles/content/_hidden.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_hide_section.sass b/frontend/src/global_styles/content/_hide_section.sass index 4ac2f9f532..1510de2e9f 100644 --- a/frontend/src/global_styles/content/_hide_section.sass +++ b/frontend/src/global_styles/content/_hide_section.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_hide_until_initialized.sass b/frontend/src/global_styles/content/_hide_until_initialized.sass index 88f742f775..00d24d12a8 100644 --- a/frontend/src/global_styles/content/_hide_until_initialized.sass +++ b/frontend/src/global_styles/content/_hide_until_initialized.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_icon_control.sass b/frontend/src/global_styles/content/_icon_control.sass index 90d631679d..c911a9b31a 100644 --- a/frontend/src/global_styles/content/_icon_control.sass +++ b/frontend/src/global_styles/content/_icon_control.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_info_boxes.sass b/frontend/src/global_styles/content/_info_boxes.sass index a6292bd0d1..ec4172cfd7 100644 --- a/frontend/src/global_styles/content/_info_boxes.sass +++ b/frontend/src/global_styles/content/_info_boxes.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_information_section.sass b/frontend/src/global_styles/content/_information_section.sass index 00d95fbcd5..80ea8a081e 100644 --- a/frontend/src/global_styles/content/_information_section.sass +++ b/frontend/src/global_styles/content/_information_section.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_journal.sass b/frontend/src/global_styles/content/_journal.sass index 905d65dc95..1a2c20c425 100644 --- a/frontend/src/global_styles/content/_journal.sass +++ b/frontend/src/global_styles/content/_journal.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_links.sass b/frontend/src/global_styles/content/_links.sass index cbfbc341bb..e7d6952a4f 100644 --- a/frontend/src/global_styles/content/_links.sass +++ b/frontend/src/global_styles/content/_links.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_list.sass b/frontend/src/global_styles/content/_list.sass index d712f01863..49d58ca5cd 100644 --- a/frontend/src/global_styles/content/_list.sass +++ b/frontend/src/global_styles/content/_list.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_members.sass b/frontend/src/global_styles/content/_members.sass index 0b1102be68..d445bf8543 100644 --- a/frontend/src/global_styles/content/_members.sass +++ b/frontend/src/global_styles/content/_members.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_my_account.sass b/frontend/src/global_styles/content/_my_account.sass index fc74d6246d..bd2645f002 100644 --- a/frontend/src/global_styles/content/_my_account.sass +++ b/frontend/src/global_styles/content/_my_account.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_my_page.sass b/frontend/src/global_styles/content/_my_page.sass index 2d96a23621..08b6c0fb9c 100644 --- a/frontend/src/global_styles/content/_my_page.sass +++ b/frontend/src/global_styles/content/_my_page.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_news.sass b/frontend/src/global_styles/content/_news.sass index dbde7336a7..3caf9ae2f9 100644 --- a/frontend/src/global_styles/content/_news.sass +++ b/frontend/src/global_styles/content/_news.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_on_off_status.sass b/frontend/src/global_styles/content/_on_off_status.sass index bd34dcdb17..453cacd382 100644 --- a/frontend/src/global_styles/content/_on_off_status.sass +++ b/frontend/src/global_styles/content/_on_off_status.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_pagination.sass b/frontend/src/global_styles/content/_pagination.sass index 7cec6b2ad2..2f848929cc 100644 --- a/frontend/src/global_styles/content/_pagination.sass +++ b/frontend/src/global_styles/content/_pagination.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_progress_bar.sass b/frontend/src/global_styles/content/_progress_bar.sass index 27326438f3..ba9ce146b6 100644 --- a/frontend/src/global_styles/content/_progress_bar.sass +++ b/frontend/src/global_styles/content/_progress_bar.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_project_overview.sass b/frontend/src/global_styles/content/_project_overview.sass index ee93f621f5..9a932b4ed4 100644 --- a/frontend/src/global_styles/content/_project_overview.sass +++ b/frontend/src/global_styles/content/_project_overview.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_projects_list.sass b/frontend/src/global_styles/content/_projects_list.sass index 9de85c2f88..852d60c2f7 100644 --- a/frontend/src/global_styles/content/_projects_list.sass +++ b/frontend/src/global_styles/content/_projects_list.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_request_for_confirmation.sass b/frontend/src/global_styles/content/_request_for_confirmation.sass index 670dbe6626..e9dcaf4d2c 100644 --- a/frontend/src/global_styles/content/_request_for_confirmation.sass +++ b/frontend/src/global_styles/content/_request_for_confirmation.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_simple_filters.sass b/frontend/src/global_styles/content/_simple_filters.sass index be826d4ebb..3cbbdcb188 100644 --- a/frontend/src/global_styles/content/_simple_filters.sass +++ b/frontend/src/global_styles/content/_simple_filters.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_table.sass b/frontend/src/global_styles/content/_table.sass index d924d43ca9..fc3e747eae 100644 --- a/frontend/src/global_styles/content/_table.sass +++ b/frontend/src/global_styles/content/_table.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_tables.sass b/frontend/src/global_styles/content/_tables.sass index e636cec10f..d0e42fc0f0 100644 --- a/frontend/src/global_styles/content/_tables.sass +++ b/frontend/src/global_styles/content/_tables.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_tabular.sass b/frontend/src/global_styles/content/_tabular.sass index 36c86eec1e..43470fecc3 100644 --- a/frontend/src/global_styles/content/_tabular.sass +++ b/frontend/src/global_styles/content/_tabular.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_toast.sass b/frontend/src/global_styles/content/_toast.sass index 11633a9625..269574bde0 100644 --- a/frontend/src/global_styles/content/_toast.sass +++ b/frontend/src/global_styles/content/_toast.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_toast_mobile.sass b/frontend/src/global_styles/content/_toast_mobile.sass index b42256b7ff..3279411cef 100644 --- a/frontend/src/global_styles/content/_toast_mobile.sass +++ b/frontend/src/global_styles/content/_toast_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_tooltips.sass b/frontend/src/global_styles/content/_tooltips.sass index afd04d9b9d..e018f80c7d 100644 --- a/frontend/src/global_styles/content/_tooltips.sass +++ b/frontend/src/global_styles/content/_tooltips.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_user.sass b/frontend/src/global_styles/content/_user.sass index c262b3aacc..4fc1068d27 100644 --- a/frontend/src/global_styles/content/_user.sass +++ b/frontend/src/global_styles/content/_user.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_user_mention.sass b/frontend/src/global_styles/content/_user_mention.sass index 06b11adc0a..fc95a85a98 100644 --- a/frontend/src/global_styles/content/_user_mention.sass +++ b/frontend/src/global_styles/content/_user_mention.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_version.sass b/frontend/src/global_styles/content/_version.sass index 2a015d95d8..7ff5e15907 100644 --- a/frontend/src/global_styles/content/_version.sass +++ b/frontend/src/global_styles/content/_version.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_watchers.sass b/frontend/src/global_styles/content/_watchers.sass index d9486fa6b7..196a884986 100644 --- a/frontend/src/global_styles/content/_watchers.sass +++ b/frontend/src/global_styles/content/_watchers.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_widget_box.sass b/frontend/src/global_styles/content/_widget_box.sass index ead3e4fcb1..9bcfcd4a14 100644 --- a/frontend/src/global_styles/content/_widget_box.sass +++ b/frontend/src/global_styles/content/_widget_box.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/_work_packages.sass b/frontend/src/global_styles/content/_work_packages.sass index b5de9d481c..fb30a0cd21 100644 --- a/frontend/src/global_styles/content/_work_packages.sass +++ b/frontend/src/global_styles/content/_work_packages.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/drag_and_drop.sass b/frontend/src/global_styles/content/drag_and_drop.sass index 05295d2f24..f4d46f019c 100644 --- a/frontend/src/global_styles/content/drag_and_drop.sass +++ b/frontend/src/global_styles/content/drag_and_drop.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/_table_content.sass b/frontend/src/global_styles/content/work_packages/_table_content.sass index c4ff25f97c..22fdd1e1c4 100644 --- a/frontend/src/global_styles/content/work_packages/_table_content.sass +++ b/frontend/src/global_styles/content/work_packages/_table_content.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/inplace_editing/_display_fields.sass b/frontend/src/global_styles/content/work_packages/inplace_editing/_display_fields.sass index 716deb6eca..b9d9f5ce5c 100644 --- a/frontend/src/global_styles/content/work_packages/inplace_editing/_display_fields.sass +++ b/frontend/src/global_styles/content/work_packages/inplace_editing/_display_fields.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/inplace_editing/_textareas.sass b/frontend/src/global_styles/content/work_packages/inplace_editing/_textareas.sass index f7e28ef673..08063cb14d 100644 --- a/frontend/src/global_styles/content/work_packages/inplace_editing/_textareas.sass +++ b/frontend/src/global_styles/content/work_packages/inplace_editing/_textareas.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/single_view/_attachments.sass b/frontend/src/global_styles/content/work_packages/single_view/_attachments.sass index c5ce870443..4d1c3e21b4 100644 --- a/frontend/src/global_styles/content/work_packages/single_view/_attachments.sass +++ b/frontend/src/global_styles/content/work_packages/single_view/_attachments.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/single_view/_single_view.sass b/frontend/src/global_styles/content/work_packages/single_view/_single_view.sass index cb825eb241..14e3a2dd91 100644 --- a/frontend/src/global_styles/content/work_packages/single_view/_single_view.sass +++ b/frontend/src/global_styles/content/work_packages/single_view/_single_view.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/tabs/_activities.sass b/frontend/src/global_styles/content/work_packages/tabs/_activities.sass index 03fc77c6e7..9e82669848 100644 --- a/frontend/src/global_styles/content/work_packages/tabs/_activities.sass +++ b/frontend/src/global_styles/content/work_packages/tabs/_activities.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/content/work_packages/tabs/_relations.sass b/frontend/src/global_styles/content/work_packages/tabs/_relations.sass index f9ab6e9a12..74347cd52a 100644 --- a/frontend/src/global_styles/content/work_packages/tabs/_relations.sass +++ b/frontend/src/global_styles/content/work_packages/tabs/_relations.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/fonts/_lato.sass b/frontend/src/global_styles/fonts/_lato.sass index bff7d073f8..2c95ef064d 100644 --- a/frontend/src/global_styles/fonts/_lato.sass +++ b/frontend/src/global_styles/fonts/_lato.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/fonts/_openproject_icon_font.sass b/frontend/src/global_styles/fonts/_openproject_icon_font.sass index bdb082160e..d1e3846396 100644 --- a/frontend/src/global_styles/fonts/_openproject_icon_font.sass +++ b/frontend/src/global_styles/fonts/_openproject_icon_font.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_admin.sass b/frontend/src/global_styles/layout/_admin.sass index bc05c64820..9ddf837735 100644 --- a/frontend/src/global_styles/layout/_admin.sass +++ b/frontend/src/global_styles/layout/_admin.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_base.sass b/frontend/src/global_styles/layout/_base.sass index e93b1ed420..88aefc970b 100644 --- a/frontend/src/global_styles/layout/_base.sass +++ b/frontend/src/global_styles/layout/_base.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_base_mobile.sass b/frontend/src/global_styles/layout/_base_mobile.sass index 6642eb8c38..2c4570bb13 100644 --- a/frontend/src/global_styles/layout/_base_mobile.sass +++ b/frontend/src/global_styles/layout/_base_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_breadcrumb.sass b/frontend/src/global_styles/layout/_breadcrumb.sass index 278a75bb28..314da4acba 100644 --- a/frontend/src/global_styles/layout/_breadcrumb.sass +++ b/frontend/src/global_styles/layout/_breadcrumb.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_colors.sass b/frontend/src/global_styles/layout/_colors.sass index ffef5bde5a..3323476b07 100644 --- a/frontend/src/global_styles/layout/_colors.sass +++ b/frontend/src/global_styles/layout/_colors.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_drop_down.sass b/frontend/src/global_styles/layout/_drop_down.sass index 728195fe0d..f96982d9f2 100644 --- a/frontend/src/global_styles/layout/_drop_down.sass +++ b/frontend/src/global_styles/layout/_drop_down.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_drop_down_mobile.sass b/frontend/src/global_styles/layout/_drop_down_mobile.sass index e3388080a3..e8022f76f2 100644 --- a/frontend/src/global_styles/layout/_drop_down_mobile.sass +++ b/frontend/src/global_styles/layout/_drop_down_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_grid.sass b/frontend/src/global_styles/layout/_grid.sass index 75ce3b788f..500bd14e8c 100644 --- a/frontend/src/global_styles/layout/_grid.sass +++ b/frontend/src/global_styles/layout/_grid.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_index.sass b/frontend/src/global_styles/layout/_index.sass index 4d3df3fa80..586dad3dd0 100644 --- a/frontend/src/global_styles/layout/_index.sass +++ b/frontend/src/global_styles/layout/_index.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_main_menu.sass b/frontend/src/global_styles/layout/_main_menu.sass index 2ee800f5c5..fc63dcc9d6 100644 --- a/frontend/src/global_styles/layout/_main_menu.sass +++ b/frontend/src/global_styles/layout/_main_menu.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_main_menu_mobile.sass b/frontend/src/global_styles/layout/_main_menu_mobile.sass index adc9926091..a8baecf324 100644 --- a/frontend/src/global_styles/layout/_main_menu_mobile.sass +++ b/frontend/src/global_styles/layout/_main_menu_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_toolbar.sass b/frontend/src/global_styles/layout/_toolbar.sass index c3e7ea765f..68620b7c40 100644 --- a/frontend/src/global_styles/layout/_toolbar.sass +++ b/frontend/src/global_styles/layout/_toolbar.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/_toolbar_mobile.sass b/frontend/src/global_styles/layout/_toolbar_mobile.sass index 8ea7fd737f..cd269033c6 100644 --- a/frontend/src/global_styles/layout/_toolbar_mobile.sass +++ b/frontend/src/global_styles/layout/_toolbar_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/work_packages/_details_view.sass b/frontend/src/global_styles/layout/work_packages/_details_view.sass index a4eb0fdd68..cd0be70435 100644 --- a/frontend/src/global_styles/layout/work_packages/_details_view.sass +++ b/frontend/src/global_styles/layout/work_packages/_details_view.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/work_packages/_full_view.sass b/frontend/src/global_styles/layout/work_packages/_full_view.sass index cfe2739b51..e0a49bf0e2 100644 --- a/frontend/src/global_styles/layout/work_packages/_full_view.sass +++ b/frontend/src/global_styles/layout/work_packages/_full_view.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/work_packages/_mobile.sass b/frontend/src/global_styles/layout/work_packages/_mobile.sass index 9361ad59d5..ad0df2557f 100644 --- a/frontend/src/global_styles/layout/work_packages/_mobile.sass +++ b/frontend/src/global_styles/layout/work_packages/_mobile.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/work_packages/_table.sass b/frontend/src/global_styles/layout/work_packages/_table.sass index e188424020..7deaebb232 100644 --- a/frontend/src/global_styles/layout/work_packages/_table.sass +++ b/frontend/src/global_styles/layout/work_packages/_table.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/layout/work_packages/_table_embedded.sass b/frontend/src/global_styles/layout/work_packages/_table_embedded.sass index aeeafd5fd2..570118ebab 100644 --- a/frontend/src/global_styles/layout/work_packages/_table_embedded.sass +++ b/frontend/src/global_styles/layout/work_packages/_table_embedded.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_accessibility.sass b/frontend/src/global_styles/openproject/_accessibility.sass index 633fe26317..020d4fe07c 100644 --- a/frontend/src/global_styles/openproject/_accessibility.sass +++ b/frontend/src/global_styles/openproject/_accessibility.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_functions.sass b/frontend/src/global_styles/openproject/_functions.sass index bb1a8e491d..9aa59e780a 100644 --- a/frontend/src/global_styles/openproject/_functions.sass +++ b/frontend/src/global_styles/openproject/_functions.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_generic.sass b/frontend/src/global_styles/openproject/_generic.sass index 48348c59c7..9d4fcc0101 100644 --- a/frontend/src/global_styles/openproject/_generic.sass +++ b/frontend/src/global_styles/openproject/_generic.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_homescreen.sass b/frontend/src/global_styles/openproject/_homescreen.sass index 4c7276392c..e53560c25e 100644 --- a/frontend/src/global_styles/openproject/_homescreen.sass +++ b/frontend/src/global_styles/openproject/_homescreen.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_mixins.sass b/frontend/src/global_styles/openproject/_mixins.sass index e0ce0b5a14..17c1d854d8 100644 --- a/frontend/src/global_styles/openproject/_mixins.sass +++ b/frontend/src/global_styles/openproject/_mixins.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/global_styles/openproject/_onboarding.sass b/frontend/src/global_styles/openproject/_onboarding.sass index 8a086bde5d..f767e8db2a 100644 --- a/frontend/src/global_styles/openproject/_onboarding.sass +++ b/frontend/src/global_styles/openproject/_onboarding.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/test/openproject-tests.js b/frontend/src/test/openproject-tests.js index fc88cb9495..4313ecca25 100644 --- a/frontend/src/test/openproject-tests.js +++ b/frontend/src/test/openproject-tests.js @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/frontend/src/typings/open-project.typings.d.ts b/frontend/src/typings/open-project.typings.d.ts index 928a10d7fe..97f67a4316 100644 --- a/frontend/src/typings/open-project.typings.d.ts +++ b/frontend/src/typings/open-project.typings.d.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/caching/cached_representer.rb b/lib/api/caching/cached_representer.rb index 01b78caf9e..63d807d034 100644 --- a/lib/api/caching/cached_representer.rb +++ b/lib/api/caching/cached_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/aggregation_group.rb b/lib/api/decorators/aggregation_group.rb index d431487063..74758be73a 100644 --- a/lib/api/decorators/aggregation_group.rb +++ b/lib/api/decorators/aggregation_group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/allowed_values_by_collection_representer.rb b/lib/api/decorators/allowed_values_by_collection_representer.rb index 0a92b73b28..51f25b946d 100644 --- a/lib/api/decorators/allowed_values_by_collection_representer.rb +++ b/lib/api/decorators/allowed_values_by_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/allowed_values_by_link_representer.rb b/lib/api/decorators/allowed_values_by_link_representer.rb index b0d85a35f9..4ad8c1adf0 100644 --- a/lib/api/decorators/allowed_values_by_link_representer.rb +++ b/lib/api/decorators/allowed_values_by_link_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/collection.rb b/lib/api/decorators/collection.rb index 1ca2c12c8e..72e8e9391a 100644 --- a/lib/api/decorators/collection.rb +++ b/lib/api/decorators/collection.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/create_form.rb b/lib/api/decorators/create_form.rb index b72f20aa37..c1af56a89a 100644 --- a/lib/api/decorators/create_form.rb +++ b/lib/api/decorators/create_form.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/date_property.rb b/lib/api/decorators/date_property.rb index f1233a9ef8..396c7d86cc 100644 --- a/lib/api/decorators/date_property.rb +++ b/lib/api/decorators/date_property.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/digest.rb b/lib/api/decorators/digest.rb index 7a80384207..d682889208 100644 --- a/lib/api/decorators/digest.rb +++ b/lib/api/decorators/digest.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/form.rb b/lib/api/decorators/form.rb index 377556c3d8..43b9ea7cba 100644 --- a/lib/api/decorators/form.rb +++ b/lib/api/decorators/form.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/formattable.rb b/lib/api/decorators/formattable.rb index 103d23a9c8..4be539ed9f 100644 --- a/lib/api/decorators/formattable.rb +++ b/lib/api/decorators/formattable.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/formattable_property.rb b/lib/api/decorators/formattable_property.rb index 5429e16cca..ce4f81573a 100644 --- a/lib/api/decorators/formattable_property.rb +++ b/lib/api/decorators/formattable_property.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/link_object.rb b/lib/api/decorators/link_object.rb index e16e63056b..891edc3d33 100644 --- a/lib/api/decorators/link_object.rb +++ b/lib/api/decorators/link_object.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/linked_resource.rb b/lib/api/decorators/linked_resource.rb index e3fd872191..2716eb815c 100644 --- a/lib/api/decorators/linked_resource.rb +++ b/lib/api/decorators/linked_resource.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/meta_form.rb b/lib/api/decorators/meta_form.rb index 5b184dff8d..51c1790a10 100644 --- a/lib/api/decorators/meta_form.rb +++ b/lib/api/decorators/meta_form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/offset_paginated_collection.rb b/lib/api/decorators/offset_paginated_collection.rb index 499320a575..124c5e7a8c 100644 --- a/lib/api/decorators/offset_paginated_collection.rb +++ b/lib/api/decorators/offset_paginated_collection.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/polymorphic_resource.rb b/lib/api/decorators/polymorphic_resource.rb index 09818b213c..4c9be9d0b7 100644 --- a/lib/api/decorators/polymorphic_resource.rb +++ b/lib/api/decorators/polymorphic_resource.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/property_schema_representer.rb b/lib/api/decorators/property_schema_representer.rb index b1828d73b7..9e129d9bed 100644 --- a/lib/api/decorators/property_schema_representer.rb +++ b/lib/api/decorators/property_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/query_params_representer.rb b/lib/api/decorators/query_params_representer.rb index cf2fc6e8b8..532c009f0b 100644 --- a/lib/api/decorators/query_params_representer.rb +++ b/lib/api/decorators/query_params_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/schema_representer.rb b/lib/api/decorators/schema_representer.rb index 2d8ae2188c..34ed8b9a5b 100644 --- a/lib/api/decorators/schema_representer.rb +++ b/lib/api/decorators/schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/simple_form.rb b/lib/api/decorators/simple_form.rb index 3056d12546..1f0e6b2cc6 100644 --- a/lib/api/decorators/simple_form.rb +++ b/lib/api/decorators/simple_form.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/single.rb b/lib/api/decorators/single.rb index 28f7f72bf9..3ec258781c 100644 --- a/lib/api/decorators/single.rb +++ b/lib/api/decorators/single.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/sql_collection_representer.rb b/lib/api/decorators/sql_collection_representer.rb index ad0b9f53ef..4a935b2783 100644 --- a/lib/api/decorators/sql_collection_representer.rb +++ b/lib/api/decorators/sql_collection_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/unpaginated_collection.rb b/lib/api/decorators/unpaginated_collection.rb index 05fe059e05..a863131ee0 100644 --- a/lib/api/decorators/unpaginated_collection.rb +++ b/lib/api/decorators/unpaginated_collection.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/decorators/update_form.rb b/lib/api/decorators/update_form.rb index 97271fb7fd..688a5c938c 100644 --- a/lib/api/decorators/update_form.rb +++ b/lib/api/decorators/update_form.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/bad_request.rb b/lib/api/errors/bad_request.rb index aa082b051a..82decc45d2 100644 --- a/lib/api/errors/bad_request.rb +++ b/lib/api/errors/bad_request.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/conflict.rb b/lib/api/errors/conflict.rb index ec5540ce21..e6b5903781 100644 --- a/lib/api/errors/conflict.rb +++ b/lib/api/errors/conflict.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/error_base.rb b/lib/api/errors/error_base.rb index 5ab1400635..085e3e7527 100644 --- a/lib/api/errors/error_base.rb +++ b/lib/api/errors/error_base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/internal_error.rb b/lib/api/errors/internal_error.rb index c155547630..ba35b5f2e8 100644 --- a/lib/api/errors/internal_error.rb +++ b/lib/api/errors/internal_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_query.rb b/lib/api/errors/invalid_query.rb index 1b96f2f39e..4bc00eb220 100644 --- a/lib/api/errors/invalid_query.rb +++ b/lib/api/errors/invalid_query.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_render_context.rb b/lib/api/errors/invalid_render_context.rb index 665b1afd32..0d6c601e1d 100644 --- a/lib/api/errors/invalid_render_context.rb +++ b/lib/api/errors/invalid_render_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_request_body.rb b/lib/api/errors/invalid_request_body.rb index 274351c78b..90fdfcf60d 100644 --- a/lib/api/errors/invalid_request_body.rb +++ b/lib/api/errors/invalid_request_body.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_resource_link.rb b/lib/api/errors/invalid_resource_link.rb index 8e4991f94d..054125c4fc 100644 --- a/lib/api/errors/invalid_resource_link.rb +++ b/lib/api/errors/invalid_resource_link.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_signal.rb b/lib/api/errors/invalid_signal.rb index 3aa4347e4c..b3d84b5407 100644 --- a/lib/api/errors/invalid_signal.rb +++ b/lib/api/errors/invalid_signal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/invalid_user_status_transition.rb b/lib/api/errors/invalid_user_status_transition.rb index 9ddb9eb1d0..a3452fdb8a 100644 --- a/lib/api/errors/invalid_user_status_transition.rb +++ b/lib/api/errors/invalid_user_status_transition.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/multiple_errors.rb b/lib/api/errors/multiple_errors.rb index e364a76b68..fd1a9aa1a3 100644 --- a/lib/api/errors/multiple_errors.rb +++ b/lib/api/errors/multiple_errors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/not_found.rb b/lib/api/errors/not_found.rb index c77e3e3a06..9699851c72 100644 --- a/lib/api/errors/not_found.rb +++ b/lib/api/errors/not_found.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/not_implemented.rb b/lib/api/errors/not_implemented.rb index 21bf4881d6..270cdbb455 100644 --- a/lib/api/errors/not_implemented.rb +++ b/lib/api/errors/not_implemented.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/parse_error.rb b/lib/api/errors/parse_error.rb index d5b0c4d135..7331b9bded 100644 --- a/lib/api/errors/parse_error.rb +++ b/lib/api/errors/parse_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/property_format_error.rb b/lib/api/errors/property_format_error.rb index cec8b67be2..1a8510980a 100644 --- a/lib/api/errors/property_format_error.rb +++ b/lib/api/errors/property_format_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/too_many_requests.rb b/lib/api/errors/too_many_requests.rb index d9f184393f..e61303b739 100644 --- a/lib/api/errors/too_many_requests.rb +++ b/lib/api/errors/too_many_requests.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/unauthenticated.rb b/lib/api/errors/unauthenticated.rb index b5b9ef7152..0fc900eff3 100644 --- a/lib/api/errors/unauthenticated.rb +++ b/lib/api/errors/unauthenticated.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/unauthorized.rb b/lib/api/errors/unauthorized.rb index e3de695d05..9c2967f6a5 100644 --- a/lib/api/errors/unauthorized.rb +++ b/lib/api/errors/unauthorized.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/unsupported_media_type.rb b/lib/api/errors/unsupported_media_type.rb index 6e4e31094b..fbb507b7f6 100644 --- a/lib/api/errors/unsupported_media_type.rb +++ b/lib/api/errors/unsupported_media_type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/unwritable_property.rb b/lib/api/errors/unwritable_property.rb index f75b130dee..475251c906 100644 --- a/lib/api/errors/unwritable_property.rb +++ b/lib/api/errors/unwritable_property.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/errors/validation.rb b/lib/api/errors/validation.rb index 83bc305801..f051640dd2 100644 --- a/lib/api/errors/validation.rb +++ b/lib/api/errors/validation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/formatter.rb b/lib/api/formatter.rb index 5cb5b6047e..86c540ffbb 100644 --- a/lib/api/formatter.rb +++ b/lib/api/formatter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/helpers/attachment_renderer.rb b/lib/api/helpers/attachment_renderer.rb index 40d1d6ff08..90540cf29d 100644 --- a/lib/api/helpers/attachment_renderer.rb +++ b/lib/api/helpers/attachment_renderer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/open_project_api.rb b/lib/api/open_project_api.rb index c9ac7e4bb8..444df6f402 100644 --- a/lib/api/open_project_api.rb +++ b/lib/api/open_project_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/patchable_api.rb b/lib/api/patchable_api.rb index dfaedfda29..ec91629eed 100644 --- a/lib/api/patchable_api.rb +++ b/lib/api/patchable_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/root.rb b/lib/api/root.rb index 83a0567299..bf11edccfe 100644 --- a/lib/api/root.rb +++ b/lib/api/root.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/root_api.rb b/lib/api/root_api.rb index 06545e7529..ae7f1d510a 100644 --- a/lib/api/root_api.rb +++ b/lib/api/root_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/camel_casing_strategy.rb b/lib/api/utilities/camel_casing_strategy.rb index 08643f9d2c..209b0e8936 100644 --- a/lib/api/utilities/camel_casing_strategy.rb +++ b/lib/api/utilities/camel_casing_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/decorator_factory.rb b/lib/api/utilities/decorator_factory.rb index 9b6674988c..883732fc73 100644 --- a/lib/api/utilities/decorator_factory.rb +++ b/lib/api/utilities/decorator_factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/bodied.rb b/lib/api/utilities/endpoints/bodied.rb index 225b8c2da9..6a6747244c 100644 --- a/lib/api/utilities/endpoints/bodied.rb +++ b/lib/api/utilities/endpoints/bodied.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/create.rb b/lib/api/utilities/endpoints/create.rb index 0502da332e..9f44c478fe 100644 --- a/lib/api/utilities/endpoints/create.rb +++ b/lib/api/utilities/endpoints/create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/delete.rb b/lib/api/utilities/endpoints/delete.rb index 8209d329aa..23fbab7e48 100644 --- a/lib/api/utilities/endpoints/delete.rb +++ b/lib/api/utilities/endpoints/delete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/index.rb b/lib/api/utilities/endpoints/index.rb index 9dfeca0b83..9b188c37cf 100644 --- a/lib/api/utilities/endpoints/index.rb +++ b/lib/api/utilities/endpoints/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/modify.rb b/lib/api/utilities/endpoints/modify.rb index 33e62ffbd5..d22b518f90 100644 --- a/lib/api/utilities/endpoints/modify.rb +++ b/lib/api/utilities/endpoints/modify.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/namespaced_lookup.rb b/lib/api/utilities/endpoints/namespaced_lookup.rb index 41645e6b5c..4eb502e185 100644 --- a/lib/api/utilities/endpoints/namespaced_lookup.rb +++ b/lib/api/utilities/endpoints/namespaced_lookup.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/show.rb b/lib/api/utilities/endpoints/show.rb index 871238e86b..be7a886173 100644 --- a/lib/api/utilities/endpoints/show.rb +++ b/lib/api/utilities/endpoints/show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/endpoints/update.rb b/lib/api/utilities/endpoints/update.rb index df886ededc..7276997345 100644 --- a/lib/api/utilities/endpoints/update.rb +++ b/lib/api/utilities/endpoints/update.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/grape_helper.rb b/lib/api/utilities/grape_helper.rb index 44953f8dce..e61e71d23d 100644 --- a/lib/api/utilities/grape_helper.rb +++ b/lib/api/utilities/grape_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/meta_property.rb b/lib/api/utilities/meta_property.rb index 326a97d3da..aa7a31cc05 100644 --- a/lib/api/utilities/meta_property.rb +++ b/lib/api/utilities/meta_property.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/page_size_helper.rb b/lib/api/utilities/page_size_helper.rb index 385edb93c4..eeef7bd13d 100644 --- a/lib/api/utilities/page_size_helper.rb +++ b/lib/api/utilities/page_size_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/payload_representer.rb b/lib/api/utilities/payload_representer.rb index 80e4adbfd7..39fccfa3b1 100644 --- a/lib/api/utilities/payload_representer.rb +++ b/lib/api/utilities/payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/property_name_converter.rb b/lib/api/utilities/property_name_converter.rb index 4bb324c0be..728f76a8c7 100644 --- a/lib/api/utilities/property_name_converter.rb +++ b/lib/api/utilities/property_name_converter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/property_name_converter_query_context.rb b/lib/api/utilities/property_name_converter_query_context.rb index 2c4019ca6d..522612821e 100644 --- a/lib/api/utilities/property_name_converter_query_context.rb +++ b/lib/api/utilities/property_name_converter_query_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/property_name_converter_work_package_dummy.rb b/lib/api/utilities/property_name_converter_work_package_dummy.rb index 3b78f43252..01a2c5a3d0 100644 --- a/lib/api/utilities/property_name_converter_work_package_dummy.rb +++ b/lib/api/utilities/property_name_converter_work_package_dummy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/query_filters_name_converter.rb b/lib/api/utilities/query_filters_name_converter.rb index e35adbeaf7..016056bb40 100644 --- a/lib/api/utilities/query_filters_name_converter.rb +++ b/lib/api/utilities/query_filters_name_converter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/representer_to_json_cache.rb b/lib/api/utilities/representer_to_json_cache.rb index 9ba2cde1de..2977579c64 100644 --- a/lib/api/utilities/representer_to_json_cache.rb +++ b/lib/api/utilities/representer_to_json_cache.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/resource_link_parser.rb b/lib/api/utilities/resource_link_parser.rb index f53ef15a12..176f07e7eb 100644 --- a/lib/api/utilities/resource_link_parser.rb +++ b/lib/api/utilities/resource_link_parser.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/text_renderer.rb b/lib/api/utilities/text_renderer.rb index ce888ef529..cf5c030ffa 100644 --- a/lib/api/utilities/text_renderer.rb +++ b/lib/api/utilities/text_renderer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/url_helper.rb b/lib/api/utilities/url_helper.rb index 2a32be7929..c0e204b6f3 100644 --- a/lib/api/utilities/url_helper.rb +++ b/lib/api/utilities/url_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/utilities/wp_property_name_converter.rb b/lib/api/utilities/wp_property_name_converter.rb index 79ec4ac3a9..95c0c72402 100644 --- a/lib/api/utilities/wp_property_name_converter.rb +++ b/lib/api/utilities/wp_property_name_converter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3.rb b/lib/api/v3.rb index 0162b2aa40..e83216e0a9 100644 --- a/lib/api/v3.rb +++ b/lib/api/v3.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/actions/action_sql_collection_representer.rb b/lib/api/v3/actions/action_sql_collection_representer.rb index 1dd380ecc3..a29957f036 100644 --- a/lib/api/v3/actions/action_sql_collection_representer.rb +++ b/lib/api/v3/actions/action_sql_collection_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/actions/actions_api.rb b/lib/api/v3/actions/actions_api.rb index f7f130e41c..80c0e42f99 100644 --- a/lib/api/v3/actions/actions_api.rb +++ b/lib/api/v3/actions/actions_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activities_api.rb b/lib/api/v3/activities/activities_api.rb index 1f7282522d..2309eaf0a0 100644 --- a/lib/api/v3/activities/activities_api.rb +++ b/lib/api/v3/activities/activities_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activities_by_work_package_api.rb b/lib/api/v3/activities/activities_by_work_package_api.rb index 61be2d9e0e..be335dc4fa 100644 --- a/lib/api/v3/activities/activities_by_work_package_api.rb +++ b/lib/api/v3/activities/activities_by_work_package_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activity_collection_representer.rb b/lib/api/v3/activities/activity_collection_representer.rb index 7ca6eef5da..dd7022ba11 100644 --- a/lib/api/v3/activities/activity_collection_representer.rb +++ b/lib/api/v3/activities/activity_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activity_eager_loading_wrapper.rb b/lib/api/v3/activities/activity_eager_loading_wrapper.rb index e4708268c2..ee62f34d2c 100644 --- a/lib/api/v3/activities/activity_eager_loading_wrapper.rb +++ b/lib/api/v3/activities/activity_eager_loading_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activity_payload_representer.rb b/lib/api/v3/activities/activity_payload_representer.rb index e391f30145..6e50ba4b4e 100644 --- a/lib/api/v3/activities/activity_payload_representer.rb +++ b/lib/api/v3/activities/activity_payload_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activity_property_formatters.rb b/lib/api/v3/activities/activity_property_formatters.rb index 3bc7a8fb6e..e673ca545a 100644 --- a/lib/api/v3/activities/activity_property_formatters.rb +++ b/lib/api/v3/activities/activity_property_formatters.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/activities/activity_representer.rb b/lib/api/v3/activities/activity_representer.rb index 27bdc2bda7..b3065be825 100644 --- a/lib/api/v3/activities/activity_representer.rb +++ b/lib/api/v3/activities/activity_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachable_payload_representer_mixin.rb b/lib/api/v3/attachments/attachable_payload_representer_mixin.rb index 70463e258b..4197dc90b4 100644 --- a/lib/api/v3/attachments/attachable_payload_representer_mixin.rb +++ b/lib/api/v3/attachments/attachable_payload_representer_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachable_representer_mixin.rb b/lib/api/v3/attachments/attachable_representer_mixin.rb index 41f4b1f540..e03841d340 100644 --- a/lib/api/v3/attachments/attachable_representer_mixin.rb +++ b/lib/api/v3/attachments/attachable_representer_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachment_collection_representer.rb b/lib/api/v3/attachments/attachment_collection_representer.rb index d6b4fee645..05d846b592 100644 --- a/lib/api/v3/attachments/attachment_collection_representer.rb +++ b/lib/api/v3/attachments/attachment_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachment_parsing_representer.rb b/lib/api/v3/attachments/attachment_parsing_representer.rb index d32c5a60da..5c1f972a77 100644 --- a/lib/api/v3/attachments/attachment_parsing_representer.rb +++ b/lib/api/v3/attachments/attachment_parsing_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachment_representer.rb b/lib/api/v3/attachments/attachment_representer.rb index 30ff72d6f0..e95667d5f0 100644 --- a/lib/api/v3/attachments/attachment_representer.rb +++ b/lib/api/v3/attachments/attachment_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachment_upload_representer.rb b/lib/api/v3/attachments/attachment_upload_representer.rb index e88647957e..9f1bcab098 100644 --- a/lib/api/v3/attachments/attachment_upload_representer.rb +++ b/lib/api/v3/attachments/attachment_upload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_api.rb b/lib/api/v3/attachments/attachments_api.rb index 73ef007b8c..4418cdbcd7 100644 --- a/lib/api/v3/attachments/attachments_api.rb +++ b/lib/api/v3/attachments/attachments_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_by_container_api.rb b/lib/api/v3/attachments/attachments_by_container_api.rb index 875ac711f7..b1ee90afd3 100644 --- a/lib/api/v3/attachments/attachments_by_container_api.rb +++ b/lib/api/v3/attachments/attachments_by_container_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_by_help_text_api.rb b/lib/api/v3/attachments/attachments_by_help_text_api.rb index 8942dfaed0..c20e45ec1d 100644 --- a/lib/api/v3/attachments/attachments_by_help_text_api.rb +++ b/lib/api/v3/attachments/attachments_by_help_text_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_by_post_api.rb b/lib/api/v3/attachments/attachments_by_post_api.rb index 393481f877..81b019ebbb 100644 --- a/lib/api/v3/attachments/attachments_by_post_api.rb +++ b/lib/api/v3/attachments/attachments_by_post_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_by_wiki_page_api.rb b/lib/api/v3/attachments/attachments_by_wiki_page_api.rb index 944e0c48e6..56f10d2301 100644 --- a/lib/api/v3/attachments/attachments_by_wiki_page_api.rb +++ b/lib/api/v3/attachments/attachments_by_wiki_page_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/attachments/attachments_by_work_package_api.rb b/lib/api/v3/attachments/attachments_by_work_package_api.rb index 05f332f9ee..a1dfa6d1d6 100644 --- a/lib/api/v3/attachments/attachments_by_work_package_api.rb +++ b/lib/api/v3/attachments/attachments_by_work_package_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/backups/backup_representer.rb b/lib/api/v3/backups/backup_representer.rb index 44f2896c4e..636e3dd95f 100644 --- a/lib/api/v3/backups/backup_representer.rb +++ b/lib/api/v3/backups/backup_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/backups/backups_api.rb b/lib/api/v3/backups/backups_api.rb index 82f6ab43c2..debadeebc2 100644 --- a/lib/api/v3/backups/backups_api.rb +++ b/lib/api/v3/backups/backups_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/capabilities/capabilities_api.rb b/lib/api/v3/capabilities/capabilities_api.rb index 891babd702..d56f5a15c9 100644 --- a/lib/api/v3/capabilities/capabilities_api.rb +++ b/lib/api/v3/capabilities/capabilities_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/capabilities/capability_sql_collection_representer.rb b/lib/api/v3/capabilities/capability_sql_collection_representer.rb index cb24cb43f1..5e6192ab18 100644 --- a/lib/api/v3/capabilities/capability_sql_collection_representer.rb +++ b/lib/api/v3/capabilities/capability_sql_collection_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/capabilities/contexts/global_api.rb b/lib/api/v3/capabilities/contexts/global_api.rb index 9db4df3885..c2f5a3034f 100644 --- a/lib/api/v3/capabilities/contexts/global_api.rb +++ b/lib/api/v3/capabilities/contexts/global_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/capabilities/contexts/global_representer.rb b/lib/api/v3/capabilities/contexts/global_representer.rb index 47f733e88e..33b90a7ec4 100644 --- a/lib/api/v3/capabilities/contexts/global_representer.rb +++ b/lib/api/v3/capabilities/contexts/global_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/categories/categories_api.rb b/lib/api/v3/categories/categories_api.rb index 0a2f90f3c8..2b8e64c56e 100644 --- a/lib/api/v3/categories/categories_api.rb +++ b/lib/api/v3/categories/categories_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/categories/categories_by_project_api.rb b/lib/api/v3/categories/categories_by_project_api.rb index bd5d360783..a00bc41617 100644 --- a/lib/api/v3/categories/categories_by_project_api.rb +++ b/lib/api/v3/categories/categories_by_project_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/categories/category_collection_representer.rb b/lib/api/v3/categories/category_collection_representer.rb index 9a3cadbfaf..67336bb647 100644 --- a/lib/api/v3/categories/category_collection_representer.rb +++ b/lib/api/v3/categories/category_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/categories/category_representer.rb b/lib/api/v3/categories/category_representer.rb index e006b9251c..d3e8f1adc7 100644 --- a/lib/api/v3/categories/category_representer.rb +++ b/lib/api/v3/categories/category_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/configuration/configuration_api.rb b/lib/api/v3/configuration/configuration_api.rb index fead3024de..edce040212 100644 --- a/lib/api/v3/configuration/configuration_api.rb +++ b/lib/api/v3/configuration/configuration_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/configuration/configuration_representer.rb b/lib/api/v3/configuration/configuration_representer.rb index 85c47c51ce..7e568978ca 100644 --- a/lib/api/v3/configuration/configuration_representer.rb +++ b/lib/api/v3/configuration/configuration_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/cors.rb b/lib/api/v3/cors.rb index 2d905a846c..c4d0131e5f 100644 --- a/lib/api/v3/cors.rb +++ b/lib/api/v3/cors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/custom_actions/custom_action_execute_representer.rb b/lib/api/v3/custom_actions/custom_action_execute_representer.rb index 431a2ddf27..baf54aaf5a 100644 --- a/lib/api/v3/custom_actions/custom_action_execute_representer.rb +++ b/lib/api/v3/custom_actions/custom_action_execute_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/custom_actions/custom_action_representer.rb b/lib/api/v3/custom_actions/custom_action_representer.rb index 0cc7ddb2a8..f31b30090e 100644 --- a/lib/api/v3/custom_actions/custom_action_representer.rb +++ b/lib/api/v3/custom_actions/custom_action_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/custom_actions/custom_actions_api.rb b/lib/api/v3/custom_actions/custom_actions_api.rb index adc02ac3ef..53fb961cb5 100644 --- a/lib/api/v3/custom_actions/custom_actions_api.rb +++ b/lib/api/v3/custom_actions/custom_actions_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/custom_options/custom_option_representer.rb b/lib/api/v3/custom_options/custom_option_representer.rb index 3defdc4c59..39c1539776 100644 --- a/lib/api/v3/custom_options/custom_option_representer.rb +++ b/lib/api/v3/custom_options/custom_option_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/custom_options/custom_options_api.rb b/lib/api/v3/custom_options/custom_options_api.rb index efd7663606..3330d183f3 100644 --- a/lib/api/v3/custom_options/custom_options_api.rb +++ b/lib/api/v3/custom_options/custom_options_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/errors/error_representer.rb b/lib/api/v3/errors/error_representer.rb index c0336b6264..0fab60df3d 100644 --- a/lib/api/v3/errors/error_representer.rb +++ b/lib/api/v3/errors/error_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/formatter/txt_charset.rb b/lib/api/v3/formatter/txt_charset.rb index c2c957c248..910b4080e9 100644 --- a/lib/api/v3/formatter/txt_charset.rb +++ b/lib/api/v3/formatter/txt_charset.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/groups/group_collection_representer.rb b/lib/api/v3/groups/group_collection_representer.rb index afda35b9ef..34c959f79d 100644 --- a/lib/api/v3/groups/group_collection_representer.rb +++ b/lib/api/v3/groups/group_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/groups/group_payload_representer.rb b/lib/api/v3/groups/group_payload_representer.rb index 7887495cdc..7f602531c2 100644 --- a/lib/api/v3/groups/group_payload_representer.rb +++ b/lib/api/v3/groups/group_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/groups/group_representer.rb b/lib/api/v3/groups/group_representer.rb index 99650757ac..d6a1862ba0 100644 --- a/lib/api/v3/groups/group_representer.rb +++ b/lib/api/v3/groups/group_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/groups/groups_api.rb b/lib/api/v3/groups/groups_api.rb index 73e64b18e7..f6cfe8da16 100644 --- a/lib/api/v3/groups/groups_api.rb +++ b/lib/api/v3/groups/groups_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/help_texts/help_text_collection_representer.rb b/lib/api/v3/help_texts/help_text_collection_representer.rb index 657ad49743..0b5f550770 100644 --- a/lib/api/v3/help_texts/help_text_collection_representer.rb +++ b/lib/api/v3/help_texts/help_text_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/help_texts/help_text_representer.rb b/lib/api/v3/help_texts/help_text_representer.rb index 8a8597e374..3b3ea9473d 100644 --- a/lib/api/v3/help_texts/help_text_representer.rb +++ b/lib/api/v3/help_texts/help_text_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/help_texts/help_texts_api.rb b/lib/api/v3/help_texts/help_texts_api.rb index 8b13eb2cab..0f405a11ad 100644 --- a/lib/api/v3/help_texts/help_texts_api.rb +++ b/lib/api/v3/help_texts/help_texts_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/available_projects_api.rb b/lib/api/v3/memberships/available_projects_api.rb index 8b74108796..8e268630dd 100644 --- a/lib/api/v3/memberships/available_projects_api.rb +++ b/lib/api/v3/memberships/available_projects_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/create_form_api.rb b/lib/api/v3/memberships/create_form_api.rb index c2b146a0d8..f68db28d04 100644 --- a/lib/api/v3/memberships/create_form_api.rb +++ b/lib/api/v3/memberships/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/create_form_representer.rb b/lib/api/v3/memberships/create_form_representer.rb index 0ca8dcddd3..762ab57b26 100644 --- a/lib/api/v3/memberships/create_form_representer.rb +++ b/lib/api/v3/memberships/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/form_representer.rb b/lib/api/v3/memberships/form_representer.rb index 6a76c8ba3b..4ffc0360bd 100644 --- a/lib/api/v3/memberships/form_representer.rb +++ b/lib/api/v3/memberships/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/membership_collection_representer.rb b/lib/api/v3/memberships/membership_collection_representer.rb index 6beed3a63c..c333646e8f 100644 --- a/lib/api/v3/memberships/membership_collection_representer.rb +++ b/lib/api/v3/memberships/membership_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/membership_meta_representer.rb b/lib/api/v3/memberships/membership_meta_representer.rb index bcc430f394..cb5aebd26e 100644 --- a/lib/api/v3/memberships/membership_meta_representer.rb +++ b/lib/api/v3/memberships/membership_meta_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/membership_payload_representer.rb b/lib/api/v3/memberships/membership_payload_representer.rb index 0a801fea97..4e17b36501 100644 --- a/lib/api/v3/memberships/membership_payload_representer.rb +++ b/lib/api/v3/memberships/membership_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/membership_representer.rb b/lib/api/v3/memberships/membership_representer.rb index 80453c0782..f0bb43e4f5 100644 --- a/lib/api/v3/memberships/membership_representer.rb +++ b/lib/api/v3/memberships/membership_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/memberships_api.rb b/lib/api/v3/memberships/memberships_api.rb index bb82988813..ff678a7da4 100644 --- a/lib/api/v3/memberships/memberships_api.rb +++ b/lib/api/v3/memberships/memberships_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/schemas/membership_schema_api.rb b/lib/api/v3/memberships/schemas/membership_schema_api.rb index 911cc8afa1..c821e6a23d 100644 --- a/lib/api/v3/memberships/schemas/membership_schema_api.rb +++ b/lib/api/v3/memberships/schemas/membership_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/schemas/membership_schema_representer.rb b/lib/api/v3/memberships/schemas/membership_schema_representer.rb index 98566d0cf8..a08461d426 100644 --- a/lib/api/v3/memberships/schemas/membership_schema_representer.rb +++ b/lib/api/v3/memberships/schemas/membership_schema_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/update_form_api.rb b/lib/api/v3/memberships/update_form_api.rb index 09dc3c55e0..d478c06839 100644 --- a/lib/api/v3/memberships/update_form_api.rb +++ b/lib/api/v3/memberships/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/memberships/update_form_representer.rb b/lib/api/v3/memberships/update_form_representer.rb index b56c54c95b..04d2d60137 100644 --- a/lib/api/v3/memberships/update_form_representer.rb +++ b/lib/api/v3/memberships/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/news/news_api.rb b/lib/api/v3/news/news_api.rb index 5e218eda73..0785cc773e 100644 --- a/lib/api/v3/news/news_api.rb +++ b/lib/api/v3/news/news_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/news/news_collection_representer.rb b/lib/api/v3/news/news_collection_representer.rb index 23a61f0dd0..9868e6cbb5 100644 --- a/lib/api/v3/news/news_collection_representer.rb +++ b/lib/api/v3/news/news_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/news/news_representer.rb b/lib/api/v3/news/news_representer.rb index e6d9b587af..0fec8db869 100644 --- a/lib/api/v3/news/news_representer.rb +++ b/lib/api/v3/news/news_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/notifications/notification_collection_representer.rb b/lib/api/v3/notifications/notification_collection_representer.rb index 6e12c8fb71..23c0fc6f13 100644 --- a/lib/api/v3/notifications/notification_collection_representer.rb +++ b/lib/api/v3/notifications/notification_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/notifications/notification_eager_loading_wrapper.rb b/lib/api/v3/notifications/notification_eager_loading_wrapper.rb index 3c2cad0f8e..aa19db76fa 100644 --- a/lib/api/v3/notifications/notification_eager_loading_wrapper.rb +++ b/lib/api/v3/notifications/notification_eager_loading_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/notifications/notification_representer.rb b/lib/api/v3/notifications/notification_representer.rb index 7a6929581b..4e2a8cada4 100644 --- a/lib/api/v3/notifications/notification_representer.rb +++ b/lib/api/v3/notifications/notification_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/notifications/notifications_api.rb b/lib/api/v3/notifications/notifications_api.rb index 107e5c8afe..cdf86481c8 100644 --- a/lib/api/v3/notifications/notifications_api.rb +++ b/lib/api/v3/notifications/notifications_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/parser.rb b/lib/api/v3/parser.rb index 503e8acbe6..25be861abd 100644 --- a/lib/api/v3/parser.rb +++ b/lib/api/v3/parser.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/placeholder_users/placeholder_user_collection_representer.rb b/lib/api/v3/placeholder_users/placeholder_user_collection_representer.rb index 52c408d0e6..a8cee7965a 100644 --- a/lib/api/v3/placeholder_users/placeholder_user_collection_representer.rb +++ b/lib/api/v3/placeholder_users/placeholder_user_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/placeholder_users/placeholder_user_payload_representer.rb b/lib/api/v3/placeholder_users/placeholder_user_payload_representer.rb index b93588002c..c3d0e5e613 100644 --- a/lib/api/v3/placeholder_users/placeholder_user_payload_representer.rb +++ b/lib/api/v3/placeholder_users/placeholder_user_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/placeholder_users/placeholder_user_representer.rb b/lib/api/v3/placeholder_users/placeholder_user_representer.rb index 5634050ea3..1bdfb3c8e6 100644 --- a/lib/api/v3/placeholder_users/placeholder_user_representer.rb +++ b/lib/api/v3/placeholder_users/placeholder_user_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/placeholder_users/placeholder_users_api.rb b/lib/api/v3/placeholder_users/placeholder_users_api.rb index 88c9d2e45e..2fed7aaa9b 100644 --- a/lib/api/v3/placeholder_users/placeholder_users_api.rb +++ b/lib/api/v3/placeholder_users/placeholder_users_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/posts/post_representer.rb b/lib/api/v3/posts/post_representer.rb index 37b6e36ffa..170d715c40 100644 --- a/lib/api/v3/posts/post_representer.rb +++ b/lib/api/v3/posts/post_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/posts/posts_api.rb b/lib/api/v3/posts/posts_api.rb index 5de373b2c4..22721c35de 100644 --- a/lib/api/v3/posts/posts_api.rb +++ b/lib/api/v3/posts/posts_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/principals/not_builtin_elements.rb b/lib/api/v3/principals/not_builtin_elements.rb index a4bb3ebcf2..33b5922ce3 100644 --- a/lib/api/v3/principals/not_builtin_elements.rb +++ b/lib/api/v3/principals/not_builtin_elements.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/principals/principal_representer.rb b/lib/api/v3/principals/principal_representer.rb index a39961b28d..77a854c034 100644 --- a/lib/api/v3/principals/principal_representer.rb +++ b/lib/api/v3/principals/principal_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/principals/principal_representer_factory.rb b/lib/api/v3/principals/principal_representer_factory.rb index ad0ed5868b..f4e0d9c28e 100644 --- a/lib/api/v3/principals/principal_representer_factory.rb +++ b/lib/api/v3/principals/principal_representer_factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/principals/principal_type.rb b/lib/api/v3/principals/principal_type.rb index a4ace271d5..dfd113c977 100644 --- a/lib/api/v3/principals/principal_type.rb +++ b/lib/api/v3/principals/principal_type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/principals/principals_api.rb b/lib/api/v3/principals/principals_api.rb index cba7c538e8..a9061621a1 100644 --- a/lib/api/v3/principals/principals_api.rb +++ b/lib/api/v3/principals/principals_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/priorities/priorities_api.rb b/lib/api/v3/priorities/priorities_api.rb index b5147287fe..753774136c 100644 --- a/lib/api/v3/priorities/priorities_api.rb +++ b/lib/api/v3/priorities/priorities_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/priorities/priority_collection_representer.rb b/lib/api/v3/priorities/priority_collection_representer.rb index 72a389584f..91f07b954a 100644 --- a/lib/api/v3/priorities/priority_collection_representer.rb +++ b/lib/api/v3/priorities/priority_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/priorities/priority_representer.rb b/lib/api/v3/priorities/priority_representer.rb index 4f85bbf583..1a815b3b6d 100644 --- a/lib/api/v3/priorities/priority_representer.rb +++ b/lib/api/v3/priorities/priority_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/available_assignees_api.rb b/lib/api/v3/projects/available_assignees_api.rb index 0554ccaaf6..38ab596a9e 100644 --- a/lib/api/v3/projects/available_assignees_api.rb +++ b/lib/api/v3/projects/available_assignees_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/available_parents_api.rb b/lib/api/v3/projects/available_parents_api.rb index 9da2121a2a..fa268b53cb 100644 --- a/lib/api/v3/projects/available_parents_api.rb +++ b/lib/api/v3/projects/available_parents_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/available_responsibles_api.rb b/lib/api/v3/projects/available_responsibles_api.rb index ae0ac56484..5b511756ab 100644 --- a/lib/api/v3/projects/available_responsibles_api.rb +++ b/lib/api/v3/projects/available_responsibles_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/copy_api.rb b/lib/api/v3/projects/copy/copy_api.rb index 495097b695..0aaa477e7b 100644 --- a/lib/api/v3/projects/copy/copy_api.rb +++ b/lib/api/v3/projects/copy/copy_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/create_form_api.rb b/lib/api/v3/projects/copy/create_form_api.rb index 4494678d64..1b041c8988 100644 --- a/lib/api/v3/projects/copy/create_form_api.rb +++ b/lib/api/v3/projects/copy/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/create_form_representer.rb b/lib/api/v3/projects/copy/create_form_representer.rb index 45da73e50a..988df3d358 100644 --- a/lib/api/v3/projects/copy/create_form_representer.rb +++ b/lib/api/v3/projects/copy/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/form_representer.rb b/lib/api/v3/projects/copy/form_representer.rb index ce3f807b03..e16b605fef 100644 --- a/lib/api/v3/projects/copy/form_representer.rb +++ b/lib/api/v3/projects/copy/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/parse_copy_params_service.rb b/lib/api/v3/projects/copy/parse_copy_params_service.rb index 1dc13de42f..77e1ad9925 100644 --- a/lib/api/v3/projects/copy/parse_copy_params_service.rb +++ b/lib/api/v3/projects/copy/parse_copy_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/project_copy_meta_representer.rb b/lib/api/v3/projects/copy/project_copy_meta_representer.rb index 4455bb22f0..485e49344b 100644 --- a/lib/api/v3/projects/copy/project_copy_meta_representer.rb +++ b/lib/api/v3/projects/copy/project_copy_meta_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/project_copy_payload_representer.rb b/lib/api/v3/projects/copy/project_copy_payload_representer.rb index 8e06755e6d..696ac913e2 100644 --- a/lib/api/v3/projects/copy/project_copy_payload_representer.rb +++ b/lib/api/v3/projects/copy/project_copy_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/copy/project_copy_schema_representer.rb b/lib/api/v3/projects/copy/project_copy_schema_representer.rb index 63d03e4bdf..2f054c6763 100644 --- a/lib/api/v3/projects/copy/project_copy_schema_representer.rb +++ b/lib/api/v3/projects/copy/project_copy_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/create_form_api.rb b/lib/api/v3/projects/create_form_api.rb index 0f653f2fca..755217f2bb 100644 --- a/lib/api/v3/projects/create_form_api.rb +++ b/lib/api/v3/projects/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/create_form_representer.rb b/lib/api/v3/projects/create_form_representer.rb index 7a407add2e..10a9102e34 100644 --- a/lib/api/v3/projects/create_form_representer.rb +++ b/lib/api/v3/projects/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/form_representer.rb b/lib/api/v3/projects/form_representer.rb index 23cf68f7dd..3d81661c18 100644 --- a/lib/api/v3/projects/form_representer.rb +++ b/lib/api/v3/projects/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/project_collection_representer.rb b/lib/api/v3/projects/project_collection_representer.rb index 02b9caa8ed..06eb4630d9 100644 --- a/lib/api/v3/projects/project_collection_representer.rb +++ b/lib/api/v3/projects/project_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/project_eager_loading_wrapper.rb b/lib/api/v3/projects/project_eager_loading_wrapper.rb index 644f6f64fb..43ca56935c 100644 --- a/lib/api/v3/projects/project_eager_loading_wrapper.rb +++ b/lib/api/v3/projects/project_eager_loading_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/project_payload_representer.rb b/lib/api/v3/projects/project_payload_representer.rb index 734b5dcdea..779210d010 100644 --- a/lib/api/v3/projects/project_payload_representer.rb +++ b/lib/api/v3/projects/project_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/project_representer.rb b/lib/api/v3/projects/project_representer.rb index 9404c5711a..4add4363c2 100644 --- a/lib/api/v3/projects/project_representer.rb +++ b/lib/api/v3/projects/project_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/projects_api.rb b/lib/api/v3/projects/projects_api.rb index 9141ff8829..73a33801c7 100644 --- a/lib/api/v3/projects/projects_api.rb +++ b/lib/api/v3/projects/projects_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/schemas/project_schema_api.rb b/lib/api/v3/projects/schemas/project_schema_api.rb index ad0141fdf5..199c4560c1 100644 --- a/lib/api/v3/projects/schemas/project_schema_api.rb +++ b/lib/api/v3/projects/schemas/project_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/schemas/project_schema_representer.rb b/lib/api/v3/projects/schemas/project_schema_representer.rb index cd3049c0c4..13c81b0c51 100644 --- a/lib/api/v3/projects/schemas/project_schema_representer.rb +++ b/lib/api/v3/projects/schemas/project_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/statuses/status_representer.rb b/lib/api/v3/projects/statuses/status_representer.rb index d36b1da50d..28f0d9da18 100644 --- a/lib/api/v3/projects/statuses/status_representer.rb +++ b/lib/api/v3/projects/statuses/status_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/statuses/statuses_api.rb b/lib/api/v3/projects/statuses/statuses_api.rb index a86d46c143..c5e7ff0c0a 100644 --- a/lib/api/v3/projects/statuses/statuses_api.rb +++ b/lib/api/v3/projects/statuses/statuses_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/update_form_api.rb b/lib/api/v3/projects/update_form_api.rb index de9321ad06..b17d6e70b2 100644 --- a/lib/api/v3/projects/update_form_api.rb +++ b/lib/api/v3/projects/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/projects/update_form_representer.rb b/lib/api/v3/projects/update_form_representer.rb index 13dd49de51..eb90f107ee 100644 --- a/lib/api/v3/projects/update_form_representer.rb +++ b/lib/api/v3/projects/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_column_representer.rb b/lib/api/v3/queries/columns/query_column_representer.rb index 285854be0b..d89765400b 100644 --- a/lib/api/v3/queries/columns/query_column_representer.rb +++ b/lib/api/v3/queries/columns/query_column_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_columns_api.rb b/lib/api/v3/queries/columns/query_columns_api.rb index 970d08745b..42b2bd20a6 100644 --- a/lib/api/v3/queries/columns/query_columns_api.rb +++ b/lib/api/v3/queries/columns/query_columns_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_columns_factory.rb b/lib/api/v3/queries/columns/query_columns_factory.rb index 5b6c028182..3b877d7a73 100644 --- a/lib/api/v3/queries/columns/query_columns_factory.rb +++ b/lib/api/v3/queries/columns/query_columns_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_property_column_representer.rb b/lib/api/v3/queries/columns/query_property_column_representer.rb index 3dd6dbad91..c12bab5938 100644 --- a/lib/api/v3/queries/columns/query_property_column_representer.rb +++ b/lib/api/v3/queries/columns/query_property_column_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_relation_of_type_column_representer.rb b/lib/api/v3/queries/columns/query_relation_of_type_column_representer.rb index ebef1e7eb3..ab0e4b21db 100644 --- a/lib/api/v3/queries/columns/query_relation_of_type_column_representer.rb +++ b/lib/api/v3/queries/columns/query_relation_of_type_column_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/columns/query_relation_to_type_column_representer.rb b/lib/api/v3/queries/columns/query_relation_to_type_column_representer.rb index 8bb899ea55..99ed59fbce 100644 --- a/lib/api/v3/queries/columns/query_relation_to_type_column_representer.rb +++ b/lib/api/v3/queries/columns/query_relation_to_type_column_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/create_form_api.rb b/lib/api/v3/queries/create_form_api.rb index edd1d98324..4c3a5d4ee6 100644 --- a/lib/api/v3/queries/create_form_api.rb +++ b/lib/api/v3/queries/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/create_form_representer.rb b/lib/api/v3/queries/create_form_representer.rb index 1cc20e5bb8..7488ae3718 100644 --- a/lib/api/v3/queries/create_form_representer.rb +++ b/lib/api/v3/queries/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/filters/query_filter_decorator.rb b/lib/api/v3/queries/filters/query_filter_decorator.rb index 56b88058ae..d4ec6fc9f8 100644 --- a/lib/api/v3/queries/filters/query_filter_decorator.rb +++ b/lib/api/v3/queries/filters/query_filter_decorator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/filters/query_filter_instance_payload_representer.rb b/lib/api/v3/queries/filters/query_filter_instance_payload_representer.rb index 7cb852a117..90c5314203 100644 --- a/lib/api/v3/queries/filters/query_filter_instance_payload_representer.rb +++ b/lib/api/v3/queries/filters/query_filter_instance_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/filters/query_filter_instance_representer.rb b/lib/api/v3/queries/filters/query_filter_instance_representer.rb index 5f58addcc0..06191f3c23 100644 --- a/lib/api/v3/queries/filters/query_filter_instance_representer.rb +++ b/lib/api/v3/queries/filters/query_filter_instance_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/filters/query_filter_representer.rb b/lib/api/v3/queries/filters/query_filter_representer.rb index 6b40aaf823..3c0e36afaa 100644 --- a/lib/api/v3/queries/filters/query_filter_representer.rb +++ b/lib/api/v3/queries/filters/query_filter_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/filters/query_filters_api.rb b/lib/api/v3/queries/filters/query_filters_api.rb index e3997ee6c9..41224e2a9f 100644 --- a/lib/api/v3/queries/filters/query_filters_api.rb +++ b/lib/api/v3/queries/filters/query_filters_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/form_representer.rb b/lib/api/v3/queries/form_representer.rb index ae37e7b48a..bb40293d85 100644 --- a/lib/api/v3/queries/form_representer.rb +++ b/lib/api/v3/queries/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/group_bys/query_group_by_representer.rb b/lib/api/v3/queries/group_bys/query_group_by_representer.rb index 5da9485a3e..fc9380ff83 100644 --- a/lib/api/v3/queries/group_bys/query_group_by_representer.rb +++ b/lib/api/v3/queries/group_bys/query_group_by_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/group_bys/query_group_bys_api.rb b/lib/api/v3/queries/group_bys/query_group_bys_api.rb index 6d51dbdaaf..573c3e6888 100644 --- a/lib/api/v3/queries/group_bys/query_group_bys_api.rb +++ b/lib/api/v3/queries/group_bys/query_group_bys_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/helpers/query_representer_response.rb b/lib/api/v3/queries/helpers/query_representer_response.rb index 73800e466c..a423de402e 100644 --- a/lib/api/v3/queries/helpers/query_representer_response.rb +++ b/lib/api/v3/queries/helpers/query_representer_response.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/operators/query_operator_representer.rb b/lib/api/v3/queries/operators/query_operator_representer.rb index 3f987f36eb..7ed3d6939c 100644 --- a/lib/api/v3/queries/operators/query_operator_representer.rb +++ b/lib/api/v3/queries/operators/query_operator_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/operators/query_operators_api.rb b/lib/api/v3/queries/operators/query_operators_api.rb index 42d97d32ec..0f15deacb1 100644 --- a/lib/api/v3/queries/operators/query_operators_api.rb +++ b/lib/api/v3/queries/operators/query_operators_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/order/query_order_api.rb b/lib/api/v3/queries/order/query_order_api.rb index fe0ed0c990..2e948c966c 100644 --- a/lib/api/v3/queries/order/query_order_api.rb +++ b/lib/api/v3/queries/order/query_order_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/projections/query_projection_representer.rb b/lib/api/v3/queries/projections/query_projection_representer.rb index 8a2d35cbd8..30bff8a73f 100644 --- a/lib/api/v3/queries/projections/query_projection_representer.rb +++ b/lib/api/v3/queries/projections/query_projection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/queries_api.rb b/lib/api/v3/queries/queries_api.rb index 614d2552b8..7076eac455 100644 --- a/lib/api/v3/queries/queries_api.rb +++ b/lib/api/v3/queries/queries_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/queries_by_project_api.rb b/lib/api/v3/queries/queries_by_project_api.rb index 6a195a58e5..213725b5ed 100644 --- a/lib/api/v3/queries/queries_by_project_api.rb +++ b/lib/api/v3/queries/queries_by_project_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/query_collection_representer.rb b/lib/api/v3/queries/query_collection_representer.rb index 2ea0fd6c2d..b6aaddbef6 100644 --- a/lib/api/v3/queries/query_collection_representer.rb +++ b/lib/api/v3/queries/query_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/query_helper.rb b/lib/api/v3/queries/query_helper.rb index cdb43c44fb..9d511eff04 100644 --- a/lib/api/v3/queries/query_helper.rb +++ b/lib/api/v3/queries/query_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/query_params_representer.rb b/lib/api/v3/queries/query_params_representer.rb index ea6725ef7a..8956273423 100644 --- a/lib/api/v3/queries/query_params_representer.rb +++ b/lib/api/v3/queries/query_params_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/query_payload_representer.rb b/lib/api/v3/queries/query_payload_representer.rb index aba47410b4..e1aac0e5bf 100644 --- a/lib/api/v3/queries/query_payload_representer.rb +++ b/lib/api/v3/queries/query_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/query_representer.rb b/lib/api/v3/queries/query_representer.rb index 7186924e47..c48104f250 100644 --- a/lib/api/v3/queries/query_representer.rb +++ b/lib/api/v3/queries/query_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer.rb index 3a96f60b89..1964acd27d 100644 --- a/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/assignee_or_group_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/assignee_or_group_filter_dependency_representer.rb index 5f7d60d57e..f9cd756635 100644 --- a/lib/api/v3/queries/schemas/assignee_or_group_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/assignee_or_group_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/blocked_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/blocked_filter_dependency_representer.rb index 68f3d36378..050175420e 100644 --- a/lib/api/v3/queries/schemas/blocked_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/blocked_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/blocks_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/blocks_filter_dependency_representer.rb index d3c1041b05..05a97f173c 100644 --- a/lib/api/v3/queries/schemas/blocks_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/blocks_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/boolean_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/boolean_filter_dependency_representer.rb index 41e702b89f..f2e9d985b3 100644 --- a/lib/api/v3/queries/schemas/boolean_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/boolean_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/by_work_package_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/by_work_package_filter_dependency_representer.rb index dbcd2841e3..92296f5a73 100644 --- a/lib/api/v3/queries/schemas/by_work_package_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/by_work_package_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/category_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/category_filter_dependency_representer.rb index fb127e29fe..eaef6707f2 100644 --- a/lib/api/v3/queries/schemas/category_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/category_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/custom_field_json_cache_key_mixin.rb b/lib/api/v3/queries/schemas/custom_field_json_cache_key_mixin.rb index cf25e6a7dd..de8c2d80db 100644 --- a/lib/api/v3/queries/schemas/custom_field_json_cache_key_mixin.rb +++ b/lib/api/v3/queries/schemas/custom_field_json_cache_key_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer.rb index a702b43438..b10b664da0 100644 --- a/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/date_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/date_filter_dependency_representer.rb index 3c25982790..88dcdbd8af 100644 --- a/lib/api/v3/queries/schemas/date_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/date_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/date_time_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/date_time_filter_dependency_representer.rb index cca2b5bafa..4d6c3fd7b5 100644 --- a/lib/api/v3/queries/schemas/date_time_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/date_time_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer.rb index 3f3ab27891..853cffd18a 100644 --- a/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer.rb index 8c13b46ee9..3e68d18daa 100644 --- a/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/filter_dependency_decorator.rb b/lib/api/v3/queries/schemas/filter_dependency_decorator.rb index ed6923ec90..c4c012310e 100644 --- a/lib/api/v3/queries/schemas/filter_dependency_decorator.rb +++ b/lib/api/v3/queries/schemas/filter_dependency_decorator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/filter_dependency_representer.rb b/lib/api/v3/queries/schemas/filter_dependency_representer.rb index 13f3f9eacf..71d6bf51a3 100644 --- a/lib/api/v3/queries/schemas/filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb b/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb index da92e5aa00..2b93401a04 100644 --- a/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb +++ b/lib/api/v3/queries/schemas/filter_dependency_representer_factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/float_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/float_filter_dependency_representer.rb index 07ed554266..803488c150 100644 --- a/lib/api/v3/queries/schemas/float_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/float_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/follows_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/follows_filter_dependency_representer.rb index b261445e30..c6142d92cf 100644 --- a/lib/api/v3/queries/schemas/follows_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/follows_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/group_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/group_filter_dependency_representer.rb index 559369503e..ae227c0420 100644 --- a/lib/api/v3/queries/schemas/group_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/group_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/id_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/id_filter_dependency_representer.rb index d4992779b0..3e394e49e0 100644 --- a/lib/api/v3/queries/schemas/id_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/id_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/includes_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/includes_filter_dependency_representer.rb index bdea210449..2c3a8373ba 100644 --- a/lib/api/v3/queries/schemas/includes_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/includes_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/integer_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/integer_filter_dependency_representer.rb index 1bcb068a23..0dac7ff2f4 100644 --- a/lib/api/v3/queries/schemas/integer_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/integer_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/manual_sort_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/manual_sort_filter_dependency_representer.rb index b3fdd5bb0f..55c97c0c89 100644 --- a/lib/api/v3/queries/schemas/manual_sort_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/manual_sort_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/only_subproject_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/only_subproject_filter_dependency_representer.rb index 7c6287157a..622004e88f 100644 --- a/lib/api/v3/queries/schemas/only_subproject_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/only_subproject_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/parent_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/parent_filter_dependency_representer.rb index 82cfc80a23..6730fee85a 100644 --- a/lib/api/v3/queries/schemas/parent_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/parent_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/partof_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/partof_filter_dependency_representer.rb index 656feed9f9..7acebe358d 100644 --- a/lib/api/v3/queries/schemas/partof_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/partof_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/precedes_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/precedes_filter_dependency_representer.rb index 68fada7a1d..3fbcc013c9 100644 --- a/lib/api/v3/queries/schemas/precedes_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/precedes_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/principal_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/principal_filter_dependency_representer.rb index c0665477ca..77bb5133d6 100644 --- a/lib/api/v3/queries/schemas/principal_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/principal_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/priority_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/priority_filter_dependency_representer.rb index 3a7cd7a798..08eb404e28 100644 --- a/lib/api/v3/queries/schemas/priority_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/priority_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/project_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/project_filter_dependency_representer.rb index a9362b53b5..10a2bf3c1f 100644 --- a/lib/api/v3/queries/schemas/project_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/project_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_filter_instance_schema_api.rb b/lib/api/v3/queries/schemas/query_filter_instance_schema_api.rb index 389ff4b83a..7825ace96d 100644 --- a/lib/api/v3/queries/schemas/query_filter_instance_schema_api.rb +++ b/lib/api/v3/queries/schemas/query_filter_instance_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_filter_instance_schema_collection_representer.rb b/lib/api/v3/queries/schemas/query_filter_instance_schema_collection_representer.rb index be5f562236..aff7d2ea69 100644 --- a/lib/api/v3/queries/schemas/query_filter_instance_schema_collection_representer.rb +++ b/lib/api/v3/queries/schemas/query_filter_instance_schema_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb b/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb index 558aaa1cea..756b6e91df 100644 --- a/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb +++ b/lib/api/v3/queries/schemas/query_filter_instance_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_project_filter_instance_schema_api.rb b/lib/api/v3/queries/schemas/query_project_filter_instance_schema_api.rb index dadc34853b..91a9dd27eb 100644 --- a/lib/api/v3/queries/schemas/query_project_filter_instance_schema_api.rb +++ b/lib/api/v3/queries/schemas/query_project_filter_instance_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_project_schema_api.rb b/lib/api/v3/queries/schemas/query_project_schema_api.rb index 455f5284bd..31d904efc7 100644 --- a/lib/api/v3/queries/schemas/query_project_schema_api.rb +++ b/lib/api/v3/queries/schemas/query_project_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_schema_api.rb b/lib/api/v3/queries/schemas/query_schema_api.rb index ce8afc93c4..288d513a17 100644 --- a/lib/api/v3/queries/schemas/query_schema_api.rb +++ b/lib/api/v3/queries/schemas/query_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/query_schema_representer.rb b/lib/api/v3/queries/schemas/query_schema_representer.rb index 4684b4f7a7..6d190397ee 100644 --- a/lib/api/v3/queries/schemas/query_schema_representer.rb +++ b/lib/api/v3/queries/schemas/query_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/relates_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/relates_filter_dependency_representer.rb index 4b2d573ca8..09ffe98952 100644 --- a/lib/api/v3/queries/schemas/relates_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/relates_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/required_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/required_filter_dependency_representer.rb index 7a2d2ff53e..bede2822e0 100644 --- a/lib/api/v3/queries/schemas/required_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/required_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/requires_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/requires_filter_dependency_representer.rb index f4190e99c4..42842984f3 100644 --- a/lib/api/v3/queries/schemas/requires_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/requires_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/role_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/role_filter_dependency_representer.rb index 7c6ea5d2a7..5f0270a544 100644 --- a/lib/api/v3/queries/schemas/role_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/role_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/search_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/search_filter_dependency_representer.rb index 4c8e9926c0..f9b68990e3 100644 --- a/lib/api/v3/queries/schemas/search_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/search_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/status_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/status_filter_dependency_representer.rb index 828b5b037b..fdd3303df0 100644 --- a/lib/api/v3/queries/schemas/status_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/status_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/subproject_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/subproject_filter_dependency_representer.rb index eb2ccef7c1..7169e338ad 100644 --- a/lib/api/v3/queries/schemas/subproject_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/subproject_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/text_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/text_filter_dependency_representer.rb index 9248d1a9d9..c140736074 100644 --- a/lib/api/v3/queries/schemas/text_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/text_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/type_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/type_filter_dependency_representer.rb index 6a7243cf2e..c64472d015 100644 --- a/lib/api/v3/queries/schemas/type_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/type_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/user_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/user_filter_dependency_representer.rb index ab0c708cec..cc05efdfb6 100644 --- a/lib/api/v3/queries/schemas/user_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/user_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/schemas/version_filter_dependency_representer.rb b/lib/api/v3/queries/schemas/version_filter_dependency_representer.rb index d5e851c3c6..a2c008f09e 100644 --- a/lib/api/v3/queries/schemas/version_filter_dependency_representer.rb +++ b/lib/api/v3/queries/schemas/version_filter_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/sort_bys/query_sort_by_representer.rb b/lib/api/v3/queries/sort_bys/query_sort_by_representer.rb index e8cf458b13..245e2d1615 100644 --- a/lib/api/v3/queries/sort_bys/query_sort_by_representer.rb +++ b/lib/api/v3/queries/sort_bys/query_sort_by_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/sort_bys/query_sort_bys_api.rb b/lib/api/v3/queries/sort_bys/query_sort_bys_api.rb index e892c830be..ceee73f1c1 100644 --- a/lib/api/v3/queries/sort_bys/query_sort_bys_api.rb +++ b/lib/api/v3/queries/sort_bys/query_sort_bys_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/sort_bys/sort_by_decorator.rb b/lib/api/v3/queries/sort_bys/sort_by_decorator.rb index 757876aa0f..64be2bc15c 100644 --- a/lib/api/v3/queries/sort_bys/sort_by_decorator.rb +++ b/lib/api/v3/queries/sort_bys/sort_by_decorator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/update_form_api.rb b/lib/api/v3/queries/update_form_api.rb index 197625ff15..7524d99ebb 100644 --- a/lib/api/v3/queries/update_form_api.rb +++ b/lib/api/v3/queries/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/queries/update_form_representer.rb b/lib/api/v3/queries/update_form_representer.rb index fb2f82d9c0..bd506a257e 100644 --- a/lib/api/v3/queries/update_form_representer.rb +++ b/lib/api/v3/queries/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relation_collection_representer.rb b/lib/api/v3/relations/relation_collection_representer.rb index 1b63b0f113..9bd4f27ed5 100644 --- a/lib/api/v3/relations/relation_collection_representer.rb +++ b/lib/api/v3/relations/relation_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relation_paginated_collection_representer.rb b/lib/api/v3/relations/relation_paginated_collection_representer.rb index e4d21f4702..a3d43c146f 100644 --- a/lib/api/v3/relations/relation_paginated_collection_representer.rb +++ b/lib/api/v3/relations/relation_paginated_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relation_payload_representer.rb b/lib/api/v3/relations/relation_payload_representer.rb index 5d36fbebfc..95520e5b08 100644 --- a/lib/api/v3/relations/relation_payload_representer.rb +++ b/lib/api/v3/relations/relation_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relation_representer.rb b/lib/api/v3/relations/relation_representer.rb index af5bbd716a..79845bb391 100644 --- a/lib/api/v3/relations/relation_representer.rb +++ b/lib/api/v3/relations/relation_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relations_api.rb b/lib/api/v3/relations/relations_api.rb index 583e6649b3..9d99362a06 100644 --- a/lib/api/v3/relations/relations_api.rb +++ b/lib/api/v3/relations/relations_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/relations/relations_helper.rb b/lib/api/v3/relations/relations_helper.rb index cb5da9f5cc..911263f4dd 100644 --- a/lib/api/v3/relations/relations_helper.rb +++ b/lib/api/v3/relations/relations_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/render/render_api.rb b/lib/api/v3/render/render_api.rb index 1bbd98dda3..f8c8d3f069 100644 --- a/lib/api/v3/render/render_api.rb +++ b/lib/api/v3/render/render_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/repositories/revision_collection_representer.rb b/lib/api/v3/repositories/revision_collection_representer.rb index 25277ff6af..879ef3eb10 100644 --- a/lib/api/v3/repositories/revision_collection_representer.rb +++ b/lib/api/v3/repositories/revision_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/repositories/revision_representer.rb b/lib/api/v3/repositories/revision_representer.rb index 1b424190c7..2d2e836e80 100644 --- a/lib/api/v3/repositories/revision_representer.rb +++ b/lib/api/v3/repositories/revision_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/repositories/revisions_api.rb b/lib/api/v3/repositories/revisions_api.rb index 1e9c79da52..9c5f63749d 100644 --- a/lib/api/v3/repositories/revisions_api.rb +++ b/lib/api/v3/repositories/revisions_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/repositories/revisions_by_work_package_api.rb b/lib/api/v3/repositories/revisions_by_work_package_api.rb index bd95933139..28b4f2653b 100644 --- a/lib/api/v3/repositories/revisions_by_work_package_api.rb +++ b/lib/api/v3/repositories/revisions_by_work_package_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/roles/role_collection_representer.rb b/lib/api/v3/roles/role_collection_representer.rb index 41808e08b4..ede6097f69 100644 --- a/lib/api/v3/roles/role_collection_representer.rb +++ b/lib/api/v3/roles/role_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/roles/role_representer.rb b/lib/api/v3/roles/role_representer.rb index 6ff202f3dc..43b02d4152 100644 --- a/lib/api/v3/roles/role_representer.rb +++ b/lib/api/v3/roles/role_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/roles/roles_api.rb b/lib/api/v3/roles/roles_api.rb index aaa36d8dba..a3827d19f8 100644 --- a/lib/api/v3/roles/roles_api.rb +++ b/lib/api/v3/roles/roles_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/root.rb b/lib/api/v3/root.rb index 883f51c7d6..edff4fe8d8 100644 --- a/lib/api/v3/root.rb +++ b/lib/api/v3/root.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/root_representer.rb b/lib/api/v3/root_representer.rb index b4922f05e5..25aaf652ce 100644 --- a/lib/api/v3/root_representer.rb +++ b/lib/api/v3/root_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/schemas/schema_collection_representer.rb b/lib/api/v3/schemas/schema_collection_representer.rb index 09468af435..5b97fc04f8 100644 --- a/lib/api/v3/schemas/schema_collection_representer.rb +++ b/lib/api/v3/schemas/schema_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/schemas/schema_dependency_representer.rb b/lib/api/v3/schemas/schema_dependency_representer.rb index e055c9f584..9b769dbce1 100644 --- a/lib/api/v3/schemas/schema_dependency_representer.rb +++ b/lib/api/v3/schemas/schema_dependency_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/statuses/status_collection_representer.rb b/lib/api/v3/statuses/status_collection_representer.rb index c9989e554f..1e914328ad 100644 --- a/lib/api/v3/statuses/status_collection_representer.rb +++ b/lib/api/v3/statuses/status_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/statuses/status_representer.rb b/lib/api/v3/statuses/status_representer.rb index 361c79526c..97916564a0 100644 --- a/lib/api/v3/statuses/status_representer.rb +++ b/lib/api/v3/statuses/status_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/statuses/statuses_api.rb b/lib/api/v3/statuses/statuses_api.rb index 1a1c9c5bba..254d9d3e8b 100644 --- a/lib/api/v3/statuses/statuses_api.rb +++ b/lib/api/v3/statuses/statuses_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/string_objects/string_objects_api.rb b/lib/api/v3/string_objects/string_objects_api.rb index c836581379..22945e10b3 100644 --- a/lib/api/v3/string_objects/string_objects_api.rb +++ b/lib/api/v3/string_objects/string_objects_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/types/type_collection_representer.rb b/lib/api/v3/types/type_collection_representer.rb index 1530f21766..a9a416ead9 100644 --- a/lib/api/v3/types/type_collection_representer.rb +++ b/lib/api/v3/types/type_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/types/type_representer.rb b/lib/api/v3/types/type_representer.rb index 57a5ace62f..d063c3fde6 100644 --- a/lib/api/v3/types/type_representer.rb +++ b/lib/api/v3/types/type_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/types/types_api.rb b/lib/api/v3/types/types_api.rb index c8afc9fe0d..c6736bb0e4 100644 --- a/lib/api/v3/types/types_api.rb +++ b/lib/api/v3/types/types_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/types/types_by_project_api.rb b/lib/api/v3/types/types_by_project_api.rb index 8c74cd8c01..8b2c5bfc47 100644 --- a/lib/api/v3/types/types_by_project_api.rb +++ b/lib/api/v3/types/types_by_project_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/user_preferences/notification_setting_representer.rb b/lib/api/v3/user_preferences/notification_setting_representer.rb index cd04226810..5e034b786e 100644 --- a/lib/api/v3/user_preferences/notification_setting_representer.rb +++ b/lib/api/v3/user_preferences/notification_setting_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/user_preferences/preferences_by_user_api.rb b/lib/api/v3/user_preferences/preferences_by_user_api.rb index 2df4a10ec4..608139e0ef 100644 --- a/lib/api/v3/user_preferences/preferences_by_user_api.rb +++ b/lib/api/v3/user_preferences/preferences_by_user_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/user_preferences/user_preference_payload_representer.rb b/lib/api/v3/user_preferences/user_preference_payload_representer.rb index f3fdc61183..2c7e7846c3 100644 --- a/lib/api/v3/user_preferences/user_preference_payload_representer.rb +++ b/lib/api/v3/user_preferences/user_preference_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/user_preferences/user_preference_representer.rb b/lib/api/v3/user_preferences/user_preference_representer.rb index ba9d5305d9..1f167542b6 100644 --- a/lib/api/v3/user_preferences/user_preference_representer.rb +++ b/lib/api/v3/user_preferences/user_preference_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/user_preferences/user_preferences_api.rb b/lib/api/v3/user_preferences/user_preferences_api.rb index 1a66dd4da7..c4b4153f87 100644 --- a/lib/api/v3/user_preferences/user_preferences_api.rb +++ b/lib/api/v3/user_preferences/user_preferences_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/create_form_api.rb b/lib/api/v3/users/create_form_api.rb index d868dc8434..8db037d353 100644 --- a/lib/api/v3/users/create_form_api.rb +++ b/lib/api/v3/users/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/create_form_representer.rb b/lib/api/v3/users/create_form_representer.rb index f62301b7a6..9e7437479c 100644 --- a/lib/api/v3/users/create_form_representer.rb +++ b/lib/api/v3/users/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/form_representer.rb b/lib/api/v3/users/form_representer.rb index cad7768de2..a63073679d 100644 --- a/lib/api/v3/users/form_representer.rb +++ b/lib/api/v3/users/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/paginated_user_collection_representer.rb b/lib/api/v3/users/paginated_user_collection_representer.rb index 0e8396ef10..09c966241a 100644 --- a/lib/api/v3/users/paginated_user_collection_representer.rb +++ b/lib/api/v3/users/paginated_user_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/schemas/user_schema_api.rb b/lib/api/v3/users/schemas/user_schema_api.rb index 56800f3ded..44575dd3a6 100644 --- a/lib/api/v3/users/schemas/user_schema_api.rb +++ b/lib/api/v3/users/schemas/user_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/schemas/user_schema_representer.rb b/lib/api/v3/users/schemas/user_schema_representer.rb index 87d8eb6840..f422fc0910 100644 --- a/lib/api/v3/users/schemas/user_schema_representer.rb +++ b/lib/api/v3/users/schemas/user_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/update_form_api.rb b/lib/api/v3/users/update_form_api.rb index d9794baf46..6a0f47a153 100644 --- a/lib/api/v3/users/update_form_api.rb +++ b/lib/api/v3/users/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/update_form_representer.rb b/lib/api/v3/users/update_form_representer.rb index bb086462b7..b5fe1770e0 100644 --- a/lib/api/v3/users/update_form_representer.rb +++ b/lib/api/v3/users/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/user_collection_representer.rb b/lib/api/v3/users/user_collection_representer.rb index b99683eb82..d6e364dbf4 100644 --- a/lib/api/v3/users/user_collection_representer.rb +++ b/lib/api/v3/users/user_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/user_payload_representer.rb b/lib/api/v3/users/user_payload_representer.rb index f0cb9620b3..2167f39268 100644 --- a/lib/api/v3/users/user_payload_representer.rb +++ b/lib/api/v3/users/user_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/user_representer.rb b/lib/api/v3/users/user_representer.rb index 556cd027f1..324d0607d5 100644 --- a/lib/api/v3/users/user_representer.rb +++ b/lib/api/v3/users/user_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/users/users_api.rb b/lib/api/v3/users/users_api.rb index 86762c1403..337f9226e6 100644 --- a/lib/api/v3/users/users_api.rb +++ b/lib/api/v3/users/users_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/custom_field_injector.rb b/lib/api/v3/utilities/custom_field_injector.rb index 3e55378d95..56752d0f4f 100644 --- a/lib/api/v3/utilities/custom_field_injector.rb +++ b/lib/api/v3/utilities/custom_field_injector.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/custom_field_injector/link_value_getter.rb b/lib/api/v3/utilities/custom_field_injector/link_value_getter.rb index 47d781fde0..8c59cf1343 100644 --- a/lib/api/v3/utilities/custom_field_injector/link_value_getter.rb +++ b/lib/api/v3/utilities/custom_field_injector/link_value_getter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/custom_field_sum_injector.rb b/lib/api/v3/utilities/custom_field_sum_injector.rb index 19b45ddcef..bcc6198fed 100644 --- a/lib/api/v3/utilities/custom_field_sum_injector.rb +++ b/lib/api/v3/utilities/custom_field_sum_injector.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/date_time_formatter.rb b/lib/api/v3/utilities/date_time_formatter.rb index 51360494e4..279f892fc6 100644 --- a/lib/api/v3/utilities/date_time_formatter.rb +++ b/lib/api/v3/utilities/date_time_formatter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/eager_loading/custom_field_accessor.rb b/lib/api/v3/utilities/eager_loading/custom_field_accessor.rb index f45b15d8fc..3aff99a5c4 100644 --- a/lib/api/v3/utilities/eager_loading/custom_field_accessor.rb +++ b/lib/api/v3/utilities/eager_loading/custom_field_accessor.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/eager_loading/eager_loading_wrapper.rb b/lib/api/v3/utilities/eager_loading/eager_loading_wrapper.rb index 4f1c5ddc1b..043c9aeb97 100644 --- a/lib/api/v3/utilities/eager_loading/eager_loading_wrapper.rb +++ b/lib/api/v3/utilities/eager_loading/eager_loading_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/create.rb b/lib/api/v3/utilities/endpoints/create.rb index bee601dd39..479e26247d 100644 --- a/lib/api/v3/utilities/endpoints/create.rb +++ b/lib/api/v3/utilities/endpoints/create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/create_form.rb b/lib/api/v3/utilities/endpoints/create_form.rb index 4f438a7e9a..af250af56f 100644 --- a/lib/api/v3/utilities/endpoints/create_form.rb +++ b/lib/api/v3/utilities/endpoints/create_form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/delayed_modify.rb b/lib/api/v3/utilities/endpoints/delayed_modify.rb index 483aa7f63f..7dd7aad3b8 100644 --- a/lib/api/v3/utilities/endpoints/delayed_modify.rb +++ b/lib/api/v3/utilities/endpoints/delayed_modify.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/delete.rb b/lib/api/v3/utilities/endpoints/delete.rb index f8d8c1bc38..560f09fb6f 100644 --- a/lib/api/v3/utilities/endpoints/delete.rb +++ b/lib/api/v3/utilities/endpoints/delete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/form.rb b/lib/api/v3/utilities/endpoints/form.rb index ea21dd59b9..7f55783a86 100644 --- a/lib/api/v3/utilities/endpoints/form.rb +++ b/lib/api/v3/utilities/endpoints/form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/index.rb b/lib/api/v3/utilities/endpoints/index.rb index 015793496e..917942e72a 100644 --- a/lib/api/v3/utilities/endpoints/index.rb +++ b/lib/api/v3/utilities/endpoints/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/schema.rb b/lib/api/v3/utilities/endpoints/schema.rb index 2445204e63..119126645e 100644 --- a/lib/api/v3/utilities/endpoints/schema.rb +++ b/lib/api/v3/utilities/endpoints/schema.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/show.rb b/lib/api/v3/utilities/endpoints/show.rb index 30c0707e2e..584bf5679e 100644 --- a/lib/api/v3/utilities/endpoints/show.rb +++ b/lib/api/v3/utilities/endpoints/show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/sql_index.rb b/lib/api/v3/utilities/endpoints/sql_index.rb index 1fb4f5deb8..dc0291da4a 100644 --- a/lib/api/v3/utilities/endpoints/sql_index.rb +++ b/lib/api/v3/utilities/endpoints/sql_index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/sql_show.rb b/lib/api/v3/utilities/endpoints/sql_show.rb index f86a471d87..12c0989cc1 100644 --- a/lib/api/v3/utilities/endpoints/sql_show.rb +++ b/lib/api/v3/utilities/endpoints/sql_show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/update.rb b/lib/api/v3/utilities/endpoints/update.rb index b70e8346f3..6ef63be92f 100644 --- a/lib/api/v3/utilities/endpoints/update.rb +++ b/lib/api/v3/utilities/endpoints/update.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/update_form.rb b/lib/api/v3/utilities/endpoints/update_form.rb index 363518a102..146e07ab8f 100644 --- a/lib/api/v3/utilities/endpoints/update_form.rb +++ b/lib/api/v3/utilities/endpoints/update_form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/v3_deductions.rb b/lib/api/v3/utilities/endpoints/v3_deductions.rb index c80d2c0fbd..dd606d458e 100644 --- a/lib/api/v3/utilities/endpoints/v3_deductions.rb +++ b/lib/api/v3/utilities/endpoints/v3_deductions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/endpoints/v3_present_single.rb b/lib/api/v3/utilities/endpoints/v3_present_single.rb index dedd38580c..4355b4d4ca 100644 --- a/lib/api/v3/utilities/endpoints/v3_present_single.rb +++ b/lib/api/v3/utilities/endpoints/v3_present_single.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/eprops_conversion.rb b/lib/api/v3/utilities/eprops_conversion.rb index 1f1d954e6e..5849134bf7 100644 --- a/lib/api/v3/utilities/eprops_conversion.rb +++ b/lib/api/v3/utilities/eprops_conversion.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/params_to_query.rb b/lib/api/v3/utilities/params_to_query.rb index e7d0f69c59..0d53bd3d34 100644 --- a/lib/api/v3/utilities/params_to_query.rb +++ b/lib/api/v3/utilities/params_to_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/path_helper.rb b/lib/api/v3/utilities/path_helper.rb index 5de4683315..2be4a48566 100644 --- a/lib/api/v3/utilities/path_helper.rb +++ b/lib/api/v3/utilities/path_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/utilities/resource_link_generator.rb b/lib/api/v3/utilities/resource_link_generator.rb index 1207888d95..b65fcd8942 100644 --- a/lib/api/v3/utilities/resource_link_generator.rb +++ b/lib/api/v3/utilities/resource_link_generator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/available_projects_api.rb b/lib/api/v3/versions/available_projects_api.rb index 5e9a2fa594..1cf37ae9c9 100644 --- a/lib/api/v3/versions/available_projects_api.rb +++ b/lib/api/v3/versions/available_projects_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/create_form_api.rb b/lib/api/v3/versions/create_form_api.rb index caf746e59f..defd3554f2 100644 --- a/lib/api/v3/versions/create_form_api.rb +++ b/lib/api/v3/versions/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/create_form_representer.rb b/lib/api/v3/versions/create_form_representer.rb index caca819643..6f6cd5e090 100644 --- a/lib/api/v3/versions/create_form_representer.rb +++ b/lib/api/v3/versions/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/form_representer.rb b/lib/api/v3/versions/form_representer.rb index 303616bf57..ed6a445436 100644 --- a/lib/api/v3/versions/form_representer.rb +++ b/lib/api/v3/versions/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/projects_by_version_api.rb b/lib/api/v3/versions/projects_by_version_api.rb index b1c63bec13..4c09d1bd40 100644 --- a/lib/api/v3/versions/projects_by_version_api.rb +++ b/lib/api/v3/versions/projects_by_version_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/schemas/version_schema_api.rb b/lib/api/v3/versions/schemas/version_schema_api.rb index 4c62a1d02b..89a51418e1 100644 --- a/lib/api/v3/versions/schemas/version_schema_api.rb +++ b/lib/api/v3/versions/schemas/version_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/schemas/version_schema_representer.rb b/lib/api/v3/versions/schemas/version_schema_representer.rb index bc8096162c..01e23b01d7 100644 --- a/lib/api/v3/versions/schemas/version_schema_representer.rb +++ b/lib/api/v3/versions/schemas/version_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/update_form_api.rb b/lib/api/v3/versions/update_form_api.rb index d2a5b27c56..4dd5888b38 100644 --- a/lib/api/v3/versions/update_form_api.rb +++ b/lib/api/v3/versions/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/update_form_representer.rb b/lib/api/v3/versions/update_form_representer.rb index 7fb7d6ac68..38ceb74141 100644 --- a/lib/api/v3/versions/update_form_representer.rb +++ b/lib/api/v3/versions/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/version_collection_representer.rb b/lib/api/v3/versions/version_collection_representer.rb index e85a39e959..063d7ebf89 100644 --- a/lib/api/v3/versions/version_collection_representer.rb +++ b/lib/api/v3/versions/version_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/version_payload_representer.rb b/lib/api/v3/versions/version_payload_representer.rb index 1d207c84c3..a7f3a426f7 100644 --- a/lib/api/v3/versions/version_payload_representer.rb +++ b/lib/api/v3/versions/version_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/version_representer.rb b/lib/api/v3/versions/version_representer.rb index a55ba8b741..e95b005d8f 100644 --- a/lib/api/v3/versions/version_representer.rb +++ b/lib/api/v3/versions/version_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/versions_api.rb b/lib/api/v3/versions/versions_api.rb index bb66cbb899..130ed51e08 100644 --- a/lib/api/v3/versions/versions_api.rb +++ b/lib/api/v3/versions/versions_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/versions/versions_by_project_api.rb b/lib/api/v3/versions/versions_by_project_api.rb index 8bf2b721c4..b0368ba2f2 100644 --- a/lib/api/v3/versions/versions_by_project_api.rb +++ b/lib/api/v3/versions/versions_by_project_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/views/view_collection_representer.rb b/lib/api/v3/views/view_collection_representer.rb index ebe7c27d46..6eb6f924af 100644 --- a/lib/api/v3/views/view_collection_representer.rb +++ b/lib/api/v3/views/view_collection_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/views/view_payload_representer.rb b/lib/api/v3/views/view_payload_representer.rb index 6d311e4d23..e99f090487 100644 --- a/lib/api/v3/views/view_payload_representer.rb +++ b/lib/api/v3/views/view_payload_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/views/view_representer.rb b/lib/api/v3/views/view_representer.rb index f05e2a7174..e63c10d3b1 100644 --- a/lib/api/v3/views/view_representer.rb +++ b/lib/api/v3/views/view_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/views/views_api.rb b/lib/api/v3/views/views_api.rb index 4037a83c8c..a6109b5011 100644 --- a/lib/api/v3/views/views_api.rb +++ b/lib/api/v3/views/views_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/watchers/watcher_representer.rb b/lib/api/v3/watchers/watcher_representer.rb index 9540876881..a339077f77 100644 --- a/lib/api/v3/watchers/watcher_representer.rb +++ b/lib/api/v3/watchers/watcher_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/wiki_pages/wiki_page_representer.rb b/lib/api/v3/wiki_pages/wiki_page_representer.rb index 8bc0f998b4..2108d8fa84 100644 --- a/lib/api/v3/wiki_pages/wiki_page_representer.rb +++ b/lib/api/v3/wiki_pages/wiki_page_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/wiki_pages/wiki_pages_api.rb b/lib/api/v3/wiki_pages/wiki_pages_api.rb index e42e912aae..18f95e93cb 100644 --- a/lib/api/v3/wiki_pages/wiki_pages_api.rb +++ b/lib/api/v3/wiki_pages/wiki_pages_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/available_projects_on_create_api.rb b/lib/api/v3/work_packages/available_projects_on_create_api.rb index 3e57bad663..513dcd8ff5 100644 --- a/lib/api/v3/work_packages/available_projects_on_create_api.rb +++ b/lib/api/v3/work_packages/available_projects_on_create_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/available_projects_on_edit_api.rb b/lib/api/v3/work_packages/available_projects_on_edit_api.rb index 2bd9a1bccc..1be3cb63c0 100644 --- a/lib/api/v3/work_packages/available_projects_on_edit_api.rb +++ b/lib/api/v3/work_packages/available_projects_on_edit_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/available_relation_candidates_api.rb b/lib/api/v3/work_packages/available_relation_candidates_api.rb index 9fd36f5f9e..895ca1794d 100644 --- a/lib/api/v3/work_packages/available_relation_candidates_api.rb +++ b/lib/api/v3/work_packages/available_relation_candidates_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/create_form_api.rb b/lib/api/v3/work_packages/create_form_api.rb index 9e8892cf22..88b6c8a73b 100644 --- a/lib/api/v3/work_packages/create_form_api.rb +++ b/lib/api/v3/work_packages/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/create_form_representer.rb b/lib/api/v3/work_packages/create_form_representer.rb index 749f3c74a6..3411ef04ab 100644 --- a/lib/api/v3/work_packages/create_form_representer.rb +++ b/lib/api/v3/work_packages/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/create_project_form_api.rb b/lib/api/v3/work_packages/create_project_form_api.rb index daa68844e6..a9b17c1af8 100644 --- a/lib/api/v3/work_packages/create_project_form_api.rb +++ b/lib/api/v3/work_packages/create_project_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/create_project_form_representer.rb b/lib/api/v3/work_packages/create_project_form_representer.rb index 5f01c5ab35..9e8987f842 100644 --- a/lib/api/v3/work_packages/create_project_form_representer.rb +++ b/lib/api/v3/work_packages/create_project_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/ancestor.rb b/lib/api/v3/work_packages/eager_loading/ancestor.rb index a114c9d8d3..fd2fa65d38 100644 --- a/lib/api/v3/work_packages/eager_loading/ancestor.rb +++ b/lib/api/v3/work_packages/eager_loading/ancestor.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/base.rb b/lib/api/v3/work_packages/eager_loading/base.rb index 8bb4a21462..024abe92ac 100644 --- a/lib/api/v3/work_packages/eager_loading/base.rb +++ b/lib/api/v3/work_packages/eager_loading/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/checksum.rb b/lib/api/v3/work_packages/eager_loading/checksum.rb index 91208f5a28..c3a5275cdc 100644 --- a/lib/api/v3/work_packages/eager_loading/checksum.rb +++ b/lib/api/v3/work_packages/eager_loading/checksum.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/custom_action.rb b/lib/api/v3/work_packages/eager_loading/custom_action.rb index bd5cdebccf..50ddde7e4c 100644 --- a/lib/api/v3/work_packages/eager_loading/custom_action.rb +++ b/lib/api/v3/work_packages/eager_loading/custom_action.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/custom_value.rb b/lib/api/v3/work_packages/eager_loading/custom_value.rb index f747937d53..a3050b1d3f 100644 --- a/lib/api/v3/work_packages/eager_loading/custom_value.rb +++ b/lib/api/v3/work_packages/eager_loading/custom_value.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/hierarchy.rb b/lib/api/v3/work_packages/eager_loading/hierarchy.rb index a420360234..d0852009ae 100644 --- a/lib/api/v3/work_packages/eager_loading/hierarchy.rb +++ b/lib/api/v3/work_packages/eager_loading/hierarchy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/neutral_wrapper.rb b/lib/api/v3/work_packages/eager_loading/neutral_wrapper.rb index a85278bf1a..c0811bab64 100644 --- a/lib/api/v3/work_packages/eager_loading/neutral_wrapper.rb +++ b/lib/api/v3/work_packages/eager_loading/neutral_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/eager_loading/project.rb b/lib/api/v3/work_packages/eager_loading/project.rb index b6f4143031..9797882784 100644 --- a/lib/api/v3/work_packages/eager_loading/project.rb +++ b/lib/api/v3/work_packages/eager_loading/project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/form_representer.rb b/lib/api/v3/work_packages/form_representer.rb index a8457526e9..349a74b18f 100644 --- a/lib/api/v3/work_packages/form_representer.rb +++ b/lib/api/v3/work_packages/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/link_to_object_extractor.rb b/lib/api/v3/work_packages/link_to_object_extractor.rb index 111c1fc808..2f76db3aa4 100644 --- a/lib/api/v3/work_packages/link_to_object_extractor.rb +++ b/lib/api/v3/work_packages/link_to_object_extractor.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/parse_params_service.rb b/lib/api/v3/work_packages/parse_params_service.rb index aac6e62c66..01cfaa42db 100644 --- a/lib/api/v3/work_packages/parse_params_service.rb +++ b/lib/api/v3/work_packages/parse_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/principal_setter.rb b/lib/api/v3/work_packages/principal_setter.rb index 020e6e4c92..3833071f8e 100644 --- a/lib/api/v3/work_packages/principal_setter.rb +++ b/lib/api/v3/work_packages/principal_setter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/base_work_package_schema.rb b/lib/api/v3/work_packages/schema/base_work_package_schema.rb index 6b7536da27..a247472962 100644 --- a/lib/api/v3/work_packages/schema/base_work_package_schema.rb +++ b/lib/api/v3/work_packages/schema/base_work_package_schema.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/form_configurations/attribute_representer.rb b/lib/api/v3/work_packages/schema/form_configurations/attribute_representer.rb index 1e88d0365f..d90af9dc2f 100644 --- a/lib/api/v3/work_packages/schema/form_configurations/attribute_representer.rb +++ b/lib/api/v3/work_packages/schema/form_configurations/attribute_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/form_configurations/query_representer.rb b/lib/api/v3/work_packages/schema/form_configurations/query_representer.rb index 1b494af34f..b30e4a73f4 100644 --- a/lib/api/v3/work_packages/schema/form_configurations/query_representer.rb +++ b/lib/api/v3/work_packages/schema/form_configurations/query_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/specific_work_package_schema.rb b/lib/api/v3/work_packages/schema/specific_work_package_schema.rb index 0d99b0a858..ab0bce35d1 100644 --- a/lib/api/v3/work_packages/schema/specific_work_package_schema.rb +++ b/lib/api/v3/work_packages/schema/specific_work_package_schema.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/typed_schema_contract.rb b/lib/api/v3/work_packages/schema/typed_schema_contract.rb index 924cbfbcb6..4f88508f01 100644 --- a/lib/api/v3/work_packages/schema/typed_schema_contract.rb +++ b/lib/api/v3/work_packages/schema/typed_schema_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/typed_work_package_schema.rb b/lib/api/v3/work_packages/schema/typed_work_package_schema.rb index 7d3257e672..02fe8aca23 100644 --- a/lib/api/v3/work_packages/schema/typed_work_package_schema.rb +++ b/lib/api/v3/work_packages/schema/typed_work_package_schema.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/work_package_schema_collection_representer.rb b/lib/api/v3/work_packages/schema/work_package_schema_collection_representer.rb index b7c6edb631..706abf7116 100644 --- a/lib/api/v3/work_packages/schema/work_package_schema_collection_representer.rb +++ b/lib/api/v3/work_packages/schema/work_package_schema_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/work_package_schema_representer.rb b/lib/api/v3/work_packages/schema/work_package_schema_representer.rb index 26382bec90..edc1cd945b 100644 --- a/lib/api/v3/work_packages/schema/work_package_schema_representer.rb +++ b/lib/api/v3/work_packages/schema/work_package_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/work_package_schemas_api.rb b/lib/api/v3/work_packages/schema/work_package_schemas_api.rb index 1b9e913598..4093f99729 100644 --- a/lib/api/v3/work_packages/schema/work_package_schemas_api.rb +++ b/lib/api/v3/work_packages/schema/work_package_schemas_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/work_package_sums_schema.rb b/lib/api/v3/work_packages/schema/work_package_sums_schema.rb index 6b88768ceb..987a775ce3 100644 --- a/lib/api/v3/work_packages/schema/work_package_sums_schema.rb +++ b/lib/api/v3/work_packages/schema/work_package_sums_schema.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/schema/work_package_sums_schema_representer.rb b/lib/api/v3/work_packages/schema/work_package_sums_schema_representer.rb index b3742e2787..5eeb9dfe10 100644 --- a/lib/api/v3/work_packages/schema/work_package_sums_schema_representer.rb +++ b/lib/api/v3/work_packages/schema/work_package_sums_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/update_form_api.rb b/lib/api/v3/work_packages/update_form_api.rb index cdd08911bd..431ee9663b 100644 --- a/lib/api/v3/work_packages/update_form_api.rb +++ b/lib/api/v3/work_packages/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/update_form_representer.rb b/lib/api/v3/work_packages/update_form_representer.rb index eeb7dc9816..c7a27163cc 100644 --- a/lib/api/v3/work_packages/update_form_representer.rb +++ b/lib/api/v3/work_packages/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/watchers_api.rb b/lib/api/v3/work_packages/watchers_api.rb index 25e0ecf058..bf565a6516 100644 --- a/lib/api/v3/work_packages/watchers_api.rb +++ b/lib/api/v3/work_packages/watchers_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_aggregation_group.rb b/lib/api/v3/work_packages/work_package_aggregation_group.rb index 0da70bea56..833da21718 100644 --- a/lib/api/v3/work_packages/work_package_aggregation_group.rb +++ b/lib/api/v3/work_packages/work_package_aggregation_group.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_collection_representer.rb b/lib/api/v3/work_packages/work_package_collection_representer.rb index 3b885320f9..bb9b0291f2 100644 --- a/lib/api/v3/work_packages/work_package_collection_representer.rb +++ b/lib/api/v3/work_packages/work_package_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_eager_loading_wrapper.rb b/lib/api/v3/work_packages/work_package_eager_loading_wrapper.rb index 86679d3b8b..4f423837c6 100644 --- a/lib/api/v3/work_packages/work_package_eager_loading_wrapper.rb +++ b/lib/api/v3/work_packages/work_package_eager_loading_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_lock_version_payload_representer.rb b/lib/api/v3/work_packages/work_package_lock_version_payload_representer.rb index e625b5a322..7124657d03 100644 --- a/lib/api/v3/work_packages/work_package_lock_version_payload_representer.rb +++ b/lib/api/v3/work_packages/work_package_lock_version_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_payload_representer.rb b/lib/api/v3/work_packages/work_package_payload_representer.rb index 7dc19ba247..dab31ca41d 100644 --- a/lib/api/v3/work_packages/work_package_payload_representer.rb +++ b/lib/api/v3/work_packages/work_package_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_relations_api.rb b/lib/api/v3/work_packages/work_package_relations_api.rb index 7b318a1a1f..243965c6eb 100644 --- a/lib/api/v3/work_packages/work_package_relations_api.rb +++ b/lib/api/v3/work_packages/work_package_relations_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_package_representer.rb b/lib/api/v3/work_packages/work_package_representer.rb index b580eb32b4..6ca023453e 100644 --- a/lib/api/v3/work_packages/work_package_representer.rb +++ b/lib/api/v3/work_packages/work_package_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_packages_api.rb b/lib/api/v3/work_packages/work_packages_api.rb index a8ee12d58c..d0eec10b39 100644 --- a/lib/api/v3/work_packages/work_packages_api.rb +++ b/lib/api/v3/work_packages/work_packages_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_packages_by_project_api.rb b/lib/api/v3/work_packages/work_packages_by_project_api.rb index e8d97ea878..7f56960e0f 100644 --- a/lib/api/v3/work_packages/work_packages_by_project_api.rb +++ b/lib/api/v3/work_packages/work_packages_by_project_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/api/v3/work_packages/work_packages_shared_helpers.rb b/lib/api/v3/work_packages/work_packages_shared_helpers.rb index 804f8cb939..066a1b8783 100644 --- a/lib/api/v3/work_packages/work_packages_shared_helpers.rb +++ b/lib/api/v3/work_packages/work_packages_shared_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/ar_condition.rb b/lib/ar_condition.rb index a775017e09..44bbb7b9ef 100644 --- a/lib/ar_condition.rb +++ b/lib/ar_condition.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/constraints/enterprise.rb b/lib/constraints/enterprise.rb index 770815a853..5cb9760969 100644 --- a/lib/constraints/enterprise.rb +++ b/lib/constraints/enterprise.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/core_extensions.rb b/lib/core_extensions.rb index 7d12205209..aeb30acecc 100644 --- a/lib/core_extensions.rb +++ b/lib/core_extensions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/core_extensions/string.rb b/lib/core_extensions/string.rb index 251b9ed1f7..237c2b1ac2 100644 --- a/lib/core_extensions/string.rb +++ b/lib/core_extensions/string.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/custom_field_form_builder.rb b/lib/custom_field_form_builder.rb index 258b2f39f8..bc58e776cf 100644 --- a/lib/custom_field_form_builder.rb +++ b/lib/custom_field_form_builder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/deprecated_alias.rb b/lib/deprecated_alias.rb index 15bf9cca34..80633988fb 100644 --- a/lib/deprecated_alias.rb +++ b/lib/deprecated_alias.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/generators/open_project/plugin/plugin_generator.rb b/lib/generators/open_project/plugin/plugin_generator.rb index 58d1f5c361..9926ba6276 100644 --- a/lib/generators/open_project/plugin/plugin_generator.rb +++ b/lib/generators/open_project/plugin/plugin_generator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/instance_finder.rb b/lib/instance_finder.rb index 1ac265a3b5..50140e38c6 100644 --- a/lib/instance_finder.rb +++ b/lib/instance_finder.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project.rb b/lib/open_project.rb index 13bfe0c938..0059d26078 100644 --- a/lib/open_project.rb +++ b/lib/open_project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/access_control.rb b/lib/open_project/access_control.rb index 38a7613b86..31a30f9248 100644 --- a/lib/open_project/access_control.rb +++ b/lib/open_project/access_control.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/access_control/mapper.rb b/lib/open_project/access_control/mapper.rb index bfb686e55c..283fcde76d 100644 --- a/lib/open_project/access_control/mapper.rb +++ b/lib/open_project/access_control/mapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/access_control/permission.rb b/lib/open_project/access_control/permission.rb index 437fa47773..4cae12ccaa 100644 --- a/lib/open_project/access_control/permission.rb +++ b/lib/open_project/access_control/permission.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/access_keys.rb b/lib/open_project/access_keys.rb index 1bf0616b51..77a3375863 100644 --- a/lib/open_project/access_keys.rb +++ b/lib/open_project/access_keys.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/acts_as_url/adapter/op_active_record.rb b/lib/open_project/acts_as_url/adapter/op_active_record.rb index c64a8842cc..a5a40bdaf6 100644 --- a/lib/open_project/acts_as_url/adapter/op_active_record.rb +++ b/lib/open_project/acts_as_url/adapter/op_active_record.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/assets.rb b/lib/open_project/assets.rb index 7fb57c7220..85fec35318 100644 --- a/lib/open_project/assets.rb +++ b/lib/open_project/assets.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/cache.rb b/lib/open_project/cache.rb index 3003ca1495..67085116f8 100644 --- a/lib/open_project/cache.rb +++ b/lib/open_project/cache.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/cache/cache_key.rb b/lib/open_project/cache/cache_key.rb index 6373fde9f6..0856e1c18c 100644 --- a/lib/open_project/cache/cache_key.rb +++ b/lib/open_project/cache/cache_key.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/changed_by_system.rb b/lib/open_project/changed_by_system.rb index 5f37b28cd3..f8917ea5cd 100644 --- a/lib/open_project/changed_by_system.rb +++ b/lib/open_project/changed_by_system.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/configuration.rb b/lib/open_project/configuration.rb index ea4ab75735..e0de612c54 100644 --- a/lib/open_project/configuration.rb +++ b/lib/open_project/configuration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/configuration/helpers.rb b/lib/open_project/configuration/helpers.rb index b5beb22fc7..bec200ddeb 100644 --- a/lib/open_project/configuration/helpers.rb +++ b/lib/open_project/configuration/helpers.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/content_type_detector.rb b/lib/open_project/content_type_detector.rb index 55af937b3c..cbe40d0271 100644 --- a/lib/open_project/content_type_detector.rb +++ b/lib/open_project/content_type_detector.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/custom_field_format.rb b/lib/open_project/custom_field_format.rb index a3d41ce63c..5aa42b87ff 100644 --- a/lib/open_project/custom_field_format.rb +++ b/lib/open_project/custom_field_format.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/custom_styles/color_themes.rb b/lib/open_project/custom_styles/color_themes.rb index 21023d6521..5e043485b2 100644 --- a/lib/open_project/custom_styles/color_themes.rb +++ b/lib/open_project/custom_styles/color_themes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/custom_styles/design.rb b/lib/open_project/custom_styles/design.rb index 42da58ebed..b86f96cf0f 100644 --- a/lib/open_project/custom_styles/design.rb +++ b/lib/open_project/custom_styles/design.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/database.rb b/lib/open_project/database.rb index bb39fe2c88..f9a1f2c2fe 100644 --- a/lib/open_project/database.rb +++ b/lib/open_project/database.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/default_wp_queries.rb b/lib/open_project/default_wp_queries.rb index 4af4ae3c29..497763dccf 100644 --- a/lib/open_project/default_wp_queries.rb +++ b/lib/open_project/default_wp_queries.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/deprecation.rb b/lib/open_project/deprecation.rb index d7590612e3..570ece96d9 100644 --- a/lib/open_project/deprecation.rb +++ b/lib/open_project/deprecation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/enterprise.rb b/lib/open_project/enterprise.rb index c916f93f50..4edec942b8 100644 --- a/lib/open_project/enterprise.rb +++ b/lib/open_project/enterprise.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/events.rb b/lib/open_project/events.rb index 75fbd38763..de74e1611f 100644 --- a/lib/open_project/events.rb +++ b/lib/open_project/events.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/file_command_content_type_detector.rb b/lib/open_project/file_command_content_type_detector.rb index 9788eddc90..91a331b9e2 100644 --- a/lib/open_project/file_command_content_type_detector.rb +++ b/lib/open_project/file_command_content_type_detector.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/files.rb b/lib/open_project/files.rb index fe9681a704..b9e4fa5ca3 100644 --- a/lib/open_project/files.rb +++ b/lib/open_project/files.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/footer.rb b/lib/open_project/footer.rb index 583aaaf9e7..75719afa0b 100644 --- a/lib/open_project/footer.rb +++ b/lib/open_project/footer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/form_tag_helper.rb b/lib/open_project/form_tag_helper.rb index 41fdee8b2c..aef832d24a 100644 --- a/lib/open_project/form_tag_helper.rb +++ b/lib/open_project/form_tag_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/full_text_search.rb b/lib/open_project/full_text_search.rb index 7d9401ad52..d6e36e537f 100644 --- a/lib/open_project/full_text_search.rb +++ b/lib/open_project/full_text_search.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/hook.rb b/lib/open_project/hook.rb index 2161611b6d..3b2a55003c 100644 --- a/lib/open_project/hook.rb +++ b/lib/open_project/hook.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/hooks.rb b/lib/open_project/hooks.rb index 8d8e993353..b61d194de6 100644 --- a/lib/open_project/hooks.rb +++ b/lib/open_project/hooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/hooks/view_account_login_auth_provider.rb b/lib/open_project/hooks/view_account_login_auth_provider.rb index 72dd6202b4..233a997685 100644 --- a/lib/open_project/hooks/view_account_login_auth_provider.rb +++ b/lib/open_project/hooks/view_account_login_auth_provider.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/hooks/view_account_login_bottom.rb b/lib/open_project/hooks/view_account_login_bottom.rb index 2a1cd7903d..10358329d5 100644 --- a/lib/open_project/hooks/view_account_login_bottom.rb +++ b/lib/open_project/hooks/view_account_login_bottom.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/info.rb b/lib/open_project/info.rb index e2be1c9663..92b02e9890 100644 --- a/lib/open_project/info.rb +++ b/lib/open_project/info.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/journal/attachment_helper.rb b/lib/open_project/journal/attachment_helper.rb index 9dc430c5f2..ff7bf9b58a 100644 --- a/lib/open_project/journal/attachment_helper.rb +++ b/lib/open_project/journal/attachment_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/journal_formatter/attachment.rb b/lib/open_project/journal_formatter/attachment.rb index de51e1b38d..ed4241eccd 100644 --- a/lib/open_project/journal_formatter/attachment.rb +++ b/lib/open_project/journal_formatter/attachment.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/journal_formatter/custom_field.rb b/lib/open_project/journal_formatter/custom_field.rb index 8d7ef5ca66..179dc43c13 100644 --- a/lib/open_project/journal_formatter/custom_field.rb +++ b/lib/open_project/journal_formatter/custom_field.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/journal_formatter/diff.rb b/lib/open_project/journal_formatter/diff.rb index 1339529475..b7524ffc45 100644 --- a/lib/open_project/journal_formatter/diff.rb +++ b/lib/open_project/journal_formatter/diff.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/journal_formatter/schedule_manually.rb b/lib/open_project/journal_formatter/schedule_manually.rb index 532d7b2dc8..e605b9ca52 100644 --- a/lib/open_project/journal_formatter/schedule_manually.rb +++ b/lib/open_project/journal_formatter/schedule_manually.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/locale_helper.rb b/lib/open_project/locale_helper.rb index e8781d887f..eac060cfef 100644 --- a/lib/open_project/locale_helper.rb +++ b/lib/open_project/locale_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/mime_type.rb b/lib/open_project/mime_type.rb index d49ad8b1a7..3e99386c10 100644 --- a/lib/open_project/mime_type.rb +++ b/lib/open_project/mime_type.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/mutex.rb b/lib/open_project/mutex.rb index 1ab220f93c..872bb192d9 100644 --- a/lib/open_project/mutex.rb +++ b/lib/open_project/mutex.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/nested_set/rebuild_patch.rb b/lib/open_project/nested_set/rebuild_patch.rb index 6ab7e1fcdf..5ecdf87760 100644 --- a/lib/open_project/nested_set/rebuild_patch.rb +++ b/lib/open_project/nested_set/rebuild_patch.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/notifications.rb b/lib/open_project/notifications.rb index 1374d1a720..df4e28dd41 100644 --- a/lib/open_project/notifications.rb +++ b/lib/open_project/notifications.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/null_db_fallback.rb b/lib/open_project/null_db_fallback.rb index 81e07d23ad..cf518541d2 100644 --- a/lib/open_project/null_db_fallback.rb +++ b/lib/open_project/null_db_fallback.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/object_linking.rb b/lib/open_project/object_linking.rb index 8e5e96d88c..fc01a5d02b 100644 --- a/lib/open_project/object_linking.rb +++ b/lib/open_project/object_linking.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/omni_auth/authorization.rb b/lib/open_project/omni_auth/authorization.rb index ec2ddb0e1b..1cddb42593 100644 --- a/lib/open_project/omni_auth/authorization.rb +++ b/lib/open_project/omni_auth/authorization.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/page_hierarchy_helper.rb b/lib/open_project/page_hierarchy_helper.rb index d7cd901dec..6cecd5f368 100644 --- a/lib/open_project/page_hierarchy_helper.rb +++ b/lib/open_project/page_hierarchy_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/passwords.rb b/lib/open_project/passwords.rb index 79994930cc..ab71363f75 100644 --- a/lib/open_project/passwords.rb +++ b/lib/open_project/passwords.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches.rb b/lib/open_project/patches.rb index e0939eaa01..2b01f22c56 100644 --- a/lib/open_project/patches.rb +++ b/lib/open_project/patches.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/action_view_accessible_errors.rb b/lib/open_project/patches/action_view_accessible_errors.rb index 1b8f6bf15e..e04bc0c578 100644 --- a/lib/open_project/patches/action_view_accessible_errors.rb +++ b/lib/open_project/patches/action_view_accessible_errors.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/action_view_helpers_asset_tag_helper.rb b/lib/open_project/patches/action_view_helpers_asset_tag_helper.rb index 3c5a0acbc0..cb9da112c5 100644 --- a/lib/open_project/patches/action_view_helpers_asset_tag_helper.rb +++ b/lib/open_project/patches/action_view_helpers_asset_tag_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/active_model_errors.rb b/lib/open_project/patches/active_model_errors.rb index 9b7a221d1f..a44af16c7c 100644 --- a/lib/open_project/patches/active_model_errors.rb +++ b/lib/open_project/patches/active_model_errors.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/active_record_i18n.rb b/lib/open_project/patches/active_record_i18n.rb index 5450452cc4..44acf03c32 100644 --- a/lib/open_project/patches/active_record_i18n.rb +++ b/lib/open_project/patches/active_record_i18n.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/acts_as_list.rb b/lib/open_project/patches/acts_as_list.rb index b2ec42e704..89915464bd 100644 --- a/lib/open_project/patches/acts_as_list.rb +++ b/lib/open_project/patches/acts_as_list.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/declarative_option.rb b/lib/open_project/patches/declarative_option.rb index 182d640b7b..8a18021035 100644 --- a/lib/open_project/patches/declarative_option.rb +++ b/lib/open_project/patches/declarative_option.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/delivery_job.rb b/lib/open_project/patches/delivery_job.rb index a2d5706f94..08abc81355 100644 --- a/lib/open_project/patches/delivery_job.rb +++ b/lib/open_project/patches/delivery_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/i18n_reject_empty_string.rb b/lib/open_project/patches/i18n_reject_empty_string.rb index 77b30146a2..756f4f3605 100644 --- a/lib/open_project/patches/i18n_reject_empty_string.rb +++ b/lib/open_project/patches/i18n_reject_empty_string.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/representable.rb b/lib/open_project/patches/representable.rb index 468181306a..737066d1a4 100644 --- a/lib/open_project/patches/representable.rb +++ b/lib/open_project/patches/representable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/patches/string.rb b/lib/open_project/patches/string.rb index 3caadc9147..2015ac0afc 100644 --- a/lib/open_project/patches/string.rb +++ b/lib/open_project/patches/string.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins.rb b/lib/open_project/plugins.rb index d01c0884a7..6e92ecc9ae 100644 --- a/lib/open_project/plugins.rb +++ b/lib/open_project/plugins.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/acts_as_op_engine.rb b/lib/open_project/plugins/acts_as_op_engine.rb index 37eed89641..89e1c9666c 100644 --- a/lib/open_project/plugins/acts_as_op_engine.rb +++ b/lib/open_project/plugins/acts_as_op_engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/frontend_linking.rb b/lib/open_project/plugins/frontend_linking.rb index 85ea269353..79c5b8fc60 100644 --- a/lib/open_project/plugins/frontend_linking.rb +++ b/lib/open_project/plugins/frontend_linking.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/frontend_linking/generator.rb b/lib/open_project/plugins/frontend_linking/generator.rb index a9fa25f88a..b3ba0aaf45 100644 --- a/lib/open_project/plugins/frontend_linking/generator.rb +++ b/lib/open_project/plugins/frontend_linking/generator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/load_dependency.rb b/lib/open_project/plugins/load_dependency.rb index 81f85250c2..0df4757562 100644 --- a/lib/open_project/plugins/load_dependency.rb +++ b/lib/open_project/plugins/load_dependency.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/migration_mapping.rb b/lib/open_project/plugins/migration_mapping.rb index f397865ad5..a3018d2457 100644 --- a/lib/open_project/plugins/migration_mapping.rb +++ b/lib/open_project/plugins/migration_mapping.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/module_handler.rb b/lib/open_project/plugins/module_handler.rb index 186eef8545..9b8efde1ad 100644 --- a/lib/open_project/plugins/module_handler.rb +++ b/lib/open_project/plugins/module_handler.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/plugins/patch_registry.rb b/lib/open_project/plugins/patch_registry.rb index 09007abbfc..f1662b37dd 100644 --- a/lib/open_project/plugins/patch_registry.rb +++ b/lib/open_project/plugins/patch_registry.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/repository_authentication.rb b/lib/open_project/repository_authentication.rb index 6f41bcb65a..3a4d05a0cd 100644 --- a/lib/open_project/repository_authentication.rb +++ b/lib/open_project/repository_authentication.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/safe_params.rb b/lib/open_project/safe_params.rb index 5b1c985c61..682c914dd5 100644 --- a/lib/open_project/safe_params.rb +++ b/lib/open_project/safe_params.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters.rb b/lib/open_project/scm/adapters.rb index 0ba95ac105..f2b2be81bc 100644 --- a/lib/open_project/scm/adapters.rb +++ b/lib/open_project/scm/adapters.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters/base.rb b/lib/open_project/scm/adapters/base.rb index 26e7cd795a..5201d2681a 100644 --- a/lib/open_project/scm/adapters/base.rb +++ b/lib/open_project/scm/adapters/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters/checkout_instructions.rb b/lib/open_project/scm/adapters/checkout_instructions.rb index dad56b1b6b..71d297e66c 100644 --- a/lib/open_project/scm/adapters/checkout_instructions.rb +++ b/lib/open_project/scm/adapters/checkout_instructions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters/git.rb b/lib/open_project/scm/adapters/git.rb index 52ffe8f5da..fd95f9e96d 100644 --- a/lib/open_project/scm/adapters/git.rb +++ b/lib/open_project/scm/adapters/git.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters/local_client.rb b/lib/open_project/scm/adapters/local_client.rb index 8a2a5c62eb..88a35a1b32 100644 --- a/lib/open_project/scm/adapters/local_client.rb +++ b/lib/open_project/scm/adapters/local_client.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/adapters/subversion.rb b/lib/open_project/scm/adapters/subversion.rb index af8655feeb..3e2be884cc 100644 --- a/lib/open_project/scm/adapters/subversion.rb +++ b/lib/open_project/scm/adapters/subversion.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/exceptions.rb b/lib/open_project/scm/exceptions.rb index c199b0adb9..7d8fcff932 100644 --- a/lib/open_project/scm/exceptions.rb +++ b/lib/open_project/scm/exceptions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/manageable_repository.rb b/lib/open_project/scm/manageable_repository.rb index 9fa2a402f2..7201be0378 100644 --- a/lib/open_project/scm/manageable_repository.rb +++ b/lib/open_project/scm/manageable_repository.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/scm/manager.rb b/lib/open_project/scm/manager.rb index 4161d6d360..16d0d30562 100644 --- a/lib/open_project/scm/manager.rb +++ b/lib/open_project/scm/manager.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/sql_sanitization.rb b/lib/open_project/sql_sanitization.rb index e3f8ddd2e5..2bb1fd65d7 100644 --- a/lib/open_project/sql_sanitization.rb +++ b/lib/open_project/sql_sanitization.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/static/homescreen.rb b/lib/open_project/static/homescreen.rb index c8fd6e33a2..46eb986991 100644 --- a/lib/open_project/static/homescreen.rb +++ b/lib/open_project/static/homescreen.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/static/links.rb b/lib/open_project/static/links.rb index 3d08a0b5a4..7c91aa4a8b 100644 --- a/lib/open_project/static/links.rb +++ b/lib/open_project/static/links.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/static_routing.rb b/lib/open_project/static_routing.rb index f474f81162..433b3a8f88 100644 --- a/lib/open_project/static_routing.rb +++ b/lib/open_project/static_routing.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/storage.rb b/lib/open_project/storage.rb index ef4650abce..42b5dbbc78 100644 --- a/lib/open_project/storage.rb +++ b/lib/open_project/storage.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/syntax_highlighting.rb b/lib/open_project/syntax_highlighting.rb index 5c582aaccf..de577400fb 100644 --- a/lib/open_project/syntax_highlighting.rb +++ b/lib/open_project/syntax_highlighting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting.rb b/lib/open_project/text_formatting.rb index 20d781cb04..a7fb3eff17 100644 --- a/lib/open_project/text_formatting.rb +++ b/lib/open_project/text_formatting.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/attachment_filter.rb b/lib/open_project/text_formatting/filters/attachment_filter.rb index 1e9dccf85f..b756870f11 100644 --- a/lib/open_project/text_formatting/filters/attachment_filter.rb +++ b/lib/open_project/text_formatting/filters/attachment_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/autolink_filter.rb b/lib/open_project/text_formatting/filters/autolink_filter.rb index 2ac59f4fae..0007d25b9c 100644 --- a/lib/open_project/text_formatting/filters/autolink_filter.rb +++ b/lib/open_project/text_formatting/filters/autolink_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/bem_css_filter.rb b/lib/open_project/text_formatting/filters/bem_css_filter.rb index a993ecec57..2ad98a859a 100644 --- a/lib/open_project/text_formatting/filters/bem_css_filter.rb +++ b/lib/open_project/text_formatting/filters/bem_css_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/figure_wrapped_filter.rb b/lib/open_project/text_formatting/filters/figure_wrapped_filter.rb index 3d744ad28b..97d87e4c9b 100644 --- a/lib/open_project/text_formatting/filters/figure_wrapped_filter.rb +++ b/lib/open_project/text_formatting/filters/figure_wrapped_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/link_attribute_filter.rb b/lib/open_project/text_formatting/filters/link_attribute_filter.rb index 3172e15ac1..5765d89188 100644 --- a/lib/open_project/text_formatting/filters/link_attribute_filter.rb +++ b/lib/open_project/text_formatting/filters/link_attribute_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macro_filter.rb b/lib/open_project/text_formatting/filters/macro_filter.rb index ce9b82875c..9d13613949 100644 --- a/lib/open_project/text_formatting/filters/macro_filter.rb +++ b/lib/open_project/text_formatting/filters/macro_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/child_pages.rb b/lib/open_project/text_formatting/filters/macros/child_pages.rb index 8787dc742d..3daab7f20a 100644 --- a/lib/open_project/text_formatting/filters/macros/child_pages.rb +++ b/lib/open_project/text_formatting/filters/macros/child_pages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/child_pages/child_pages_context.rb b/lib/open_project/text_formatting/filters/macros/child_pages/child_pages_context.rb index f3db3df5bd..189af8f988 100644 --- a/lib/open_project/text_formatting/filters/macros/child_pages/child_pages_context.rb +++ b/lib/open_project/text_formatting/filters/macros/child_pages/child_pages_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/create_work_package_link.rb b/lib/open_project/text_formatting/filters/macros/create_work_package_link.rb index ec57c6ecb0..f089a580d5 100644 --- a/lib/open_project/text_formatting/filters/macros/create_work_package_link.rb +++ b/lib/open_project/text_formatting/filters/macros/create_work_package_link.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/embedded_table.rb b/lib/open_project/text_formatting/filters/macros/embedded_table.rb index f694828061..1b63c13839 100644 --- a/lib/open_project/text_formatting/filters/macros/embedded_table.rb +++ b/lib/open_project/text_formatting/filters/macros/embedded_table.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/include_wiki_page.rb b/lib/open_project/text_formatting/filters/macros/include_wiki_page.rb index c57b0682e2..e002db1079 100644 --- a/lib/open_project/text_formatting/filters/macros/include_wiki_page.rb +++ b/lib/open_project/text_formatting/filters/macros/include_wiki_page.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/macros/toc.rb b/lib/open_project/text_formatting/filters/macros/toc.rb index ccae3a4045..8aa22c7b43 100644 --- a/lib/open_project/text_formatting/filters/macros/toc.rb +++ b/lib/open_project/text_formatting/filters/macros/toc.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/markdown_filter.rb b/lib/open_project/text_formatting/filters/markdown_filter.rb index 8e3b753170..bf8f2bb841 100644 --- a/lib/open_project/text_formatting/filters/markdown_filter.rb +++ b/lib/open_project/text_formatting/filters/markdown_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/mention_filter.rb b/lib/open_project/text_formatting/filters/mention_filter.rb index 0200b03b02..4a730a7325 100644 --- a/lib/open_project/text_formatting/filters/mention_filter.rb +++ b/lib/open_project/text_formatting/filters/mention_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/pattern_matcher_filter.rb b/lib/open_project/text_formatting/filters/pattern_matcher_filter.rb index 6ac84f86e5..07fe5a9492 100644 --- a/lib/open_project/text_formatting/filters/pattern_matcher_filter.rb +++ b/lib/open_project/text_formatting/filters/pattern_matcher_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/plain_filter.rb b/lib/open_project/text_formatting/filters/plain_filter.rb index 0e3ac3e10d..565678615f 100644 --- a/lib/open_project/text_formatting/filters/plain_filter.rb +++ b/lib/open_project/text_formatting/filters/plain_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/relative_link_filter.rb b/lib/open_project/text_formatting/filters/relative_link_filter.rb index baa502caff..97c9e5d959 100644 --- a/lib/open_project/text_formatting/filters/relative_link_filter.rb +++ b/lib/open_project/text_formatting/filters/relative_link_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/sanitization_filter.rb b/lib/open_project/text_formatting/filters/sanitization_filter.rb index 9a61e22a00..42a20d771a 100644 --- a/lib/open_project/text_formatting/filters/sanitization_filter.rb +++ b/lib/open_project/text_formatting/filters/sanitization_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/setting_macros_filter.rb b/lib/open_project/text_formatting/filters/setting_macros_filter.rb index ca39cd2e4b..dae9bfd249 100644 --- a/lib/open_project/text_formatting/filters/setting_macros_filter.rb +++ b/lib/open_project/text_formatting/filters/setting_macros_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/syntax_highlight_filter.rb b/lib/open_project/text_formatting/filters/syntax_highlight_filter.rb index 8e22b9cede..bdf289d0ca 100644 --- a/lib/open_project/text_formatting/filters/syntax_highlight_filter.rb +++ b/lib/open_project/text_formatting/filters/syntax_highlight_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/table_of_contents_filter.rb b/lib/open_project/text_formatting/filters/table_of_contents_filter.rb index 959213006e..5b3bafe55e 100644 --- a/lib/open_project/text_formatting/filters/table_of_contents_filter.rb +++ b/lib/open_project/text_formatting/filters/table_of_contents_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/filters/task_list_filter.rb b/lib/open_project/text_formatting/filters/task_list_filter.rb index 481fe040b1..e5835470a2 100644 --- a/lib/open_project/text_formatting/filters/task_list_filter.rb +++ b/lib/open_project/text_formatting/filters/task_list_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats.rb b/lib/open_project/text_formatting/formats.rb index f08907a51d..526e74b646 100644 --- a/lib/open_project/text_formatting/formats.rb +++ b/lib/open_project/text_formatting/formats.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/base_format.rb b/lib/open_project/text_formatting/formats/base_format.rb index dd2532be56..5fe80dd494 100644 --- a/lib/open_project/text_formatting/formats/base_format.rb +++ b/lib/open_project/text_formatting/formats/base_format.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/base_formatter.rb b/lib/open_project/text_formatting/formats/base_formatter.rb index dac3d3fa70..1d2b30ebaa 100644 --- a/lib/open_project/text_formatting/formats/base_formatter.rb +++ b/lib/open_project/text_formatting/formats/base_formatter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/format.rb b/lib/open_project/text_formatting/formats/markdown/format.rb index 4a69182c1b..85dfc1c84b 100644 --- a/lib/open_project/text_formatting/formats/markdown/format.rb +++ b/lib/open_project/text_formatting/formats/markdown/format.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/formatter.rb b/lib/open_project/text_formatting/formats/markdown/formatter.rb index bb4a9799c0..3a7ab9caef 100644 --- a/lib/open_project/text_formatting/formats/markdown/formatter.rb +++ b/lib/open_project/text_formatting/formats/markdown/formatter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/helper.rb b/lib/open_project/text_formatting/formats/markdown/helper.rb index bed97bf85f..9c476168f9 100644 --- a/lib/open_project/text_formatting/formats/markdown/helper.rb +++ b/lib/open_project/text_formatting/formats/markdown/helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/pandoc_downloader.rb b/lib/open_project/text_formatting/formats/markdown/pandoc_downloader.rb index 980768e012..f8a0c99d01 100644 --- a/lib/open_project/text_formatting/formats/markdown/pandoc_downloader.rb +++ b/lib/open_project/text_formatting/formats/markdown/pandoc_downloader.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/pandoc_wrapper.rb b/lib/open_project/text_formatting/formats/markdown/pandoc_wrapper.rb index e6ac4529c9..1c4c71228e 100644 --- a/lib/open_project/text_formatting/formats/markdown/pandoc_wrapper.rb +++ b/lib/open_project/text_formatting/formats/markdown/pandoc_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/markdown/textile_converter.rb b/lib/open_project/text_formatting/formats/markdown/textile_converter.rb index c612f158f9..bc8cad752c 100644 --- a/lib/open_project/text_formatting/formats/markdown/textile_converter.rb +++ b/lib/open_project/text_formatting/formats/markdown/textile_converter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/plain/format.rb b/lib/open_project/text_formatting/formats/plain/format.rb index 780aad5c14..54f1248607 100644 --- a/lib/open_project/text_formatting/formats/plain/format.rb +++ b/lib/open_project/text_formatting/formats/plain/format.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/plain/formatter.rb b/lib/open_project/text_formatting/formats/plain/formatter.rb index b5b1ea4b35..d9985d8287 100644 --- a/lib/open_project/text_formatting/formats/plain/formatter.rb +++ b/lib/open_project/text_formatting/formats/plain/formatter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/formats/plain/helper.rb b/lib/open_project/text_formatting/formats/plain/helper.rb index 46c953051e..83780f7339 100644 --- a/lib/open_project/text_formatting/formats/plain/helper.rb +++ b/lib/open_project/text_formatting/formats/plain/helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/helpers/link_rewriter.rb b/lib/open_project/text_formatting/helpers/link_rewriter.rb index 612b738728..cee1a09dd4 100644 --- a/lib/open_project/text_formatting/helpers/link_rewriter.rb +++ b/lib/open_project/text_formatting/helpers/link_rewriter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/attribute_macros.rb b/lib/open_project/text_formatting/matchers/attribute_macros.rb index fa100bc80c..f9aad84361 100644 --- a/lib/open_project/text_formatting/matchers/attribute_macros.rb +++ b/lib/open_project/text_formatting/matchers/attribute_macros.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/link_handlers/base.rb b/lib/open_project/text_formatting/matchers/link_handlers/base.rb index f0eb2a85f1..974ef47cd5 100644 --- a/lib/open_project/text_formatting/matchers/link_handlers/base.rb +++ b/lib/open_project/text_formatting/matchers/link_handlers/base.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/link_handlers/colon_separator.rb b/lib/open_project/text_formatting/matchers/link_handlers/colon_separator.rb index 9d691063cb..065642d753 100644 --- a/lib/open_project/text_formatting/matchers/link_handlers/colon_separator.rb +++ b/lib/open_project/text_formatting/matchers/link_handlers/colon_separator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/link_handlers/hash_separator.rb b/lib/open_project/text_formatting/matchers/link_handlers/hash_separator.rb index edfa62ce6d..467bd56343 100644 --- a/lib/open_project/text_formatting/matchers/link_handlers/hash_separator.rb +++ b/lib/open_project/text_formatting/matchers/link_handlers/hash_separator.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/link_handlers/revisions.rb b/lib/open_project/text_formatting/matchers/link_handlers/revisions.rb index 4438c11d9e..ef80587178 100644 --- a/lib/open_project/text_formatting/matchers/link_handlers/revisions.rb +++ b/lib/open_project/text_formatting/matchers/link_handlers/revisions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/link_handlers/work_packages.rb b/lib/open_project/text_formatting/matchers/link_handlers/work_packages.rb index 0b71949504..2cbef1afd1 100644 --- a/lib/open_project/text_formatting/matchers/link_handlers/work_packages.rb +++ b/lib/open_project/text_formatting/matchers/link_handlers/work_packages.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/regex_matcher.rb b/lib/open_project/text_formatting/matchers/regex_matcher.rb index 2111548122..7302bc543f 100644 --- a/lib/open_project/text_formatting/matchers/regex_matcher.rb +++ b/lib/open_project/text_formatting/matchers/regex_matcher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/resource_links_matcher.rb b/lib/open_project/text_formatting/matchers/resource_links_matcher.rb index db32644fcb..403b9264aa 100644 --- a/lib/open_project/text_formatting/matchers/resource_links_matcher.rb +++ b/lib/open_project/text_formatting/matchers/resource_links_matcher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/matchers/wiki_links_matcher.rb b/lib/open_project/text_formatting/matchers/wiki_links_matcher.rb index 75b2a24634..69f133ebab 100644 --- a/lib/open_project/text_formatting/matchers/wiki_links_matcher.rb +++ b/lib/open_project/text_formatting/matchers/wiki_links_matcher.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/renderer.rb b/lib/open_project/text_formatting/renderer.rb index 4d7a36e4e0..884fed1c89 100644 --- a/lib/open_project/text_formatting/renderer.rb +++ b/lib/open_project/text_formatting/renderer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/text_formatting/truncation.rb b/lib/open_project/text_formatting/truncation.rb index 4b33376f90..404acaf4ed 100644 --- a/lib/open_project/text_formatting/truncation.rb +++ b/lib/open_project/text_formatting/truncation.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/ui/extensible_tabs.rb b/lib/open_project/ui/extensible_tabs.rb index 3eb142f334..5bd7e8ea39 100644 --- a/lib/open_project/ui/extensible_tabs.rb +++ b/lib/open_project/ui/extensible_tabs.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/open_project/version.rb b/lib/open_project/version.rb index af5e84d3f3..0b231d870d 100644 --- a/lib/open_project/version.rb +++ b/lib/open_project/version.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/pagination.rb b/lib/pagination.rb index 741aad5565..a5e53b6fd4 100644 --- a/lib/pagination.rb +++ b/lib/pagination.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/pagination/controller.rb b/lib/pagination/controller.rb index e2c505cc0b..23e99939e4 100644 --- a/lib/pagination/controller.rb +++ b/lib/pagination/controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/pagination/model.rb b/lib/pagination/model.rb index 92c6957e16..273fb020d6 100644 --- a/lib/pagination/model.rb +++ b/lib/pagination/model.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_attachable/init.rb b/lib/plugins/acts_as_attachable/init.rb index 3222e568fc..dca308af07 100644 --- a/lib/plugins/acts_as_attachable/init.rb +++ b/lib/plugins/acts_as_attachable/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb b/lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb index 763b311ddd..f5e17148c7 100644 --- a/lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb +++ b/lib/plugins/acts_as_attachable/lib/acts_as_attachable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_customizable/init.rb b/lib/plugins/acts_as_customizable/init.rb index ed1a2a76ff..c74868838e 100644 --- a/lib/plugins/acts_as_customizable/init.rb +++ b/lib/plugins/acts_as_customizable/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb b/lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb index 81740bca93..68ea2e6e58 100644 --- a/lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb +++ b/lib/plugins/acts_as_customizable/lib/acts_as_customizable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_customizable/lib/human_attribute_name.rb b/lib/plugins/acts_as_customizable/lib/human_attribute_name.rb index af64f2f932..04b24551d6 100644 --- a/lib/plugins/acts_as_customizable/lib/human_attribute_name.rb +++ b/lib/plugins/acts_as_customizable/lib/human_attribute_name.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_event/init.rb b/lib/plugins/acts_as_event/init.rb index 3d63b51574..6efcb8880b 100644 --- a/lib/plugins/acts_as_event/init.rb +++ b/lib/plugins/acts_as_event/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_event/lib/acts_as_event.rb b/lib/plugins/acts_as_event/lib/acts_as_event.rb index 0786554c07..b8f98808fb 100644 --- a/lib/plugins/acts_as_event/lib/acts_as_event.rb +++ b/lib/plugins/acts_as_event/lib/acts_as_event.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/init.rb b/lib/plugins/acts_as_journalized/init.rb index b3b8a9556a..b0500989d5 100644 --- a/lib/plugins/acts_as_journalized/init.rb +++ b/lib/plugins/acts_as_journalized/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/creation.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/creation.rb index 4121388c9c..2c7fec66c8 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/creation.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/creation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/format_hooks.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/format_hooks.rb index c93acffa31..9db5ec4b17 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/format_hooks.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/format_hooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/journal_object_cache.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/journal_object_cache.rb index dc863043bd..93f5179382 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/journal_object_cache.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/journal_object_cache.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/journalized.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/journalized.rb index 7e009736fe..00447e718b 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/journalized.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/journalized.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/options.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/options.rb index 7fdceb0451..6a00a0dee2 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/options.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/options.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/permissions.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/permissions.rb index 56ec5fc381..3fdd86710c 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/permissions.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/permissions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/reversion.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/reversion.rb index ba65d0dec6..0e3e3ae6a0 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/reversion.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/reversion.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts/journalized/save_hooks.rb b/lib/plugins/acts_as_journalized/lib/acts/journalized/save_hooks.rb index 920dd411b2..b33a330d37 100644 --- a/lib/plugins/acts_as_journalized/lib/acts/journalized/save_hooks.rb +++ b/lib/plugins/acts_as_journalized/lib/acts/journalized/save_hooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/acts_as_journalized.rb b/lib/plugins/acts_as_journalized/lib/acts_as_journalized.rb index a504411452..27431ea2a4 100644 --- a/lib/plugins/acts_as_journalized/lib/acts_as_journalized.rb +++ b/lib/plugins/acts_as_journalized/lib/acts_as_journalized.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_changes.rb b/lib/plugins/acts_as_journalized/lib/journal_changes.rb index 949277ce43..47d3dc8a60 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_changes.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_changes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_deprecated.rb b/lib/plugins/acts_as_journalized/lib/journal_deprecated.rb index eb134c87be..c5df16f5b0 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_deprecated.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_deprecated.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_detail.rb b/lib/plugins/acts_as_journalized/lib/journal_detail.rb index 304064fae1..6a17c9bb6d 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_detail.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_detail.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter.rb index feabe6fb3b..635a5a481c 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/attribute.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/attribute.rb index 4d87a978f3..9793f3e3fd 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/attribute.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/attribute.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/base.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/base.rb index 2ec6d06899..cecd498fce 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/base.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/datetime.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/datetime.rb index 4c56bb6ed4..513bfc8a24 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/datetime.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/datetime.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/decimal.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/decimal.rb index 422d96911c..1f52bbd03e 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/decimal.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/decimal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/fraction.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/fraction.rb index 82b7f7228d..fa65c3b205 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/fraction.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/fraction.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/id.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/id.rb index a2f3f00e1b..a159ba59ff 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/id.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/named_association.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/named_association.rb index 5b605c4bac..60ba21dafb 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/named_association.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/named_association.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/plaintext.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/plaintext.rb index 708491b46e..b541b87736 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/plaintext.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/plaintext.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_journalized/lib/journal_formatter/proc.rb b/lib/plugins/acts_as_journalized/lib/journal_formatter/proc.rb index f4d4b07544..e10c27b1bd 100644 --- a/lib/plugins/acts_as_journalized/lib/journal_formatter/proc.rb +++ b/lib/plugins/acts_as_journalized/lib/journal_formatter/proc.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_searchable/init.rb b/lib/plugins/acts_as_searchable/init.rb index e078b52eca..915bba9700 100644 --- a/lib/plugins/acts_as_searchable/init.rb +++ b/lib/plugins/acts_as_searchable/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb b/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb index d1fa85bee0..a01e2200d7 100644 --- a/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb +++ b/lib/plugins/acts_as_searchable/lib/acts_as_searchable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_watchable/init.rb b/lib/plugins/acts_as_watchable/init.rb index e336389793..00aa051c5a 100644 --- a/lib/plugins/acts_as_watchable/init.rb +++ b/lib/plugins/acts_as_watchable/init.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb b/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb index f594a1dc24..582c276d43 100644 --- a/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb +++ b/lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/acts_as_watchable/lib/acts_as_watchable/routes.rb b/lib/plugins/acts_as_watchable/lib/acts_as_watchable/routes.rb index 7f65a0b6b5..f76cfd54d9 100644 --- a/lib/plugins/acts_as_watchable/lib/acts_as_watchable/routes.rb +++ b/lib/plugins/acts_as_watchable/lib/acts_as_watchable/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/plugins/load_path_helper.rb b/lib/plugins/load_path_helper.rb index d44027ee22..d6446b403a 100644 --- a/lib/plugins/load_path_helper.rb +++ b/lib/plugins/load_path_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/about.rb b/lib/redmine/about.rb index 658780e658..92d07313ed 100644 --- a/lib/redmine/about.rb +++ b/lib/redmine/about.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/ciphering.rb b/lib/redmine/ciphering.rb index 112800d007..6a0d5c9813 100644 --- a/lib/redmine/ciphering.rb +++ b/lib/redmine/ciphering.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/codeset_util.rb b/lib/redmine/codeset_util.rb index 031d95a0a9..f0a04f4cef 100644 --- a/lib/redmine/codeset_util.rb +++ b/lib/redmine/codeset_util.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/diff.rb b/lib/redmine/diff.rb index 8a881627cb..6ed6fbdfa4 100644 --- a/lib/redmine/diff.rb +++ b/lib/redmine/diff.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/diff_table.rb b/lib/redmine/diff_table.rb index 95f8736bc2..dc1fc22481 100644 --- a/lib/redmine/diff_table.rb +++ b/lib/redmine/diff_table.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/helpers/diff.rb b/lib/redmine/helpers/diff.rb index 6a18ff4bfa..d78126dbbe 100644 --- a/lib/redmine/helpers/diff.rb +++ b/lib/redmine/helpers/diff.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/i18n.rb b/lib/redmine/i18n.rb index 5d5b1b7fdc..0488b7afad 100644 --- a/lib/redmine/i18n.rb +++ b/lib/redmine/i18n.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/imap.rb b/lib/redmine/imap.rb index 2365f988ee..d1731d3090 100644 --- a/lib/redmine/imap.rb +++ b/lib/redmine/imap.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager.rb b/lib/redmine/menu_manager.rb index 741aec14e3..387cd8377d 100644 --- a/lib/redmine/menu_manager.rb +++ b/lib/redmine/menu_manager.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/mapper.rb b/lib/redmine/menu_manager/mapper.rb index bb57973566..03cbe69a96 100644 --- a/lib/redmine/menu_manager/mapper.rb +++ b/lib/redmine/menu_manager/mapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/menu_controller.rb b/lib/redmine/menu_manager/menu_controller.rb index 8170b35301..a0e6f3188b 100644 --- a/lib/redmine/menu_manager/menu_controller.rb +++ b/lib/redmine/menu_manager/menu_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/menu_error.rb b/lib/redmine/menu_manager/menu_error.rb index 388e1213d4..62a1b20ca0 100644 --- a/lib/redmine/menu_manager/menu_error.rb +++ b/lib/redmine/menu_manager/menu_error.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/menu_helper.rb b/lib/redmine/menu_manager/menu_helper.rb index 8796e2bf50..ad0625869d 100644 --- a/lib/redmine/menu_manager/menu_helper.rb +++ b/lib/redmine/menu_manager/menu_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/menu_item.rb b/lib/redmine/menu_manager/menu_item.rb index 5dda0c120e..3ee8a6a55e 100644 --- a/lib/redmine/menu_manager/menu_item.rb +++ b/lib/redmine/menu_manager/menu_item.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/top_menu/help_menu.rb b/lib/redmine/menu_manager/top_menu/help_menu.rb index 9caf52b67e..de2789c809 100644 --- a/lib/redmine/menu_manager/top_menu/help_menu.rb +++ b/lib/redmine/menu_manager/top_menu/help_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/top_menu/projects_menu.rb b/lib/redmine/menu_manager/top_menu/projects_menu.rb index 5c4da041c6..5931acb97d 100644 --- a/lib/redmine/menu_manager/top_menu/projects_menu.rb +++ b/lib/redmine/menu_manager/top_menu/projects_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/top_menu/quick_add_menu.rb b/lib/redmine/menu_manager/top_menu/quick_add_menu.rb index 74d159523c..e93d888e1c 100644 --- a/lib/redmine/menu_manager/top_menu/quick_add_menu.rb +++ b/lib/redmine/menu_manager/top_menu/quick_add_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/top_menu_helper.rb b/lib/redmine/menu_manager/top_menu_helper.rb index 29f7dcc5f2..4d6d60534c 100644 --- a/lib/redmine/menu_manager/top_menu_helper.rb +++ b/lib/redmine/menu_manager/top_menu_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/tree_node.rb b/lib/redmine/menu_manager/tree_node.rb index 45269d126a..2a64a2009f 100644 --- a/lib/redmine/menu_manager/tree_node.rb +++ b/lib/redmine/menu_manager/tree_node.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/menu_manager/wiki_menu_helper.rb b/lib/redmine/menu_manager/wiki_menu_helper.rb index b955af0f8b..35ead1cda6 100644 --- a/lib/redmine/menu_manager/wiki_menu_helper.rb +++ b/lib/redmine/menu_manager/wiki_menu_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/platform.rb b/lib/redmine/platform.rb index 580a1e2bfe..832f5b6e67 100644 --- a/lib/redmine/platform.rb +++ b/lib/redmine/platform.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/plugin.rb b/lib/redmine/plugin.rb index 1fa8bf32b9..7aaf512ef2 100644 --- a/lib/redmine/plugin.rb +++ b/lib/redmine/plugin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/pop3.rb b/lib/redmine/pop3.rb index 8fdeac2463..8b6e58c30d 100644 --- a/lib/redmine/pop3.rb +++ b/lib/redmine/pop3.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/search.rb b/lib/redmine/search.rb index 0c298c9d9d..148d182af5 100644 --- a/lib/redmine/search.rb +++ b/lib/redmine/search.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/unified_diff.rb b/lib/redmine/unified_diff.rb index de75a8a7d5..07deb57798 100644 --- a/lib/redmine/unified_diff.rb +++ b/lib/redmine/unified_diff.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/redmine/views/other_formats_builder.rb b/lib/redmine/views/other_formats_builder.rb index 015a368ee1..74299d13b7 100644 --- a/lib/redmine/views/other_formats_builder.rb +++ b/lib/redmine/views/other_formats_builder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/services/create_relation.rb b/lib/services/create_relation.rb index dcb37ec144..5c01ebc063 100644 --- a/lib/services/create_relation.rb +++ b/lib/services/create_relation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/services/create_watcher.rb b/lib/services/create_watcher.rb index 423cc86ab3..0ac52f4f3f 100644 --- a/lib/services/create_watcher.rb +++ b/lib/services/create_watcher.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/services/remove_watcher.rb b/lib/services/remove_watcher.rb index 1b669c5894..fa1bb03d74 100644 --- a/lib/services/remove_watcher.rb +++ b/lib/services/remove_watcher.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tabular_form_builder.rb b/lib/tabular_form_builder.rb index 1da2bf100b..451166a2da 100644 --- a/lib/tabular_form_builder.rb +++ b/lib/tabular_form_builder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/api.rake b/lib/tasks/api.rake index df097d2a58..911f8baf81 100644 --- a/lib/tasks/api.rake +++ b/lib/tasks/api.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake index afd0491b89..b80c7fec46 100644 --- a/lib/tasks/assets.rake +++ b/lib/tasks/assets.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/attachment_migrations.rake b/lib/tasks/attachment_migrations.rake index 8b3a1830e8..83c693addf 100644 --- a/lib/tasks/attachment_migrations.rake +++ b/lib/tasks/attachment_migrations.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/attachments.rake b/lib/tasks/attachments.rake index 794bffc260..d935c3a05b 100644 --- a/lib/tasks/attachments.rake +++ b/lib/tasks/attachments.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/backup.rake b/lib/tasks/backup.rake index 4dc890bed4..0d5b1a24db 100644 --- a/lib/tasks/backup.rake +++ b/lib/tasks/backup.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/ciphering.rake b/lib/tasks/ciphering.rake index c599a87c30..0a0d50adbd 100644 --- a/lib/tasks/ciphering.rake +++ b/lib/tasks/ciphering.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/code.rake b/lib/tasks/code.rake index f00d5571bf..95b72ae6bb 100644 --- a/lib/tasks/code.rake +++ b/lib/tasks/code.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/copyright.rake b/lib/tasks/copyright.rake index ead2e8ef68..879063da8d 100644 --- a/lib/tasks/copyright.rake +++ b/lib/tasks/copyright.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/copyright_authors.rake b/lib/tasks/copyright_authors.rake index 8b5bb5758c..3073307e1c 100644 --- a/lib/tasks/copyright_authors.rake +++ b/lib/tasks/copyright_authors.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/cron.rake b/lib/tasks/cron.rake index 10d016e69a..e385344a40 100644 --- a/lib/tasks/cron.rake +++ b/lib/tasks/cron.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/database.rake b/lib/tasks/database.rake index 77989ba038..f93690ca81 100644 --- a/lib/tasks/database.rake +++ b/lib/tasks/database.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/delayed_job.rake b/lib/tasks/delayed_job.rake index c38a03c11d..d0edfa47dd 100644 --- a/lib/tasks/delayed_job.rake +++ b/lib/tasks/delayed_job.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/delete_documents.rake b/lib/tasks/delete_documents.rake index 8d547d10b3..a577946833 100644 --- a/lib/tasks/delete_documents.rake +++ b/lib/tasks/delete_documents.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/dependencies.rake b/lib/tasks/dependencies.rake index 59fba36140..328c0f2b79 100644 --- a/lib/tasks/dependencies.rake +++ b/lib/tasks/dependencies.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/deprecated.rake b/lib/tasks/deprecated.rake index 3c53fbab60..8416570359 100644 --- a/lib/tasks/deprecated.rake +++ b/lib/tasks/deprecated.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/email.rake b/lib/tasks/email.rake index a2bb2c1707..9b0abb9caf 100644 --- a/lib/tasks/email.rake +++ b/lib/tasks/email.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/environment.rake b/lib/tasks/environment.rake index 2f86b656fc..ff48d54159 100644 --- a/lib/tasks/environment.rake +++ b/lib/tasks/environment.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/extract_fixtures.rake b/lib/tasks/extract_fixtures.rake index 2cf5655c54..113e34ba0c 100644 --- a/lib/tasks/extract_fixtures.rake +++ b/lib/tasks/extract_fixtures.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/fetch_changesets.rake b/lib/tasks/fetch_changesets.rake index c1b58d9628..949f1e5d02 100644 --- a/lib/tasks/fetch_changesets.rake +++ b/lib/tasks/fetch_changesets.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/git.rake b/lib/tasks/git.rake index 3adc3cd3aa..d83dc68de6 100644 --- a/lib/tasks/git.rake +++ b/lib/tasks/git.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/jdbc.rake b/lib/tasks/jdbc.rake index 9d2616c49c..32cd28136e 100644 --- a/lib/tasks/jdbc.rake +++ b/lib/tasks/jdbc.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/ldap.rake b/lib/tasks/ldap.rake index 20b77a094c..785dff31b7 100644 --- a/lib/tasks/ldap.rake +++ b/lib/tasks/ldap.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/load_default_data.rake b/lib/tasks/load_default_data.rake index 83a4caba4c..98ab4d32db 100644 --- a/lib/tasks/load_default_data.rake +++ b/lib/tasks/load_default_data.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/metrics.rake b/lib/tasks/metrics.rake index 5f4d05a1da..55bd33af53 100644 --- a/lib/tasks/metrics.rake +++ b/lib/tasks/metrics.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/packager.rake b/lib/tasks/packager.rake index 479d712a4d..a16dfdd919 100644 --- a/lib/tasks/packager.rake +++ b/lib/tasks/packager.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/parallel_testing.rake b/lib/tasks/parallel_testing.rake index ade13f5fef..6c98baaa61 100644 --- a/lib/tasks/parallel_testing.rake +++ b/lib/tasks/parallel_testing.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/permissions.rake b/lib/tasks/permissions.rake index 3cf363710d..bb2060bcb7 100644 --- a/lib/tasks/permissions.rake +++ b/lib/tasks/permissions.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/plugin_specs.rake b/lib/tasks/plugin_specs.rake index 3fc757814f..499ab82b6d 100644 --- a/lib/tasks/plugin_specs.rake +++ b/lib/tasks/plugin_specs.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/plugins.rake b/lib/tasks/plugins.rake index a859b46391..8ae22d5348 100644 --- a/lib/tasks/plugins.rake +++ b/lib/tasks/plugins.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/random_data.rake b/lib/tasks/random_data.rake index 8eda36c1bd..27f6f553bf 100644 --- a/lib/tasks/random_data.rake +++ b/lib/tasks/random_data.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/release.rake b/lib/tasks/release.rake index 4cd01078d6..6682b69c37 100644 --- a/lib/tasks/release.rake +++ b/lib/tasks/release.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/reminder.rake b/lib/tasks/reminder.rake index 7cd81a8f1a..e8e77cb885 100644 --- a/lib/tasks/reminder.rake +++ b/lib/tasks/reminder.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/reregister_password_migrations.rake b/lib/tasks/reregister_password_migrations.rake index e1848b931b..2c0fdb6610 100644 --- a/lib/tasks/reregister_password_migrations.rake +++ b/lib/tasks/reregister_password_migrations.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/sample_data.rake b/lib/tasks/sample_data.rake index bf0bf83d26..6fd4bfdd2a 100644 --- a/lib/tasks/sample_data.rake +++ b/lib/tasks/sample_data.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/scm.rake b/lib/tasks/scm.rake index 6f02f3a4bb..b21f277c39 100644 --- a/lib/tasks/scm.rake +++ b/lib/tasks/scm.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/secret_token.rake b/lib/tasks/secret_token.rake index dd19c228ba..3d7dbd6664 100644 --- a/lib/tasks/secret_token.rake +++ b/lib/tasks/secret_token.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/setting.rake b/lib/tasks/setting.rake index 4886e484f1..745ddd2727 100644 --- a/lib/tasks/setting.rake +++ b/lib/tasks/setting.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/shared/user_feedback.rb b/lib/tasks/shared/user_feedback.rb index 636b468ac4..fe3b1e8101 100644 --- a/lib/tasks/shared/user_feedback.rb +++ b/lib/tasks/shared/user_feedback.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/testing.rake b/lib/tasks/testing.rake index f0b5dc7470..a1a2cc0348 100644 --- a/lib/tasks/testing.rake +++ b/lib/tasks/testing.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/time_entry_activities.rake b/lib/tasks/time_entry_activities.rake index c25184059f..402c087cfd 100644 --- a/lib/tasks/time_entry_activities.rake +++ b/lib/tasks/time_entry_activities.rake @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/version.rake b/lib/tasks/version.rake index 1ac801d674..9fff52d2c2 100644 --- a/lib/tasks/version.rake +++ b/lib/tasks/version.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/watchers.rake b/lib/tasks/watchers.rake index 4ec7c0d17d..0358628075 100644 --- a/lib/tasks/watchers.rake +++ b/lib/tasks/watchers.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/lib/tasks/yardoc.rake b/lib/tasks/yardoc.rake index 3cb6c4e04d..08b80eff5e 100644 --- a/lib/tasks/yardoc.rake +++ b/lib/tasks/yardoc.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/app/views/hooks/login/_providers.html.erb b/modules/auth_plugins/app/views/hooks/login/_providers.html.erb index 6084068a9a..0346024676 100644 --- a/modules/auth_plugins/app/views/hooks/login/_providers.html.erb +++ b/modules/auth_plugins/app/views/hooks/login/_providers.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/app/views/hooks/login/_providers_css.html.erb b/modules/auth_plugins/app/views/hooks/login/_providers_css.html.erb index 6e774deadf..8f1aa2a30f 100644 --- a/modules/auth_plugins/app/views/hooks/login/_providers_css.html.erb +++ b/modules/auth_plugins/app/views/hooks/login/_providers_css.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/omni_auth/flexible_builder.rb b/modules/auth_plugins/lib/omni_auth/flexible_builder.rb index 4817c93727..285d2a645f 100644 --- a/modules/auth_plugins/lib/omni_auth/flexible_builder.rb +++ b/modules/auth_plugins/lib/omni_auth/flexible_builder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/omni_auth/flexible_strategy.rb b/modules/auth_plugins/lib/omni_auth/flexible_strategy.rb index 807e07c908..5e04714508 100644 --- a/modules/auth_plugins/lib/omni_auth/flexible_strategy.rb +++ b/modules/auth_plugins/lib/omni_auth/flexible_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/open_project/auth_plugins.rb b/modules/auth_plugins/lib/open_project/auth_plugins.rb index 5411faf1da..997440dad9 100644 --- a/modules/auth_plugins/lib/open_project/auth_plugins.rb +++ b/modules/auth_plugins/lib/open_project/auth_plugins.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/open_project/auth_plugins/engine.rb b/modules/auth_plugins/lib/open_project/auth_plugins/engine.rb index 14d945527f..8037eea55c 100644 --- a/modules/auth_plugins/lib/open_project/auth_plugins/engine.rb +++ b/modules/auth_plugins/lib/open_project/auth_plugins/engine.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/open_project/auth_plugins/hooks.rb b/modules/auth_plugins/lib/open_project/auth_plugins/hooks.rb index 07b3afd239..4a2136edc5 100644 --- a/modules/auth_plugins/lib/open_project/auth_plugins/hooks.rb +++ b/modules/auth_plugins/lib/open_project/auth_plugins/hooks.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/open_project/plugins/auth_plugin.rb b/modules/auth_plugins/lib/open_project/plugins/auth_plugin.rb index f698f61739..47587cff99 100644 --- a/modules/auth_plugins/lib/open_project/plugins/auth_plugin.rb +++ b/modules/auth_plugins/lib/open_project/plugins/auth_plugin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/lib/openproject-auth_plugins.rb b/modules/auth_plugins/lib/openproject-auth_plugins.rb index ab3d515b54..a288cda87f 100644 --- a/modules/auth_plugins/lib/openproject-auth_plugins.rb +++ b/modules/auth_plugins/lib/openproject-auth_plugins.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/spec/features/auth_provider_spec.rb b/modules/auth_plugins/spec/features/auth_provider_spec.rb index 6a95faca51..d1da08c8fa 100644 --- a/modules/auth_plugins/spec/features/auth_provider_spec.rb +++ b/modules/auth_plugins/spec/features/auth_provider_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/spec/requests/auth_plugins.rb b/modules/auth_plugins/spec/requests/auth_plugins.rb index 2ed662e0b6..fec1215fad 100644 --- a/modules/auth_plugins/spec/requests/auth_plugins.rb +++ b/modules/auth_plugins/spec/requests/auth_plugins.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/spec/requests/flexible_strategy_spec.rb b/modules/auth_plugins/spec/requests/flexible_strategy_spec.rb index fb7afddd38..2c1d3a176f 100644 --- a/modules/auth_plugins/spec/requests/flexible_strategy_spec.rb +++ b/modules/auth_plugins/spec/requests/flexible_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/spec/views/base.html.erb_spec.rb b/modules/auth_plugins/spec/views/base.html.erb_spec.rb index f53e358e11..79381de109 100644 --- a/modules/auth_plugins/spec/views/base.html.erb_spec.rb +++ b/modules/auth_plugins/spec/views/base.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/auth_plugins/spec/views/hooks/login/_providers.html.erb_spec.rb b/modules/auth_plugins/spec/views/hooks/login/_providers.html.erb_spec.rb index 8eb1147a8e..872b9705b0 100644 --- a/modules/auth_plugins/spec/views/hooks/login/_providers.html.erb_spec.rb +++ b/modules/auth_plugins/spec/views/hooks/login/_providers.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/avatars/frontend/module/avatar-upload-form/avatar-upload-form.component.ts b/modules/avatars/frontend/module/avatar-upload-form/avatar-upload-form.component.ts index 3a47d321db..af3f6d0d00 100644 --- a/modules/avatars/frontend/module/avatar-upload-form/avatar-upload-form.component.ts +++ b/modules/avatars/frontend/module/avatar-upload-form/avatar-upload-form.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/avatars/lib/api/v3/users/user_avatar_api.rb b/modules/avatars/lib/api/v3/users/user_avatar_api.rb index 934152b954..0d24f37984 100644 --- a/modules/avatars/lib/api/v3/users/user_avatar_api.rb +++ b/modules/avatars/lib/api/v3/users/user_avatar_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/avatars/spec/lib/api/v3/users/user_representer_spec.rb b/modules/avatars/spec/lib/api/v3/users/user_representer_spec.rb index a4108efbd3..1b5016f15a 100644 --- a/modules/avatars/spec/lib/api/v3/users/user_representer_spec.rb +++ b/modules/avatars/spec/lib/api/v3/users/user_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/avatars/spec/requests/user_avatar_api_spec.rb b/modules/avatars/spec/requests/user_avatar_api_spec.rb index dff8441405..5a02372182 100644 --- a/modules/avatars/spec/requests/user_avatar_api_spec.rb +++ b/modules/avatars/spec/requests/user_avatar_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/backlogs_settings_controller.rb b/modules/backlogs/app/controllers/backlogs_settings_controller.rb index 173124a67d..b87514e5f0 100644 --- a/modules/backlogs/app/controllers/backlogs_settings_controller.rb +++ b/modules/backlogs/app/controllers/backlogs_settings_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/projects/settings/backlogs_controller.rb b/modules/backlogs/app/controllers/projects/settings/backlogs_controller.rb index a9261999b4..2262e80f6e 100644 --- a/modules/backlogs/app/controllers/projects/settings/backlogs_controller.rb +++ b/modules/backlogs/app/controllers/projects/settings/backlogs_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_application_controller.rb b/modules/backlogs/app/controllers/rb_application_controller.rb index aafd7065c3..5d368b8d6e 100644 --- a/modules/backlogs/app/controllers/rb_application_controller.rb +++ b/modules/backlogs/app/controllers/rb_application_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_burndown_charts_controller.rb b/modules/backlogs/app/controllers/rb_burndown_charts_controller.rb index 45a430dc0f..38b956f7dc 100644 --- a/modules/backlogs/app/controllers/rb_burndown_charts_controller.rb +++ b/modules/backlogs/app/controllers/rb_burndown_charts_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_export_card_configurations_controller.rb b/modules/backlogs/app/controllers/rb_export_card_configurations_controller.rb index d5bb844def..05400202bf 100644 --- a/modules/backlogs/app/controllers/rb_export_card_configurations_controller.rb +++ b/modules/backlogs/app/controllers/rb_export_card_configurations_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_impediments_controller.rb b/modules/backlogs/app/controllers/rb_impediments_controller.rb index 2ff5773f74..c496ab4e95 100644 --- a/modules/backlogs/app/controllers/rb_impediments_controller.rb +++ b/modules/backlogs/app/controllers/rb_impediments_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_master_backlogs_controller.rb b/modules/backlogs/app/controllers/rb_master_backlogs_controller.rb index f438e30dce..3aebd603eb 100644 --- a/modules/backlogs/app/controllers/rb_master_backlogs_controller.rb +++ b/modules/backlogs/app/controllers/rb_master_backlogs_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_queries_controller.rb b/modules/backlogs/app/controllers/rb_queries_controller.rb index 1cdbb02a13..347f398692 100644 --- a/modules/backlogs/app/controllers/rb_queries_controller.rb +++ b/modules/backlogs/app/controllers/rb_queries_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_sprints_controller.rb b/modules/backlogs/app/controllers/rb_sprints_controller.rb index 18435576a0..2c19e4361c 100644 --- a/modules/backlogs/app/controllers/rb_sprints_controller.rb +++ b/modules/backlogs/app/controllers/rb_sprints_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_stories_controller.rb b/modules/backlogs/app/controllers/rb_stories_controller.rb index 5b54f2f16b..dccb8d7543 100644 --- a/modules/backlogs/app/controllers/rb_stories_controller.rb +++ b/modules/backlogs/app/controllers/rb_stories_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_taskboards_controller.rb b/modules/backlogs/app/controllers/rb_taskboards_controller.rb index f2d58eebe3..0c3b55f63f 100644 --- a/modules/backlogs/app/controllers/rb_taskboards_controller.rb +++ b/modules/backlogs/app/controllers/rb_taskboards_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_tasks_controller.rb b/modules/backlogs/app/controllers/rb_tasks_controller.rb index 865f33cbc7..e9baacdc44 100644 --- a/modules/backlogs/app/controllers/rb_tasks_controller.rb +++ b/modules/backlogs/app/controllers/rb_tasks_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/rb_wikis_controller.rb b/modules/backlogs/app/controllers/rb_wikis_controller.rb index 3ca57f3f72..35d111b5bb 100644 --- a/modules/backlogs/app/controllers/rb_wikis_controller.rb +++ b/modules/backlogs/app/controllers/rb_wikis_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/version_settings_controller.rb b/modules/backlogs/app/controllers/version_settings_controller.rb index da10e487f1..67c3a39339 100644 --- a/modules/backlogs/app/controllers/version_settings_controller.rb +++ b/modules/backlogs/app/controllers/version_settings_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/controllers/work_package_boxes_controller.rb b/modules/backlogs/app/controllers/work_package_boxes_controller.rb index 4c52a9d23e..a9308aeb57 100644 --- a/modules/backlogs/app/controllers/work_package_boxes_controller.rb +++ b/modules/backlogs/app/controllers/work_package_boxes_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/helpers/burndown_charts_helper.rb b/modules/backlogs/app/helpers/burndown_charts_helper.rb index 951cf42880..5af8a69401 100644 --- a/modules/backlogs/app/helpers/burndown_charts_helper.rb +++ b/modules/backlogs/app/helpers/burndown_charts_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/helpers/rb_common_helper.rb b/modules/backlogs/app/helpers/rb_common_helper.rb index 3ec13be236..cf28223d41 100644 --- a/modules/backlogs/app/helpers/rb_common_helper.rb +++ b/modules/backlogs/app/helpers/rb_common_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/helpers/rb_master_backlogs_helper.rb b/modules/backlogs/app/helpers/rb_master_backlogs_helper.rb index 991749eaa9..1b2426b347 100644 --- a/modules/backlogs/app/helpers/rb_master_backlogs_helper.rb +++ b/modules/backlogs/app/helpers/rb_master_backlogs_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/helpers/taskboards_helper.rb b/modules/backlogs/app/helpers/taskboards_helper.rb index 2cfb1fa6f9..d87c069b62 100644 --- a/modules/backlogs/app/helpers/taskboards_helper.rb +++ b/modules/backlogs/app/helpers/taskboards_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/helpers/version_settings_helper.rb b/modules/backlogs/app/helpers/version_settings_helper.rb index 5ae188ccdd..25be7f0691 100644 --- a/modules/backlogs/app/helpers/version_settings_helper.rb +++ b/modules/backlogs/app/helpers/version_settings_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/backlog.rb b/modules/backlogs/app/models/backlog.rb index b76c87103a..106c9aad1f 100644 --- a/modules/backlogs/app/models/backlog.rb +++ b/modules/backlogs/app/models/backlog.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/burndown.rb b/modules/backlogs/app/models/burndown.rb index 4b508ba7ca..263d44c21f 100644 --- a/modules/backlogs/app/models/burndown.rb +++ b/modules/backlogs/app/models/burndown.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/impediment.rb b/modules/backlogs/app/models/impediment.rb index b80ef045ed..a811ea3cef 100644 --- a/modules/backlogs/app/models/impediment.rb +++ b/modules/backlogs/app/models/impediment.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/sprint.rb b/modules/backlogs/app/models/sprint.rb index 7be41e4ccf..0b5ef090d4 100644 --- a/modules/backlogs/app/models/sprint.rb +++ b/modules/backlogs/app/models/sprint.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/story.rb b/modules/backlogs/app/models/story.rb index a9f7387afe..0c38466f94 100644 --- a/modules/backlogs/app/models/story.rb +++ b/modules/backlogs/app/models/story.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/task.rb b/modules/backlogs/app/models/task.rb index 6bf3e3fda5..134948dd13 100644 --- a/modules/backlogs/app/models/task.rb +++ b/modules/backlogs/app/models/task.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/models/version_setting.rb b/modules/backlogs/app/models/version_setting.rb index 2c87873787..6213748024 100644 --- a/modules/backlogs/app/models/version_setting.rb +++ b/modules/backlogs/app/models/version_setting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/seeders/basic_data/backlogs/setting_seeder.rb b/modules/backlogs/app/seeders/basic_data/backlogs/setting_seeder.rb index 14b9d888c6..4ecf6fbbc5 100644 --- a/modules/backlogs/app/seeders/basic_data/backlogs/setting_seeder.rb +++ b/modules/backlogs/app/seeders/basic_data/backlogs/setting_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/impediments/create_service.rb b/modules/backlogs/app/services/impediments/create_service.rb index c146ee4b7b..8b519d4d8d 100644 --- a/modules/backlogs/app/services/impediments/create_service.rb +++ b/modules/backlogs/app/services/impediments/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/impediments/update_service.rb b/modules/backlogs/app/services/impediments/update_service.rb index ffb7bb53de..b5ad7b6e53 100644 --- a/modules/backlogs/app/services/impediments/update_service.rb +++ b/modules/backlogs/app/services/impediments/update_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/stories/create_service.rb b/modules/backlogs/app/services/stories/create_service.rb index 47bb27acbc..a2f5d860f0 100644 --- a/modules/backlogs/app/services/stories/create_service.rb +++ b/modules/backlogs/app/services/stories/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/stories/update_service.rb b/modules/backlogs/app/services/stories/update_service.rb index b50f8452bc..cebe227a00 100644 --- a/modules/backlogs/app/services/stories/update_service.rb +++ b/modules/backlogs/app/services/stories/update_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/tasks/create_service.rb b/modules/backlogs/app/services/tasks/create_service.rb index 5ca93246dd..b5244da7da 100644 --- a/modules/backlogs/app/services/tasks/create_service.rb +++ b/modules/backlogs/app/services/tasks/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/services/tasks/update_service.rb b/modules/backlogs/app/services/tasks/update_service.rb index 742eb95f08..17ed8a39cc 100644 --- a/modules/backlogs/app/services/tasks/update_service.rb +++ b/modules/backlogs/app/services/tasks/update_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/backlogs_settings/show.html.erb b/modules/backlogs/app/views/backlogs_settings/show.html.erb index 8e45143b49..6d9cc3d1e6 100644 --- a/modules/backlogs/app/views/backlogs_settings/show.html.erb +++ b/modules/backlogs/app/views/backlogs_settings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/projects/settings/backlogs/show.html.erb b/modules/backlogs/app/views/projects/settings/backlogs/show.html.erb index c672225497..ffb1e7ace0 100644 --- a/modules/backlogs/app/views/projects/settings/backlogs/show.html.erb +++ b/modules/backlogs/app/views/projects/settings/backlogs/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_burndown_charts/_burndown.html.erb b/modules/backlogs/app/views/rb_burndown_charts/_burndown.html.erb index 05ee45205a..4c6a63c989 100644 --- a/modules/backlogs/app/views/rb_burndown_charts/_burndown.html.erb +++ b/modules/backlogs/app/views/rb_burndown_charts/_burndown.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_burndown_charts/show.html.erb b/modules/backlogs/app/views/rb_burndown_charts/show.html.erb index 7107d2e556..d571750130 100644 --- a/modules/backlogs/app/views/rb_burndown_charts/show.html.erb +++ b/modules/backlogs/app/views/rb_burndown_charts/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_export_card_configurations/index.html.erb b/modules/backlogs/app/views/rb_export_card_configurations/index.html.erb index e5e94c387a..e42c477669 100644 --- a/modules/backlogs/app/views/rb_export_card_configurations/index.html.erb +++ b/modules/backlogs/app/views/rb_export_card_configurations/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_impediments/_impediment.html.erb b/modules/backlogs/app/views/rb_impediments/_impediment.html.erb index 3e00494749..56f05f4e0e 100644 --- a/modules/backlogs/app/views/rb_impediments/_impediment.html.erb +++ b/modules/backlogs/app/views/rb_impediments/_impediment.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_master_backlogs/_backlog.html.erb b/modules/backlogs/app/views/rb_master_backlogs/_backlog.html.erb index 5df1f94046..2bcf6a2ccf 100644 --- a/modules/backlogs/app/views/rb_master_backlogs/_backlog.html.erb +++ b/modules/backlogs/app/views/rb_master_backlogs/_backlog.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_master_backlogs/index.html.erb b/modules/backlogs/app/views/rb_master_backlogs/index.html.erb index 56dd582eb2..6c1c255d6b 100644 --- a/modules/backlogs/app/views/rb_master_backlogs/index.html.erb +++ b/modules/backlogs/app/views/rb_master_backlogs/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_sprints/_sprint.html.erb b/modules/backlogs/app/views/rb_sprints/_sprint.html.erb index 8a6a746de5..76ed94c839 100644 --- a/modules/backlogs/app/views/rb_sprints/_sprint.html.erb +++ b/modules/backlogs/app/views/rb_sprints/_sprint.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_stories/_helpers.html.erb b/modules/backlogs/app/views/rb_stories/_helpers.html.erb index 4cdf07536f..bff0a78317 100644 --- a/modules/backlogs/app/views/rb_stories/_helpers.html.erb +++ b/modules/backlogs/app/views/rb_stories/_helpers.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_stories/_story.html.erb b/modules/backlogs/app/views/rb_stories/_story.html.erb index 40e0227128..98ff12332c 100644 --- a/modules/backlogs/app/views/rb_stories/_story.html.erb +++ b/modules/backlogs/app/views/rb_stories/_story.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_taskboards/show.html.erb b/modules/backlogs/app/views/rb_taskboards/show.html.erb index 247b328ff6..02f6cd0cc1 100644 --- a/modules/backlogs/app/views/rb_taskboards/show.html.erb +++ b/modules/backlogs/app/views/rb_taskboards/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_tasks/_task.html.erb b/modules/backlogs/app/views/rb_tasks/_task.html.erb index 76c8c1a241..e2322e4464 100644 --- a/modules/backlogs/app/views/rb_tasks/_task.html.erb +++ b/modules/backlogs/app/views/rb_tasks/_task.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/rb_tasks/index.html.erb b/modules/backlogs/app/views/rb_tasks/index.html.erb index 55524fc6b8..0ef83e57f2 100644 --- a/modules/backlogs/app/views/rb_tasks/index.html.erb +++ b/modules/backlogs/app/views/rb_tasks/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/_backlogs_header.html.erb b/modules/backlogs/app/views/shared/_backlogs_header.html.erb index 97cc50d2d0..c3d4b0672e 100644 --- a/modules/backlogs/app/views/shared/_backlogs_header.html.erb +++ b/modules/backlogs/app/views/shared/_backlogs_header.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/_model_errors.html.erb b/modules/backlogs/app/views/shared/_model_errors.html.erb index 6c8303cb51..fe99ccc1ea 100644 --- a/modules/backlogs/app/views/shared/_model_errors.html.erb +++ b/modules/backlogs/app/views/shared/_model_errors.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/_server_variables.js.erb b/modules/backlogs/app/views/shared/_server_variables.js.erb index dfbce01c6e..d13ed446a3 100644 --- a/modules/backlogs/app/views/shared/_server_variables.js.erb +++ b/modules/backlogs/app/views/shared/_server_variables.js.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/_validation_errors.html.erb b/modules/backlogs/app/views/shared/_validation_errors.html.erb index dd74ea51f2..63193d6348 100644 --- a/modules/backlogs/app/views/shared/_validation_errors.html.erb +++ b/modules/backlogs/app/views/shared/_validation_errors.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/_view_my_settings.html.erb b/modules/backlogs/app/views/shared/_view_my_settings.html.erb index 7b202b3979..c56fc5692a 100644 --- a/modules/backlogs/app/views/shared/_view_my_settings.html.erb +++ b/modules/backlogs/app/views/shared/_view_my_settings.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/shared/not_configured.html.erb b/modules/backlogs/app/views/shared/not_configured.html.erb index 4945d0b7fd..ecbfa575da 100644 --- a/modules/backlogs/app/views/shared/not_configured.html.erb +++ b/modules/backlogs/app/views/shared/not_configured.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/version_settings/_form.html.erb b/modules/backlogs/app/views/version_settings/_form.html.erb index f609f55475..0fbddd4b6a 100644 --- a/modules/backlogs/app/views/version_settings/_form.html.erb +++ b/modules/backlogs/app/views/version_settings/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/app/views/version_settings/edit.html.erb b/modules/backlogs/app/views/version_settings/edit.html.erb index a76685c07b..e211bfc919 100644 --- a/modules/backlogs/app/views/version_settings/edit.html.erb +++ b/modules/backlogs/app/views/version_settings/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/config/labels-malformed.yml b/modules/backlogs/config/labels-malformed.yml index 53e8f81b3c..1a70d86c1c 100644 --- a/modules/backlogs/config/labels-malformed.yml +++ b/modules/backlogs/config/labels-malformed.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/config/labels.yml b/modules/backlogs/config/labels.yml index 1aaeabdb3b..6b275e0a0f 100644 --- a/modules/backlogs/config/labels.yml +++ b/modules/backlogs/config/labels.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/config/locales/crowdin/af.yml b/modules/backlogs/config/locales/crowdin/af.yml index fdbd59b083..9a7805ec79 100644 --- a/modules/backlogs/config/locales/crowdin/af.yml +++ b/modules/backlogs/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ar.yml b/modules/backlogs/config/locales/crowdin/ar.yml index 05bfbc3b1a..c90589f022 100644 --- a/modules/backlogs/config/locales/crowdin/ar.yml +++ b/modules/backlogs/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/az.yml b/modules/backlogs/config/locales/crowdin/az.yml index d8a72b3103..de6ee068c8 100644 --- a/modules/backlogs/config/locales/crowdin/az.yml +++ b/modules/backlogs/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/bg.yml b/modules/backlogs/config/locales/crowdin/bg.yml index 1f614581d4..c9effd8600 100644 --- a/modules/backlogs/config/locales/crowdin/bg.yml +++ b/modules/backlogs/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ca.yml b/modules/backlogs/config/locales/crowdin/ca.yml index a2b08f835f..ede80a16cc 100644 --- a/modules/backlogs/config/locales/crowdin/ca.yml +++ b/modules/backlogs/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/cs.yml b/modules/backlogs/config/locales/crowdin/cs.yml index 5d6207e807..b2249c1ea9 100644 --- a/modules/backlogs/config/locales/crowdin/cs.yml +++ b/modules/backlogs/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/da.yml b/modules/backlogs/config/locales/crowdin/da.yml index 3472d397f7..fd421bb239 100644 --- a/modules/backlogs/config/locales/crowdin/da.yml +++ b/modules/backlogs/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/de.yml b/modules/backlogs/config/locales/crowdin/de.yml index 34a5132fc1..f78025046d 100644 --- a/modules/backlogs/config/locales/crowdin/de.yml +++ b/modules/backlogs/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/el.yml b/modules/backlogs/config/locales/crowdin/el.yml index a573531d80..17cd9503fe 100644 --- a/modules/backlogs/config/locales/crowdin/el.yml +++ b/modules/backlogs/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/eo.yml b/modules/backlogs/config/locales/crowdin/eo.yml index 49307f0425..f384bfda2c 100644 --- a/modules/backlogs/config/locales/crowdin/eo.yml +++ b/modules/backlogs/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/es.yml b/modules/backlogs/config/locales/crowdin/es.yml index afd233dd98..d3cae4c106 100644 --- a/modules/backlogs/config/locales/crowdin/es.yml +++ b/modules/backlogs/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/et.yml b/modules/backlogs/config/locales/crowdin/et.yml index 3ef7e34153..26576d3bfc 100644 --- a/modules/backlogs/config/locales/crowdin/et.yml +++ b/modules/backlogs/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/fa.yml b/modules/backlogs/config/locales/crowdin/fa.yml index 1272dfd292..ceb8e0b856 100644 --- a/modules/backlogs/config/locales/crowdin/fa.yml +++ b/modules/backlogs/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/fi.yml b/modules/backlogs/config/locales/crowdin/fi.yml index b7fd761a7c..4a8b81e853 100644 --- a/modules/backlogs/config/locales/crowdin/fi.yml +++ b/modules/backlogs/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/fil.yml b/modules/backlogs/config/locales/crowdin/fil.yml index 0ba4a1aa74..f3910b769e 100644 --- a/modules/backlogs/config/locales/crowdin/fil.yml +++ b/modules/backlogs/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/fr.yml b/modules/backlogs/config/locales/crowdin/fr.yml index 371bfd894f..4fae4efc12 100644 --- a/modules/backlogs/config/locales/crowdin/fr.yml +++ b/modules/backlogs/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/he.yml b/modules/backlogs/config/locales/crowdin/he.yml index ebea84b815..8fe5511408 100644 --- a/modules/backlogs/config/locales/crowdin/he.yml +++ b/modules/backlogs/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/hi.yml b/modules/backlogs/config/locales/crowdin/hi.yml index 5888cbe27f..b75f167784 100644 --- a/modules/backlogs/config/locales/crowdin/hi.yml +++ b/modules/backlogs/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/hr.yml b/modules/backlogs/config/locales/crowdin/hr.yml index b32302e3c6..2286b72be8 100644 --- a/modules/backlogs/config/locales/crowdin/hr.yml +++ b/modules/backlogs/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/hu.yml b/modules/backlogs/config/locales/crowdin/hu.yml index 9fdb73ec09..59cccc0114 100644 --- a/modules/backlogs/config/locales/crowdin/hu.yml +++ b/modules/backlogs/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/id.yml b/modules/backlogs/config/locales/crowdin/id.yml index aee8fbbf02..d7d0fa4fb3 100644 --- a/modules/backlogs/config/locales/crowdin/id.yml +++ b/modules/backlogs/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/it.yml b/modules/backlogs/config/locales/crowdin/it.yml index 1d49b3d86d..bbe796b463 100644 --- a/modules/backlogs/config/locales/crowdin/it.yml +++ b/modules/backlogs/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ja.yml b/modules/backlogs/config/locales/crowdin/ja.yml index cafaa9dd9c..1d5d06a74c 100644 --- a/modules/backlogs/config/locales/crowdin/ja.yml +++ b/modules/backlogs/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-af.yml b/modules/backlogs/config/locales/crowdin/js-af.yml index 7a3ade745b..c2e6d29ef5 100644 --- a/modules/backlogs/config/locales/crowdin/js-af.yml +++ b/modules/backlogs/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ar.yml b/modules/backlogs/config/locales/crowdin/js-ar.yml index acc06216b6..5d499f7620 100644 --- a/modules/backlogs/config/locales/crowdin/js-ar.yml +++ b/modules/backlogs/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-az.yml b/modules/backlogs/config/locales/crowdin/js-az.yml index b245dd0124..467159857b 100644 --- a/modules/backlogs/config/locales/crowdin/js-az.yml +++ b/modules/backlogs/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-bg.yml b/modules/backlogs/config/locales/crowdin/js-bg.yml index 27dc3cf0af..42d39c20d6 100644 --- a/modules/backlogs/config/locales/crowdin/js-bg.yml +++ b/modules/backlogs/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ca.yml b/modules/backlogs/config/locales/crowdin/js-ca.yml index 88c044783f..c2dc514f8b 100644 --- a/modules/backlogs/config/locales/crowdin/js-ca.yml +++ b/modules/backlogs/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-cs.yml b/modules/backlogs/config/locales/crowdin/js-cs.yml index 183f0dd323..f7adc0e993 100644 --- a/modules/backlogs/config/locales/crowdin/js-cs.yml +++ b/modules/backlogs/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-da.yml b/modules/backlogs/config/locales/crowdin/js-da.yml index 6b0915873e..61f4098820 100644 --- a/modules/backlogs/config/locales/crowdin/js-da.yml +++ b/modules/backlogs/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-de.yml b/modules/backlogs/config/locales/crowdin/js-de.yml index ca5704f6a4..6f1d9a0d5f 100644 --- a/modules/backlogs/config/locales/crowdin/js-de.yml +++ b/modules/backlogs/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-el.yml b/modules/backlogs/config/locales/crowdin/js-el.yml index d006f69217..c548385f3f 100644 --- a/modules/backlogs/config/locales/crowdin/js-el.yml +++ b/modules/backlogs/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-eo.yml b/modules/backlogs/config/locales/crowdin/js-eo.yml index f64c0044ce..644b3b2861 100644 --- a/modules/backlogs/config/locales/crowdin/js-eo.yml +++ b/modules/backlogs/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-es.yml b/modules/backlogs/config/locales/crowdin/js-es.yml index bdba7e026b..76014086ba 100644 --- a/modules/backlogs/config/locales/crowdin/js-es.yml +++ b/modules/backlogs/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-et.yml b/modules/backlogs/config/locales/crowdin/js-et.yml index a17a0ac6c0..8d92fb7871 100644 --- a/modules/backlogs/config/locales/crowdin/js-et.yml +++ b/modules/backlogs/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-fa.yml b/modules/backlogs/config/locales/crowdin/js-fa.yml index 8e58256621..131bc0da3f 100644 --- a/modules/backlogs/config/locales/crowdin/js-fa.yml +++ b/modules/backlogs/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-fi.yml b/modules/backlogs/config/locales/crowdin/js-fi.yml index cadc24d9a6..18ec822dba 100644 --- a/modules/backlogs/config/locales/crowdin/js-fi.yml +++ b/modules/backlogs/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-fil.yml b/modules/backlogs/config/locales/crowdin/js-fil.yml index 83c6f2898a..8f20322735 100644 --- a/modules/backlogs/config/locales/crowdin/js-fil.yml +++ b/modules/backlogs/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-fr.yml b/modules/backlogs/config/locales/crowdin/js-fr.yml index 61ca8fced3..ef63b12dc3 100644 --- a/modules/backlogs/config/locales/crowdin/js-fr.yml +++ b/modules/backlogs/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-he.yml b/modules/backlogs/config/locales/crowdin/js-he.yml index 51951f7aee..aa5a924554 100644 --- a/modules/backlogs/config/locales/crowdin/js-he.yml +++ b/modules/backlogs/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-hi.yml b/modules/backlogs/config/locales/crowdin/js-hi.yml index 2cf1555f9e..bc84e65c8f 100644 --- a/modules/backlogs/config/locales/crowdin/js-hi.yml +++ b/modules/backlogs/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-hr.yml b/modules/backlogs/config/locales/crowdin/js-hr.yml index a94a7e5e81..c12a5203a8 100644 --- a/modules/backlogs/config/locales/crowdin/js-hr.yml +++ b/modules/backlogs/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-hu.yml b/modules/backlogs/config/locales/crowdin/js-hu.yml index 8ecdc235a7..4be03ff331 100644 --- a/modules/backlogs/config/locales/crowdin/js-hu.yml +++ b/modules/backlogs/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-id.yml b/modules/backlogs/config/locales/crowdin/js-id.yml index e0c7ab6b90..94d452c0b4 100644 --- a/modules/backlogs/config/locales/crowdin/js-id.yml +++ b/modules/backlogs/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-it.yml b/modules/backlogs/config/locales/crowdin/js-it.yml index ab0705316a..86c03637df 100644 --- a/modules/backlogs/config/locales/crowdin/js-it.yml +++ b/modules/backlogs/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ja.yml b/modules/backlogs/config/locales/crowdin/js-ja.yml index 52ed6bba55..d089e216a5 100644 --- a/modules/backlogs/config/locales/crowdin/js-ja.yml +++ b/modules/backlogs/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ko.yml b/modules/backlogs/config/locales/crowdin/js-ko.yml index 2d4f939a3a..b11bf0d859 100644 --- a/modules/backlogs/config/locales/crowdin/js-ko.yml +++ b/modules/backlogs/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-lol.yml b/modules/backlogs/config/locales/crowdin/js-lol.yml index ce94be5dc8..ed770fea09 100644 --- a/modules/backlogs/config/locales/crowdin/js-lol.yml +++ b/modules/backlogs/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-lt.yml b/modules/backlogs/config/locales/crowdin/js-lt.yml index a4706e0d7d..3f2385ac82 100644 --- a/modules/backlogs/config/locales/crowdin/js-lt.yml +++ b/modules/backlogs/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-lv.yml b/modules/backlogs/config/locales/crowdin/js-lv.yml index b9ab0f4dd3..c789f76f18 100644 --- a/modules/backlogs/config/locales/crowdin/js-lv.yml +++ b/modules/backlogs/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ne.yml b/modules/backlogs/config/locales/crowdin/js-ne.yml index 371839d93f..76557842a7 100644 --- a/modules/backlogs/config/locales/crowdin/js-ne.yml +++ b/modules/backlogs/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-nl.yml b/modules/backlogs/config/locales/crowdin/js-nl.yml index d6b13ad6e6..8daa75d98a 100644 --- a/modules/backlogs/config/locales/crowdin/js-nl.yml +++ b/modules/backlogs/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-no.yml b/modules/backlogs/config/locales/crowdin/js-no.yml index 7b64714ea4..ef438401a9 100644 --- a/modules/backlogs/config/locales/crowdin/js-no.yml +++ b/modules/backlogs/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-pl.yml b/modules/backlogs/config/locales/crowdin/js-pl.yml index caad62fc0e..89c38708cd 100644 --- a/modules/backlogs/config/locales/crowdin/js-pl.yml +++ b/modules/backlogs/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-pt.yml b/modules/backlogs/config/locales/crowdin/js-pt.yml index fec1353176..deb0e0b81c 100644 --- a/modules/backlogs/config/locales/crowdin/js-pt.yml +++ b/modules/backlogs/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ro.yml b/modules/backlogs/config/locales/crowdin/js-ro.yml index d49892b615..b94f89b2f8 100644 --- a/modules/backlogs/config/locales/crowdin/js-ro.yml +++ b/modules/backlogs/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-ru.yml b/modules/backlogs/config/locales/crowdin/js-ru.yml index 6ea7fe2bf4..7532141931 100644 --- a/modules/backlogs/config/locales/crowdin/js-ru.yml +++ b/modules/backlogs/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-rw.yml b/modules/backlogs/config/locales/crowdin/js-rw.yml index 08f89512fd..debffa5fa0 100644 --- a/modules/backlogs/config/locales/crowdin/js-rw.yml +++ b/modules/backlogs/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-si.yml b/modules/backlogs/config/locales/crowdin/js-si.yml index 7aa5df69c8..2c4ec377dc 100644 --- a/modules/backlogs/config/locales/crowdin/js-si.yml +++ b/modules/backlogs/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-sk.yml b/modules/backlogs/config/locales/crowdin/js-sk.yml index 495eb43d71..59f71d93ec 100644 --- a/modules/backlogs/config/locales/crowdin/js-sk.yml +++ b/modules/backlogs/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-sl.yml b/modules/backlogs/config/locales/crowdin/js-sl.yml index 427ef6266a..aaf1593612 100644 --- a/modules/backlogs/config/locales/crowdin/js-sl.yml +++ b/modules/backlogs/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-sv.yml b/modules/backlogs/config/locales/crowdin/js-sv.yml index 035be095ca..851efa2915 100644 --- a/modules/backlogs/config/locales/crowdin/js-sv.yml +++ b/modules/backlogs/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-th.yml b/modules/backlogs/config/locales/crowdin/js-th.yml index 1a4dcbb60a..2f4e80b748 100644 --- a/modules/backlogs/config/locales/crowdin/js-th.yml +++ b/modules/backlogs/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-tr.yml b/modules/backlogs/config/locales/crowdin/js-tr.yml index a029f97fc7..25258ae313 100644 --- a/modules/backlogs/config/locales/crowdin/js-tr.yml +++ b/modules/backlogs/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-uk.yml b/modules/backlogs/config/locales/crowdin/js-uk.yml index 0f2c2a9697..df518cae16 100644 --- a/modules/backlogs/config/locales/crowdin/js-uk.yml +++ b/modules/backlogs/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-vi.yml b/modules/backlogs/config/locales/crowdin/js-vi.yml index 6f19bdfc13..d63c5d86a8 100644 --- a/modules/backlogs/config/locales/crowdin/js-vi.yml +++ b/modules/backlogs/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-zh-CN.yml b/modules/backlogs/config/locales/crowdin/js-zh-CN.yml index 3e54b559e6..e792eee632 100644 --- a/modules/backlogs/config/locales/crowdin/js-zh-CN.yml +++ b/modules/backlogs/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/js-zh-TW.yml b/modules/backlogs/config/locales/crowdin/js-zh-TW.yml index 578b3a60f6..80f816888d 100644 --- a/modules/backlogs/config/locales/crowdin/js-zh-TW.yml +++ b/modules/backlogs/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ko.yml b/modules/backlogs/config/locales/crowdin/ko.yml index 85bb0c1400..6cc090cb30 100644 --- a/modules/backlogs/config/locales/crowdin/ko.yml +++ b/modules/backlogs/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/lol.yml b/modules/backlogs/config/locales/crowdin/lol.yml index 668d898202..8ffd206e54 100644 --- a/modules/backlogs/config/locales/crowdin/lol.yml +++ b/modules/backlogs/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/lt.yml b/modules/backlogs/config/locales/crowdin/lt.yml index 39a7a5b7ae..69f60fb938 100644 --- a/modules/backlogs/config/locales/crowdin/lt.yml +++ b/modules/backlogs/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/lv.yml b/modules/backlogs/config/locales/crowdin/lv.yml index fee6e4e1e9..b95ca9222b 100644 --- a/modules/backlogs/config/locales/crowdin/lv.yml +++ b/modules/backlogs/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ne.yml b/modules/backlogs/config/locales/crowdin/ne.yml index 55072192a9..9ba4f64f93 100644 --- a/modules/backlogs/config/locales/crowdin/ne.yml +++ b/modules/backlogs/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/nl.yml b/modules/backlogs/config/locales/crowdin/nl.yml index 6b2eb40d6b..e59893b32d 100644 --- a/modules/backlogs/config/locales/crowdin/nl.yml +++ b/modules/backlogs/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/no.yml b/modules/backlogs/config/locales/crowdin/no.yml index b04b3a8f27..cca4492b78 100644 --- a/modules/backlogs/config/locales/crowdin/no.yml +++ b/modules/backlogs/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/pl.yml b/modules/backlogs/config/locales/crowdin/pl.yml index 11952b7920..d27916d746 100644 --- a/modules/backlogs/config/locales/crowdin/pl.yml +++ b/modules/backlogs/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/pt.yml b/modules/backlogs/config/locales/crowdin/pt.yml index a3c5b4ecb4..cbf5c8c1b4 100644 --- a/modules/backlogs/config/locales/crowdin/pt.yml +++ b/modules/backlogs/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ro.yml b/modules/backlogs/config/locales/crowdin/ro.yml index e7a1f12d2c..5fcaf0f9c7 100644 --- a/modules/backlogs/config/locales/crowdin/ro.yml +++ b/modules/backlogs/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/ru.yml b/modules/backlogs/config/locales/crowdin/ru.yml index 79955a6931..e1a72b3917 100644 --- a/modules/backlogs/config/locales/crowdin/ru.yml +++ b/modules/backlogs/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/rw.yml b/modules/backlogs/config/locales/crowdin/rw.yml index 2448081f16..78d55a3cdf 100644 --- a/modules/backlogs/config/locales/crowdin/rw.yml +++ b/modules/backlogs/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/si.yml b/modules/backlogs/config/locales/crowdin/si.yml index f6a8309405..8438c5aa6a 100644 --- a/modules/backlogs/config/locales/crowdin/si.yml +++ b/modules/backlogs/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/sk.yml b/modules/backlogs/config/locales/crowdin/sk.yml index 4bad92b73c..a435c7f401 100644 --- a/modules/backlogs/config/locales/crowdin/sk.yml +++ b/modules/backlogs/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/sl.yml b/modules/backlogs/config/locales/crowdin/sl.yml index 728ad8329c..721c55dbb2 100644 --- a/modules/backlogs/config/locales/crowdin/sl.yml +++ b/modules/backlogs/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/sv.yml b/modules/backlogs/config/locales/crowdin/sv.yml index 8c0d0d58e6..1441015145 100644 --- a/modules/backlogs/config/locales/crowdin/sv.yml +++ b/modules/backlogs/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/th.yml b/modules/backlogs/config/locales/crowdin/th.yml index 4a906d5786..a6d2acc225 100644 --- a/modules/backlogs/config/locales/crowdin/th.yml +++ b/modules/backlogs/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/tr.yml b/modules/backlogs/config/locales/crowdin/tr.yml index 45210f3ba7..6e54807f4e 100644 --- a/modules/backlogs/config/locales/crowdin/tr.yml +++ b/modules/backlogs/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/uk.yml b/modules/backlogs/config/locales/crowdin/uk.yml index 55e875dbd3..f9245e53dc 100644 --- a/modules/backlogs/config/locales/crowdin/uk.yml +++ b/modules/backlogs/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/vi.yml b/modules/backlogs/config/locales/crowdin/vi.yml index de67cbc8f1..e44c4c0edc 100644 --- a/modules/backlogs/config/locales/crowdin/vi.yml +++ b/modules/backlogs/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/zh-CN.yml b/modules/backlogs/config/locales/crowdin/zh-CN.yml index d18edbc813..3376be6edd 100644 --- a/modules/backlogs/config/locales/crowdin/zh-CN.yml +++ b/modules/backlogs/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/crowdin/zh-TW.yml b/modules/backlogs/config/locales/crowdin/zh-TW.yml index 255a71a815..4496879faa 100644 --- a/modules/backlogs/config/locales/crowdin/zh-TW.yml +++ b/modules/backlogs/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/backlogs/config/locales/en.yml b/modules/backlogs/config/locales/en.yml index 2a9657b027..249bbbf76f 100644 --- a/modules/backlogs/config/locales/en.yml +++ b/modules/backlogs/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/config/locales/js-en.yml b/modules/backlogs/config/locales/js-en.yml index 1246a7d010..89af514490 100644 --- a/modules/backlogs/config/locales/js-en.yml +++ b/modules/backlogs/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/config/routes.rb b/modules/backlogs/config/routes.rb index 3b14907345..0aca094a9a 100644 --- a/modules/backlogs/config/routes.rb +++ b/modules/backlogs/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/db/migrate/20180323151208_to_v710_aggregated_backlogs_migrations.rb b/modules/backlogs/db/migrate/20180323151208_to_v710_aggregated_backlogs_migrations.rb index 3ae3218219..2a18abc768 100644 --- a/modules/backlogs/db/migrate/20180323151208_to_v710_aggregated_backlogs_migrations.rb +++ b/modules/backlogs/db/migrate/20180323151208_to_v710_aggregated_backlogs_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/api/v3/backlogs_types/backlogs_type_representer.rb b/modules/backlogs/lib/api/v3/backlogs_types/backlogs_type_representer.rb index 1877836153..f8e81b85ce 100644 --- a/modules/backlogs/lib/api/v3/backlogs_types/backlogs_type_representer.rb +++ b/modules/backlogs/lib/api/v3/backlogs_types/backlogs_type_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/api/v3/queries/schemas/backlogs_type_dependency_representer.rb b/modules/backlogs/lib/api/v3/queries/schemas/backlogs_type_dependency_representer.rb index 0aa66d23f5..0b80c01c3e 100644 --- a/modules/backlogs/lib/api/v3/queries/schemas/backlogs_type_dependency_representer.rb +++ b/modules/backlogs/lib/api/v3/queries/schemas/backlogs_type_dependency_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs.rb b/modules/backlogs/lib/open_project/backlogs.rb index 5e2420cbed..5e95064fad 100644 --- a/modules/backlogs/lib/open_project/backlogs.rb +++ b/modules/backlogs/lib/open_project/backlogs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/burndown/series.rb b/modules/backlogs/lib/open_project/backlogs/burndown/series.rb index d0185e5f07..d808f3bdef 100644 --- a/modules/backlogs/lib/open_project/backlogs/burndown/series.rb +++ b/modules/backlogs/lib/open_project/backlogs/burndown/series.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/burndown/series_raw_data.rb b/modules/backlogs/lib/open_project/backlogs/burndown/series_raw_data.rb index 055ed944fc..e2c5e6459f 100644 --- a/modules/backlogs/lib/open_project/backlogs/burndown/series_raw_data.rb +++ b/modules/backlogs/lib/open_project/backlogs/burndown/series_raw_data.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/compatibility.rb b/modules/backlogs/lib/open_project/backlogs/compatibility.rb index 1a6af1ed60..cd859c4ee6 100644 --- a/modules/backlogs/lib/open_project/backlogs/compatibility.rb +++ b/modules/backlogs/lib/open_project/backlogs/compatibility.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/engine.rb b/modules/backlogs/lib/open_project/backlogs/engine.rb index e6f472d040..6479732295 100644 --- a/modules/backlogs/lib/open_project/backlogs/engine.rb +++ b/modules/backlogs/lib/open_project/backlogs/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/hooks.rb b/modules/backlogs/lib/open_project/backlogs/hooks.rb index 21c12d2b7e..e778166a94 100644 --- a/modules/backlogs/lib/open_project/backlogs/hooks.rb +++ b/modules/backlogs/lib/open_project/backlogs/hooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/hooks/user_settings_hook.rb b/modules/backlogs/lib/open_project/backlogs/hooks/user_settings_hook.rb index 1774cf5dd8..185ded5501 100644 --- a/modules/backlogs/lib/open_project/backlogs/hooks/user_settings_hook.rb +++ b/modules/backlogs/lib/open_project/backlogs/hooks/user_settings_hook.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/list.rb b/modules/backlogs/lib/open_project/backlogs/list.rb index 82a47cbb0d..12b2e8e298 100644 --- a/modules/backlogs/lib/open_project/backlogs/list.rb +++ b/modules/backlogs/lib/open_project/backlogs/list.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/mixins/prevent_issue_sti.rb b/modules/backlogs/lib/open_project/backlogs/mixins/prevent_issue_sti.rb index b0374494a6..9c24a28899 100644 --- a/modules/backlogs/lib/open_project/backlogs/mixins/prevent_issue_sti.rb +++ b/modules/backlogs/lib/open_project/backlogs/mixins/prevent_issue_sti.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches.rb b/modules/backlogs/lib/open_project/backlogs/patches.rb index ae922aa950..20e4b86b1d 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_representer.rb b/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_representer.rb index c59d9412fe..649a8fa094 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_representer.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_schema_representer.rb b/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_schema_representer.rb index 55c5ed3758..ba17352439 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_schema_representer.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/api/work_package_schema_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/base_contract_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/base_contract_patch.rb index 881b910dd6..c2044571b7 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/base_contract_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/base_contract_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/permitted_params_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/permitted_params_patch.rb index e534ef0d68..0a4d319273 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/permitted_params_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/permitted_params_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/project_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/project_patch.rb index a18bc05c94..ba62416d76 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/project_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/project_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/project_seeder_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/project_seeder_patch.rb index 3c21ef3ae0..4f2dc8f55c 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/project_seeder_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/project_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/set_attributes_service_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/set_attributes_service_patch.rb index 06fcbd3005..d74892498c 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/set_attributes_service_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/set_attributes_service_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/setting_seeder_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/setting_seeder_patch.rb index 45a067e2ad..7bf9454a2e 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/setting_seeder_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/setting_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/specific_work_package_schema_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/specific_work_package_schema_patch.rb index 066fee74e6..be7cb04707 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/specific_work_package_schema_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/specific_work_package_schema_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/status_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/status_patch.rb index fac7c23b7f..e50c5a9feb 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/status_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/status_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/type_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/type_patch.rb index f7660b3fd6..f2dd6fca97 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/type_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/type_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/update_ancestors_service_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/update_ancestors_service_patch.rb index b79e517120..c6995c3298 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/update_ancestors_service_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/update_ancestors_service_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/update_service_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/update_service_patch.rb index bfe1f0ad2e..34813860e3 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/update_service_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/update_service_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/user_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/user_patch.rb index 54d56f6a49..8663fa5acb 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/user_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/user_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/version_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/version_patch.rb index 5a20c211d1..14af9bc1b9 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/version_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/version_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/versions/base_contract_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/versions/base_contract_patch.rb index c553e05f1b..1f427f6c03 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/versions/base_contract_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/versions/base_contract_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/versions/row_cell_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/versions/row_cell_patch.rb index 0503c7f6f1..1f6b842e00 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/versions/row_cell_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/versions/row_cell_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/versions_controller_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/versions_controller_patch.rb index 5deca2c950..ff04de65c4 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/versions_controller_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/versions_controller_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/patches/work_package_patch.rb b/modules/backlogs/lib/open_project/backlogs/patches/work_package_patch.rb index 974927d36e..5682a457de 100644 --- a/modules/backlogs/lib/open_project/backlogs/patches/work_package_patch.rb +++ b/modules/backlogs/lib/open_project/backlogs/patches/work_package_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/query_backlogs_column.rb b/modules/backlogs/lib/open_project/backlogs/query_backlogs_column.rb index a95bd48499..76614aeb71 100644 --- a/modules/backlogs/lib/open_project/backlogs/query_backlogs_column.rb +++ b/modules/backlogs/lib/open_project/backlogs/query_backlogs_column.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/open_project/backlogs/work_package_filter.rb b/modules/backlogs/lib/open_project/backlogs/work_package_filter.rb index 0e4d94d5c3..f8b1e6fa8e 100644 --- a/modules/backlogs/lib/open_project/backlogs/work_package_filter.rb +++ b/modules/backlogs/lib/open_project/backlogs/work_package_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/lib/openproject-backlogs.rb b/modules/backlogs/lib/openproject-backlogs.rb index c0ef878ab2..ac1d5425ae 100644 --- a/modules/backlogs/lib/openproject-backlogs.rb +++ b/modules/backlogs/lib/openproject-backlogs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/api/work_package_resource_spec.rb b/modules/backlogs/spec/api/work_package_resource_spec.rb index 6ea1a7284e..928a889e1e 100644 --- a/modules/backlogs/spec/api/work_package_resource_spec.rb +++ b/modules/backlogs/spec/api/work_package_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/api/work_packages/form_resource_spec.rb b/modules/backlogs/spec/api/work_packages/form_resource_spec.rb index ddaf51889b..962c7dd222 100644 --- a/modules/backlogs/spec/api/work_packages/form_resource_spec.rb +++ b/modules/backlogs/spec/api/work_packages/form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/api/work_packages/schema/specific_work_package_schema_spec.rb b/modules/backlogs/spec/api/work_packages/schema/specific_work_package_schema_spec.rb index 969fdac2c3..7f26530c55 100644 --- a/modules/backlogs/spec/api/work_packages/schema/specific_work_package_schema_spec.rb +++ b/modules/backlogs/spec/api/work_packages/schema/specific_work_package_schema_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/api/work_packages/work_package_schema_representer_spec.rb b/modules/backlogs/spec/api/work_packages/work_package_schema_representer_spec.rb index b97f3a160a..29c80407b9 100644 --- a/modules/backlogs/spec/api/work_packages/work_package_schema_representer_spec.rb +++ b/modules/backlogs/spec/api/work_packages/work_package_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/contracts/work_packages/base_contract_spec.rb b/modules/backlogs/spec/contracts/work_packages/base_contract_spec.rb index d3267e846d..b0dcbc4636 100644 --- a/modules/backlogs/spec/contracts/work_packages/base_contract_spec.rb +++ b/modules/backlogs/spec/contracts/work_packages/base_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/contracts/work_packages/create_contract_spec.rb b/modules/backlogs/spec/contracts/work_packages/create_contract_spec.rb index 0f6ffdb907..9d5eea4a83 100644 --- a/modules/backlogs/spec/contracts/work_packages/create_contract_spec.rb +++ b/modules/backlogs/spec/contracts/work_packages/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/contracts/work_packages/update_contract_spec.rb b/modules/backlogs/spec/contracts/work_packages/update_contract_spec.rb index 110d8048f9..f99faa72bb 100644 --- a/modules/backlogs/spec/contracts/work_packages/update_contract_spec.rb +++ b/modules/backlogs/spec/contracts/work_packages/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/controllers/backlogs_settings_controller_spec.rb b/modules/backlogs/spec/controllers/backlogs_settings_controller_spec.rb index 050537e1ee..0cafc0d8dc 100644 --- a/modules/backlogs/spec/controllers/backlogs_settings_controller_spec.rb +++ b/modules/backlogs/spec/controllers/backlogs_settings_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/controllers/versions_controller_spec.rb b/modules/backlogs/spec/controllers/versions_controller_spec.rb index 8c55008042..65961c8f36 100644 --- a/modules/backlogs/spec/controllers/versions_controller_spec.rb +++ b/modules/backlogs/spec/controllers/versions_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/factories/impediment_factory.rb b/modules/backlogs/spec/factories/impediment_factory.rb index a4db36dcd7..b6fffb2471 100644 --- a/modules/backlogs/spec/factories/impediment_factory.rb +++ b/modules/backlogs/spec/factories/impediment_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/factories/sprint_factory.rb b/modules/backlogs/spec/factories/sprint_factory.rb index aa0fe44664..f204e80070 100644 --- a/modules/backlogs/spec/factories/sprint_factory.rb +++ b/modules/backlogs/spec/factories/sprint_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/factories/story_factory.rb b/modules/backlogs/spec/factories/story_factory.rb index 544c68bc73..1dc3fadd2b 100644 --- a/modules/backlogs/spec/factories/story_factory.rb +++ b/modules/backlogs/spec/factories/story_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/factories/task_factory.rb b/modules/backlogs/spec/factories/task_factory.rb index c217642297..cab860bf53 100644 --- a/modules/backlogs/spec/factories/task_factory.rb +++ b/modules/backlogs/spec/factories/task_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/factories/version_setting_factory.rb b/modules/backlogs/spec/factories/version_setting_factory.rb index 8a5581a533..20d23b1a5b 100644 --- a/modules/backlogs/spec/factories/version_setting_factory.rb +++ b/modules/backlogs/spec/factories/version_setting_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/backlogs/create_story_spec.rb b/modules/backlogs/spec/features/backlogs/create_story_spec.rb index e26aa9c53b..c7ee3b1fcf 100644 --- a/modules/backlogs/spec/features/backlogs/create_story_spec.rb +++ b/modules/backlogs/spec/features/backlogs/create_story_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/backlogs_in_backlog_view_spec.rb b/modules/backlogs/spec/features/backlogs_in_backlog_view_spec.rb index a2276c1e55..19b686a64a 100644 --- a/modules/backlogs/spec/features/backlogs_in_backlog_view_spec.rb +++ b/modules/backlogs/spec/features/backlogs_in_backlog_view_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/empty_backlogs_spec.rb b/modules/backlogs/spec/features/empty_backlogs_spec.rb index 863958b080..4b165a7937 100644 --- a/modules/backlogs/spec/features/empty_backlogs_spec.rb +++ b/modules/backlogs/spec/features/empty_backlogs_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/impediments_spec.rb b/modules/backlogs/spec/features/impediments_spec.rb index 3205dc470f..4207dfa529 100644 --- a/modules/backlogs/spec/features/impediments_spec.rb +++ b/modules/backlogs/spec/features/impediments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/onboarding/backlogs_onboarding_tour_spec.rb b/modules/backlogs/spec/features/onboarding/backlogs_onboarding_tour_spec.rb index 05c234e343..eca77aa0e2 100644 --- a/modules/backlogs/spec/features/onboarding/backlogs_onboarding_tour_spec.rb +++ b/modules/backlogs/spec/features/onboarding/backlogs_onboarding_tour_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/resolved_status_spec.rb b/modules/backlogs/spec/features/resolved_status_spec.rb index 5347bd6f9f..9bc009065d 100644 --- a/modules/backlogs/spec/features/resolved_status_spec.rb +++ b/modules/backlogs/spec/features/resolved_status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/stories_in_backlog_spec.rb b/modules/backlogs/spec/features/stories_in_backlog_spec.rb index 35b4b06d03..25843ff91c 100644 --- a/modules/backlogs/spec/features/stories_in_backlog_spec.rb +++ b/modules/backlogs/spec/features/stories_in_backlog_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/tasks_on_taskboard_spec.rb b/modules/backlogs/spec/features/tasks_on_taskboard_spec.rb index 6f164c94a7..493ac7bc39 100644 --- a/modules/backlogs/spec/features/tasks_on_taskboard_spec.rb +++ b/modules/backlogs/spec/features/tasks_on_taskboard_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/work_packages/filter_spec.rb b/modules/backlogs/spec/features/work_packages/filter_spec.rb index 8cd24eed2e..70d005f6f8 100644 --- a/modules/backlogs/spec/features/work_packages/filter_spec.rb +++ b/modules/backlogs/spec/features/work_packages/filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/features/work_packages/story_points_spec.rb b/modules/backlogs/spec/features/work_packages/story_points_spec.rb index 501594b541..d9a6a77b80 100644 --- a/modules/backlogs/spec/features/work_packages/story_points_spec.rb +++ b/modules/backlogs/spec/features/work_packages/story_points_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/helpers/version_settings_helper_spec.rb b/modules/backlogs/spec/helpers/version_settings_helper_spec.rb index 5b73958d7e..3395d02941 100644 --- a/modules/backlogs/spec/helpers/version_settings_helper_spec.rb +++ b/modules/backlogs/spec/helpers/version_settings_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/backlog_spec.rb b/modules/backlogs/spec/models/backlog_spec.rb index fff09f3696..4c4df440be 100644 --- a/modules/backlogs/spec/models/backlog_spec.rb +++ b/modules/backlogs/spec/models/backlog_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/burndown_spec.rb b/modules/backlogs/spec/models/burndown_spec.rb index f8a1e45196..fa23429426 100644 --- a/modules/backlogs/spec/models/burndown_spec.rb +++ b/modules/backlogs/spec/models/burndown_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/impediment_spec.rb b/modules/backlogs/spec/models/impediment_spec.rb index eb8a25abd4..64f6da464c 100644 --- a/modules/backlogs/spec/models/impediment_spec.rb +++ b/modules/backlogs/spec/models/impediment_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/issue_position_spec.rb b/modules/backlogs/spec/models/issue_position_spec.rb index 686c21c4ba..7048787a17 100644 --- a/modules/backlogs/spec/models/issue_position_spec.rb +++ b/modules/backlogs/spec/models/issue_position_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/issue_spec.rb b/modules/backlogs/spec/models/issue_spec.rb index d8b85e37ed..fca0075107 100644 --- a/modules/backlogs/spec/models/issue_spec.rb +++ b/modules/backlogs/spec/models/issue_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/sprint_spec.rb b/modules/backlogs/spec/models/sprint_spec.rb index 5ca4553333..f7b7a97359 100644 --- a/modules/backlogs/spec/models/sprint_spec.rb +++ b/modules/backlogs/spec/models/sprint_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/story_spec.rb b/modules/backlogs/spec/models/story_spec.rb index 57c8340d2a..dab5450c41 100644 --- a/modules/backlogs/spec/models/story_spec.rb +++ b/modules/backlogs/spec/models/story_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/task_spec.rb b/modules/backlogs/spec/models/task_spec.rb index c902f50dd0..68a20de078 100644 --- a/modules/backlogs/spec/models/task_spec.rb +++ b/modules/backlogs/spec/models/task_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/user_spec.rb b/modules/backlogs/spec/models/user_spec.rb index 88ab26546d..c61d81b567 100644 --- a/modules/backlogs/spec/models/user_spec.rb +++ b/modules/backlogs/spec/models/user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/version_setting_spec.rb b/modules/backlogs/spec/models/version_setting_spec.rb index 9e19e4311c..2740cd7a03 100644 --- a/modules/backlogs/spec/models/version_setting_spec.rb +++ b/modules/backlogs/spec/models/version_setting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/version_spec.rb b/modules/backlogs/spec/models/version_spec.rb index c24c851cea..7b2d69ec12 100644 --- a/modules/backlogs/spec/models/version_spec.rb +++ b/modules/backlogs/spec/models/version_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/work_package_export_spec.rb b/modules/backlogs/spec/models/work_package_export_spec.rb index 1ea9acce4d..438a681337 100644 --- a/modules/backlogs/spec/models/work_package_export_spec.rb +++ b/modules/backlogs/spec/models/work_package_export_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/models/work_package_spec.rb b/modules/backlogs/spec/models/work_package_spec.rb index 7e1441fad9..c4778d3655 100644 --- a/modules/backlogs/spec/models/work_package_spec.rb +++ b/modules/backlogs/spec/models/work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_burndown_charts_routing_spec.rb b/modules/backlogs/spec/routing/rb_burndown_charts_routing_spec.rb index 26472c8700..034b303eec 100644 --- a/modules/backlogs/spec/routing/rb_burndown_charts_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_burndown_charts_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_impediments_routing_spec.rb b/modules/backlogs/spec/routing/rb_impediments_routing_spec.rb index 4014ad69b0..124a5dc3f9 100644 --- a/modules/backlogs/spec/routing/rb_impediments_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_impediments_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_master_backlogs_routing_spec.rb b/modules/backlogs/spec/routing/rb_master_backlogs_routing_spec.rb index 722b063d9f..95b1348873 100644 --- a/modules/backlogs/spec/routing/rb_master_backlogs_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_master_backlogs_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_queries_routing_spec.rb b/modules/backlogs/spec/routing/rb_queries_routing_spec.rb index 566b5b6146..fb7a2613bc 100644 --- a/modules/backlogs/spec/routing/rb_queries_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_queries_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_sprints_routing_spec.rb b/modules/backlogs/spec/routing/rb_sprints_routing_spec.rb index 634a2ed43f..1421eddf17 100644 --- a/modules/backlogs/spec/routing/rb_sprints_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_sprints_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_stories_routing_spec.rb b/modules/backlogs/spec/routing/rb_stories_routing_spec.rb index cdba758fd5..225a1625cc 100644 --- a/modules/backlogs/spec/routing/rb_stories_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_stories_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_taskboard_card_configurations_routing_spec.rb b/modules/backlogs/spec/routing/rb_taskboard_card_configurations_routing_spec.rb index 67cc4a8dcd..87876d65e9 100644 --- a/modules/backlogs/spec/routing/rb_taskboard_card_configurations_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_taskboard_card_configurations_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_taskboards_routing_spec.rb b/modules/backlogs/spec/routing/rb_taskboards_routing_spec.rb index fb4d124ce2..f70579bcd7 100644 --- a/modules/backlogs/spec/routing/rb_taskboards_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_taskboards_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_tasks_routing_spec.rb b/modules/backlogs/spec/routing/rb_tasks_routing_spec.rb index e156a63f5e..af67c373c1 100644 --- a/modules/backlogs/spec/routing/rb_tasks_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_tasks_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/routing/rb_wikis_routing_spec.rb b/modules/backlogs/spec/routing/rb_wikis_routing_spec.rb index b6839b70e8..163fb34ced 100644 --- a/modules/backlogs/spec/routing/rb_wikis_routing_spec.rb +++ b/modules/backlogs/spec/routing/rb_wikis_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/services/impediments/create_services_spec.rb b/modules/backlogs/spec/services/impediments/create_services_spec.rb index 39eecaab40..be2d673de9 100644 --- a/modules/backlogs/spec/services/impediments/create_services_spec.rb +++ b/modules/backlogs/spec/services/impediments/create_services_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/services/impediments/update_service_spec.rb b/modules/backlogs/spec/services/impediments/update_service_spec.rb index a4bfc81195..f4b986b3b9 100644 --- a/modules/backlogs/spec/services/impediments/update_service_spec.rb +++ b/modules/backlogs/spec/services/impediments/update_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/services/stories/create_service_spec.rb b/modules/backlogs/spec/services/stories/create_service_spec.rb index ad7f318192..2fccbb0dd6 100644 --- a/modules/backlogs/spec/services/stories/create_service_spec.rb +++ b/modules/backlogs/spec/services/stories/create_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/services/work_packages/update_ancestors_service_spec.rb b/modules/backlogs/spec/services/work_packages/update_ancestors_service_spec.rb index 578b0cfaac..03ad92afb4 100644 --- a/modules/backlogs/spec/services/work_packages/update_ancestors_service_spec.rb +++ b/modules/backlogs/spec/services/work_packages/update_ancestors_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/services/work_packages/update_service_version_inheritance_spec.rb b/modules/backlogs/spec/services/work_packages/update_service_version_inheritance_spec.rb index e441ebcf7d..587f2091fa 100644 --- a/modules/backlogs/spec/services/work_packages/update_service_version_inheritance_spec.rb +++ b/modules/backlogs/spec/services/work_packages/update_service_version_inheritance_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/spec_helper.rb b/modules/backlogs/spec/spec_helper.rb index 5f1bec6705..142da2da00 100644 --- a/modules/backlogs/spec/spec_helper.rb +++ b/modules/backlogs/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/support/pages/backlogs.rb b/modules/backlogs/spec/support/pages/backlogs.rb index b9885568ae..37f45f858c 100644 --- a/modules/backlogs/spec/support/pages/backlogs.rb +++ b/modules/backlogs/spec/support/pages/backlogs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/support/pages/taskboard.rb b/modules/backlogs/spec/support/pages/taskboard.rb index 87cf18193b..695e504563 100644 --- a/modules/backlogs/spec/support/pages/taskboard.rb +++ b/modules/backlogs/spec/support/pages/taskboard.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/views/rb_burndown_charts/show_spec.rb b/modules/backlogs/spec/views/rb_burndown_charts/show_spec.rb index c778508a07..dbb1444b89 100644 --- a/modules/backlogs/spec/views/rb_burndown_charts/show_spec.rb +++ b/modules/backlogs/spec/views/rb_burndown_charts/show_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/views/rb_master_backlogs/index.html.erb_spec.rb b/modules/backlogs/spec/views/rb_master_backlogs/index.html.erb_spec.rb index 7971a9148d..2c5871a0e7 100644 --- a/modules/backlogs/spec/views/rb_master_backlogs/index.html.erb_spec.rb +++ b/modules/backlogs/spec/views/rb_master_backlogs/index.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/backlogs/spec/views/rb_taskboards/show_spec.rb b/modules/backlogs/spec/views/rb_taskboards/show_spec.rb index 10db10ba97..5dd3306921 100644 --- a/modules/backlogs/spec/views/rb_taskboards/show_spec.rb +++ b/modules/backlogs/spec/views/rb_taskboards/show_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/comments/base_contract.rb b/modules/bim/app/contracts/bim/bcf/comments/base_contract.rb index 32cb679438..c0ce0aa1f0 100644 --- a/modules/bim/app/contracts/bim/bcf/comments/base_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/comments/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/comments/create_contract.rb b/modules/bim/app/contracts/bim/bcf/comments/create_contract.rb index 12a8661039..3b4fd47dc5 100644 --- a/modules/bim/app/contracts/bim/bcf/comments/create_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/comments/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/comments/update_contract.rb b/modules/bim/app/contracts/bim/bcf/comments/update_contract.rb index 4de69300f3..3dbf16948b 100644 --- a/modules/bim/app/contracts/bim/bcf/comments/update_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/comments/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/concerns/manage_bcf_guarded.rb b/modules/bim/app/contracts/bim/bcf/concerns/manage_bcf_guarded.rb index 1a00f9b48a..e1c395bf08 100644 --- a/modules/bim/app/contracts/bim/bcf/concerns/manage_bcf_guarded.rb +++ b/modules/bim/app/contracts/bim/bcf/concerns/manage_bcf_guarded.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/issues/base_contract.rb b/modules/bim/app/contracts/bim/bcf/issues/base_contract.rb index 111c02188b..0540616fcb 100644 --- a/modules/bim/app/contracts/bim/bcf/issues/base_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/issues/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/issues/create_contract.rb b/modules/bim/app/contracts/bim/bcf/issues/create_contract.rb index 3344804088..cb7e5c76ea 100644 --- a/modules/bim/app/contracts/bim/bcf/issues/create_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/issues/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/issues/delete_contract.rb b/modules/bim/app/contracts/bim/bcf/issues/delete_contract.rb index f8f4160778..0e8f02fe81 100644 --- a/modules/bim/app/contracts/bim/bcf/issues/delete_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/issues/delete_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/issues/update_contract.rb b/modules/bim/app/contracts/bim/bcf/issues/update_contract.rb index 97d686e1f2..91ee5678e2 100644 --- a/modules/bim/app/contracts/bim/bcf/issues/update_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/issues/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/viewpoints/create_contract.rb b/modules/bim/app/contracts/bim/bcf/viewpoints/create_contract.rb index c029df26af..a3bb834567 100644 --- a/modules/bim/app/contracts/bim/bcf/viewpoints/create_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/viewpoints/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/viewpoints/delete_contract.rb b/modules/bim/app/contracts/bim/bcf/viewpoints/delete_contract.rb index 431712e784..b978cedc21 100644 --- a/modules/bim/app/contracts/bim/bcf/viewpoints/delete_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/viewpoints/delete_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/bcf/work_packages/update_contract.rb b/modules/bim/app/contracts/bim/bcf/work_packages/update_contract.rb index d38e29c497..8ffa876448 100644 --- a/modules/bim/app/contracts/bim/bcf/work_packages/update_contract.rb +++ b/modules/bim/app/contracts/bim/bcf/work_packages/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/ifc_models/base_contract.rb b/modules/bim/app/contracts/bim/ifc_models/base_contract.rb index b6fcd8298c..e83c88668a 100644 --- a/modules/bim/app/contracts/bim/ifc_models/base_contract.rb +++ b/modules/bim/app/contracts/bim/ifc_models/base_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/ifc_models/create_contract.rb b/modules/bim/app/contracts/bim/ifc_models/create_contract.rb index e9a878eb86..d5cd8ec7cb 100644 --- a/modules/bim/app/contracts/bim/ifc_models/create_contract.rb +++ b/modules/bim/app/contracts/bim/ifc_models/create_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/contracts/bim/ifc_models/update_contract.rb b/modules/bim/app/contracts/bim/ifc_models/update_contract.rb index 935a04f3a0..a0f07de036 100644 --- a/modules/bim/app/contracts/bim/ifc_models/update_contract.rb +++ b/modules/bim/app/contracts/bim/ifc_models/update_contract.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/root.rb b/modules/bim/app/controllers/bim/bcf/api/root.rb index d32d2a6970..87d8e51506 100644 --- a/modules/bim/app/controllers/bim/bcf/api/root.rb +++ b/modules/bim/app/controllers/bim/bcf/api/root.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/auth_api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/auth_api.rb index 3ce2e6a6e3..1962ed04c2 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/auth_api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/auth_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/comments/api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/comments/api.rb index 04a613bacf..8d860b36e4 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/comments/api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/comments/api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/current_user_api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/current_user_api.rb index e58e24f00e..bbd1dc4b70 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/current_user_api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/current_user_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/create.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/create.rb index a0783f5fb4..45ea5e175d 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/create.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/create.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/delete.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/delete.rb index 876e7df0e8..0e4d0390e3 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/delete.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/delete.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/index.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/index.rb index 995256644a..a9aac5c3c1 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/index.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/index.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/modify_mixin.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/modify_mixin.rb index e3cf3521f4..458e53c49a 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/modify_mixin.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/modify_mixin.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/show.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/show.rb index 79a57005c2..e11511230d 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/show.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/show.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/update.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/update.rb index 6140684505..20d76423e1 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/update.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/endpoints/update.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/project_extensions/api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/project_extensions/api.rb index 7ad7131b22..590034c88e 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/project_extensions/api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/project_extensions/api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/projects_api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/projects_api.rb index 721cf9960a..46aa27e646 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/projects_api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/projects_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/topics_api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/topics_api.rb index 8c48a6de14..ad4baa894e 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/topics_api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/topics_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/api/v2_1/viewpoints/api.rb b/modules/bim/app/controllers/bim/bcf/api/v2_1/viewpoints/api.rb index 9020fcd17e..0480c49517 100644 --- a/modules/bim/app/controllers/bim/bcf/api/v2_1/viewpoints/api.rb +++ b/modules/bim/app/controllers/bim/bcf/api/v2_1/viewpoints/api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/bcf/issues_controller.rb b/modules/bim/app/controllers/bim/bcf/issues_controller.rb index 3ba2a1345e..0c4fd170bd 100644 --- a/modules/bim/app/controllers/bim/bcf/issues_controller.rb +++ b/modules/bim/app/controllers/bim/bcf/issues_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/ifc_models/ifc_models_controller.rb b/modules/bim/app/controllers/bim/ifc_models/ifc_models_controller.rb index 1f1c49a9d6..82bd447cc3 100644 --- a/modules/bim/app/controllers/bim/ifc_models/ifc_models_controller.rb +++ b/modules/bim/app/controllers/bim/ifc_models/ifc_models_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/controllers/bim/ifc_models/ifc_viewer_controller.rb b/modules/bim/app/controllers/bim/ifc_models/ifc_viewer_controller.rb index c242565b75..93cac98677 100644 --- a/modules/bim/app/controllers/bim/ifc_models/ifc_viewer_controller.rb +++ b/modules/bim/app/controllers/bim/ifc_models/ifc_viewer_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/formatters/bim/bcf/api/error_formatter/json.rb b/modules/bim/app/formatters/bim/bcf/api/error_formatter/json.rb index 47c169f6d1..fb6e166fd5 100644 --- a/modules/bim/app/formatters/bim/bcf/api/error_formatter/json.rb +++ b/modules/bim/app/formatters/bim/bcf/api/error_formatter/json.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/helpers/bcf_application_helper.rb b/modules/bim/app/helpers/bcf_application_helper.rb index a23a83beaf..ba1870e2ca 100644 --- a/modules/bim/app/helpers/bcf_application_helper.rb +++ b/modules/bim/app/helpers/bcf_application_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/models/bim/bcf/comment.rb b/modules/bim/app/models/bim/bcf/comment.rb index 38c4d01ed5..761a29fc7a 100644 --- a/modules/bim/app/models/bim/bcf/comment.rb +++ b/modules/bim/app/models/bim/bcf/comment.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/models/bim/bcf/viewpoint.rb b/modules/bim/app/models/bim/bcf/viewpoint.rb index 513c101757..63aa2544d5 100644 --- a/modules/bim/app/models/bim/bcf/viewpoint.rb +++ b/modules/bim/app/models/bim/bcf/viewpoint.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/models/bim/queries/work_packages/columns/bcf_thumbnail_column.rb b/modules/bim/app/models/bim/queries/work_packages/columns/bcf_thumbnail_column.rb index 85e395cad2..512bb0aebd 100644 --- a/modules/bim/app/models/bim/queries/work_packages/columns/bcf_thumbnail_column.rb +++ b/modules/bim/app/models/bim/queries/work_packages/columns/bcf_thumbnail_column.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/models/bim/queries/work_packages/filter/bcf_issue_associated_filter.rb b/modules/bim/app/models/bim/queries/work_packages/filter/bcf_issue_associated_filter.rb index 44300d2af6..6adbd568d4 100644 --- a/modules/bim/app/models/bim/queries/work_packages/filter/bcf_issue_associated_filter.rb +++ b/modules/bim/app/models/bim/queries/work_packages/filter/bcf_issue_associated_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/auth/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/auth/single_representer.rb index 38a752a31c..112555d0df 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/auth/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/auth/single_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/base_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/base_representer.rb index 8aca129ccd..017fd8d805 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/base_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/base_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/comments/authorization_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/comments/authorization_representer.rb index bcdba5faf9..3f5a7638a0 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/comments/authorization_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/comments/authorization_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/comments/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/comments/single_representer.rb index c640a4bf03..53f38e8d4f 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/comments/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/comments/single_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_mapper.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_mapper.rb index b4e706a38c..4f0e43081d 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_mapper.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_mapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_representer.rb index 4bf0af6542..898cec4d9a 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/errors/error_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/project_extensions/representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/project_extensions/representer.rb index 13d584a703..d38d91bcd0 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/project_extensions/representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/project_extensions/representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/projects/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/projects/single_representer.rb index 8b935ae8eb..65b60df9d3 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/projects/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/projects/single_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/topics/authorization_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/topics/authorization_representer.rb index 8f25c0c4eb..0807256a36 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/topics/authorization_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/topics/authorization_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/topics/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/topics/single_representer.rb index 90a0ee33b8..cc9f3e21bf 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/topics/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/topics/single_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/users/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/users/single_representer.rb index 4eeaa44241..5c640bc115 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/users/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/users/single_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/base_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/base_representer.rb index 0c29507f7a..640f3bcc63 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/base_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/base_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/coloring_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/coloring_representer.rb index 129cf626de..491e0bf79e 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/coloring_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/coloring_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/full_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/full_representer.rb index 9f0b8a21ae..ef06204c32 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/full_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/full_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/selection_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/selection_representer.rb index 5ee644a0a3..fb20f349d6 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/selection_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/selection_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/single_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/single_representer.rb index ac90e6ca44..0c78c3f770 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/single_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/single_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/visibility_representer.rb b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/visibility_representer.rb index e228565009..4d50dd102f 100644 --- a/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/visibility_representer.rb +++ b/modules/bim/app/representers/bim/bcf/api/v2_1/viewpoints/visibility_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/activity_seeder.rb b/modules/bim/app/seeders/bim/basic_data/activity_seeder.rb index 26d28d2cff..5a947ca270 100644 --- a/modules/bim/app/seeders/bim/basic_data/activity_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/activity_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/priority_seeder.rb b/modules/bim/app/seeders/bim/basic_data/priority_seeder.rb index 9e6366a3bc..238cf01dff 100644 --- a/modules/bim/app/seeders/bim/basic_data/priority_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/priority_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/role_seeder.rb b/modules/bim/app/seeders/bim/basic_data/role_seeder.rb index 6ed4640cdc..692ee06592 100644 --- a/modules/bim/app/seeders/bim/basic_data/role_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/role_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/setting_seeder.rb b/modules/bim/app/seeders/bim/basic_data/setting_seeder.rb index efd4191719..c9aaabb522 100644 --- a/modules/bim/app/seeders/bim/basic_data/setting_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/setting_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/status_seeder.rb b/modules/bim/app/seeders/bim/basic_data/status_seeder.rb index ce8270c45a..30db9df1ff 100644 --- a/modules/bim/app/seeders/bim/basic_data/status_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/status_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/theme_seeder.rb b/modules/bim/app/seeders/bim/basic_data/theme_seeder.rb index f5aa3139c8..87032e7c37 100644 --- a/modules/bim/app/seeders/bim/basic_data/theme_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/theme_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/type_seeder.rb b/modules/bim/app/seeders/bim/basic_data/type_seeder.rb index 9073903858..22ea4d507e 100644 --- a/modules/bim/app/seeders/bim/basic_data/type_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/type_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data/workflow_seeder.rb b/modules/bim/app/seeders/bim/basic_data/workflow_seeder.rb index 23aab34d31..30ecce746c 100644 --- a/modules/bim/app/seeders/bim/basic_data/workflow_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data/workflow_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/basic_data_seeder.rb b/modules/bim/app/seeders/bim/basic_data_seeder.rb index 25c34de4bd..7592c1c05a 100644 --- a/modules/bim/app/seeders/bim/basic_data_seeder.rb +++ b/modules/bim/app/seeders/bim/basic_data_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/demo_data/bcf_xml_seeder.rb b/modules/bim/app/seeders/bim/demo_data/bcf_xml_seeder.rb index 5486d63d6e..3a8e63a3d4 100644 --- a/modules/bim/app/seeders/bim/demo_data/bcf_xml_seeder.rb +++ b/modules/bim/app/seeders/bim/demo_data/bcf_xml_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/seeders/bim/demo_data/ifc_model_seeder.rb b/modules/bim/app/seeders/bim/demo_data/ifc_model_seeder.rb index 86103c9d74..98fac292e6 100644 --- a/modules/bim/app/seeders/bim/demo_data/ifc_model_seeder.rb +++ b/modules/bim/app/seeders/bim/demo_data/ifc_model_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/api/v2_1/parse_resource_params_service.rb b/modules/bim/app/services/bim/bcf/api/v2_1/parse_resource_params_service.rb index bb66656956..2fe9769af5 100644 --- a/modules/bim/app/services/bim/bcf/api/v2_1/parse_resource_params_service.rb +++ b/modules/bim/app/services/bim/bcf/api/v2_1/parse_resource_params_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/comments/create_service.rb b/modules/bim/app/services/bim/bcf/comments/create_service.rb index 61ebeb1e13..b28eaa9d3a 100644 --- a/modules/bim/app/services/bim/bcf/comments/create_service.rb +++ b/modules/bim/app/services/bim/bcf/comments/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/comments/set_attributes_service.rb b/modules/bim/app/services/bim/bcf/comments/set_attributes_service.rb index c80f3891cb..3b076b75f9 100644 --- a/modules/bim/app/services/bim/bcf/comments/set_attributes_service.rb +++ b/modules/bim/app/services/bim/bcf/comments/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/comments/update_service.rb b/modules/bim/app/services/bim/bcf/comments/update_service.rb index 3e44858549..d8d4b6836b 100644 --- a/modules/bim/app/services/bim/bcf/comments/update_service.rb +++ b/modules/bim/app/services/bim/bcf/comments/update_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/issues/create_service.rb b/modules/bim/app/services/bim/bcf/issues/create_service.rb index 2138d30c6b..60c640f188 100644 --- a/modules/bim/app/services/bim/bcf/issues/create_service.rb +++ b/modules/bim/app/services/bim/bcf/issues/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/issues/delete_service.rb b/modules/bim/app/services/bim/bcf/issues/delete_service.rb index 4c26af8eb7..277cfc55b9 100644 --- a/modules/bim/app/services/bim/bcf/issues/delete_service.rb +++ b/modules/bim/app/services/bim/bcf/issues/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/issues/set_attributes_service.rb b/modules/bim/app/services/bim/bcf/issues/set_attributes_service.rb index e84abf8400..ecd10fd208 100644 --- a/modules/bim/app/services/bim/bcf/issues/set_attributes_service.rb +++ b/modules/bim/app/services/bim/bcf/issues/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/issues/transform_attributes_service.rb b/modules/bim/app/services/bim/bcf/issues/transform_attributes_service.rb index a942262ca9..a710d1b5ea 100644 --- a/modules/bim/app/services/bim/bcf/issues/transform_attributes_service.rb +++ b/modules/bim/app/services/bim/bcf/issues/transform_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/issues/update_service.rb b/modules/bim/app/services/bim/bcf/issues/update_service.rb index f17bde5e35..79f3a10d63 100644 --- a/modules/bim/app/services/bim/bcf/issues/update_service.rb +++ b/modules/bim/app/services/bim/bcf/issues/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/viewpoints/create_service.rb b/modules/bim/app/services/bim/bcf/viewpoints/create_service.rb index 2243ece520..8ad5108a7b 100644 --- a/modules/bim/app/services/bim/bcf/viewpoints/create_service.rb +++ b/modules/bim/app/services/bim/bcf/viewpoints/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/viewpoints/delete_service.rb b/modules/bim/app/services/bim/bcf/viewpoints/delete_service.rb index 73027b12a9..571792ded7 100644 --- a/modules/bim/app/services/bim/bcf/viewpoints/delete_service.rb +++ b/modules/bim/app/services/bim/bcf/viewpoints/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/bcf/viewpoints/set_attributes_service.rb b/modules/bim/app/services/bim/bcf/viewpoints/set_attributes_service.rb index e9e70f80af..53e5897838 100644 --- a/modules/bim/app/services/bim/bcf/viewpoints/set_attributes_service.rb +++ b/modules/bim/app/services/bim/bcf/viewpoints/set_attributes_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/services/bim/ifc_models/set_attributes_service.rb b/modules/bim/app/services/bim/ifc_models/set_attributes_service.rb index 03d4349dd5..20b1cbd31c 100644 --- a/modules/bim/app/services/bim/ifc_models/set_attributes_service.rb +++ b/modules/bim/app/services/bim/ifc_models/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb b/modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb index 216780a3bc..6fd497ae3f 100644 --- a/modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb +++ b/modules/bim/app/views/bim/ifc_models/ifc_models/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/views/bim/ifc_models/ifc_models/edit.html.erb b/modules/bim/app/views/bim/ifc_models/ifc_models/edit.html.erb index 9ea544543b..dd58499497 100644 --- a/modules/bim/app/views/bim/ifc_models/ifc_models/edit.html.erb +++ b/modules/bim/app/views/bim/ifc_models/ifc_models/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/views/bim/ifc_models/ifc_models/index.html.erb b/modules/bim/app/views/bim/ifc_models/ifc_models/index.html.erb index 516d623848..3a1f90981c 100644 --- a/modules/bim/app/views/bim/ifc_models/ifc_models/index.html.erb +++ b/modules/bim/app/views/bim/ifc_models/ifc_models/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/views/bim/ifc_models/ifc_models/new.html.erb b/modules/bim/app/views/bim/ifc_models/ifc_models/new.html.erb index 2e93650ef6..6d1c56f9e8 100644 --- a/modules/bim/app/views/bim/ifc_models/ifc_models/new.html.erb +++ b/modules/bim/app/views/bim/ifc_models/ifc_models/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/app/views/bim/ifc_models/ifc_viewer/show.html.erb b/modules/bim/app/views/bim/ifc_models/ifc_viewer/show.html.erb index 7cd5e1601f..065f6016e7 100644 --- a/modules/bim/app/views/bim/ifc_models/ifc_viewer/show.html.erb +++ b/modules/bim/app/views/bim/ifc_models/ifc_viewer/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/config/locales/en.seeders.bim.yml b/modules/bim/config/locales/en.seeders.bim.yml index 8b3a333a6d..0bfb4762c9 100644 --- a/modules/bim/config/locales/en.seeders.bim.yml +++ b/modules/bim/config/locales/en.seeders.bim.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/config/routes.rb b/modules/bim/config/routes.rb index 5e806101c5..4eef84d459 100644 --- a/modules/bim/config/routes.rb +++ b/modules/bim/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/db/migrate/20201105154216_seed_custom_style_with_bim_theme.rb b/modules/bim/db/migrate/20201105154216_seed_custom_style_with_bim_theme.rb index 2778cb3cf5..78a48b4790 100644 --- a/modules/bim/db/migrate/20201105154216_seed_custom_style_with_bim_theme.rb +++ b/modules/bim/db/migrate/20201105154216_seed_custom_style_with_bim_theme.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/api/bim/bcf_xml/v1/bcf_xml_api.rb b/modules/bim/lib/api/bim/bcf_xml/v1/bcf_xml_api.rb index 5422ca323e..1216947d05 100644 --- a/modules/bim/lib/api/bim/bcf_xml/v1/bcf_xml_api.rb +++ b/modules/bim/lib/api/bim/bcf_xml/v1/bcf_xml_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/api/bim/utilities/path_helper.rb b/modules/bim/lib/api/bim/utilities/path_helper.rb index 3fd8cbb634..a811ccff10 100644 --- a/modules/bim/lib/api/bim/utilities/path_helper.rb +++ b/modules/bim/lib/api/bim/utilities/path_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/engine.rb b/modules/bim/lib/open_project/bim/engine.rb index 504f5a0ab4..4fac6db7ff 100644 --- a/modules/bim/lib/open_project/bim/engine.rb +++ b/modules/bim/lib/open_project/bim/engine.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/activity_representer_patch.rb b/modules/bim/lib/open_project/bim/patches/activity_representer_patch.rb index e04ef00bf9..aed85832f4 100644 --- a/modules/bim/lib/open_project/bim/patches/activity_representer_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/activity_representer_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/api/v3/work_packages/eager_loading/checksum_patch.rb b/modules/bim/lib/open_project/bim/patches/api/v3/work_packages/eager_loading/checksum_patch.rb index 1e07838edc..edd6aa6cdc 100644 --- a/modules/bim/lib/open_project/bim/patches/api/v3/work_packages/eager_loading/checksum_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/api/v3/work_packages/eager_loading/checksum_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/attachment_patch.rb b/modules/bim/lib/open_project/bim/patches/attachment_patch.rb index 1743281b26..a3b9095529 100644 --- a/modules/bim/lib/open_project/bim/patches/attachment_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/attachment_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/journal_patch.rb b/modules/bim/lib/open_project/bim/patches/journal_patch.rb index 48a9d98b61..54b467c37d 100644 --- a/modules/bim/lib/open_project/bim/patches/journal_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/journal_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/project_patch.rb b/modules/bim/lib/open_project/bim/patches/project_patch.rb index 983e2635e0..fa5766bc0b 100644 --- a/modules/bim/lib/open_project/bim/patches/project_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/project_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/type_patch.rb b/modules/bim/lib/open_project/bim/patches/type_patch.rb index b13f25427e..736566f174 100644 --- a/modules/bim/lib/open_project/bim/patches/type_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/type_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/open_project/bim/patches/work_package_patch.rb b/modules/bim/lib/open_project/bim/patches/work_package_patch.rb index 1d7f2e262b..c1bdd0292c 100644 --- a/modules/bim/lib/open_project/bim/patches/work_package_patch.rb +++ b/modules/bim/lib/open_project/bim/patches/work_package_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/lib/tasks/openproject-bim.rake b/modules/bim/lib/tasks/openproject-bim.rake index 9f22eb49cc..c6b5e3dcab 100644 --- a/modules/bim/lib/tasks/openproject-bim.rake +++ b/modules/bim/lib/tasks/openproject-bim.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/api/v3/activities/activity_representer_spec.rb b/modules/bim/spec/api/v3/activities/activity_representer_spec.rb index bf27ea1927..6d7889c213 100644 --- a/modules/bim/spec/api/v3/activities/activity_representer_spec.rb +++ b/modules/bim/spec/api/v3/activities/activity_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/api/v3/queries/filters/query_filter_instance_representer_spec.rb b/modules/bim/spec/api/v3/queries/filters/query_filter_instance_representer_spec.rb index a5b1c4dfa9..da229d10eb 100644 --- a/modules/bim/spec/api/v3/queries/filters/query_filter_instance_representer_spec.rb +++ b/modules/bim/spec/api/v3/queries/filters/query_filter_instance_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/api/v3/work_packages/work_package_representer_spec.rb b/modules/bim/spec/api/v3/work_packages/work_package_representer_spec.rb index 68aead8f0b..0686bd4a97 100644 --- a/modules/bim/spec/api/v3/work_packages/work_package_representer_spec.rb +++ b/modules/bim/spec/api/v3/work_packages/work_package_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/bcf/bcf_xml/exporter_spec.rb b/modules/bim/spec/bcf/bcf_xml/exporter_spec.rb index 35c8909013..a39b697406 100644 --- a/modules/bim/spec/bcf/bcf_xml/exporter_spec.rb +++ b/modules/bim/spec/bcf/bcf_xml/exporter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/bcf/bcf_xml/importer_spec.rb b/modules/bim/spec/bcf/bcf_xml/importer_spec.rb index 63b6f6ccf5..5b3944e276 100644 --- a/modules/bim/spec/bcf/bcf_xml/importer_spec.rb +++ b/modules/bim/spec/bcf/bcf_xml/importer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/bcf/bcf_xml/issue_reader_spec.rb b/modules/bim/spec/bcf/bcf_xml/issue_reader_spec.rb index c4a74d3a12..7a3479f341 100644 --- a/modules/bim/spec/bcf/bcf_xml/issue_reader_spec.rb +++ b/modules/bim/spec/bcf/bcf_xml/issue_reader_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/bcf/bcf_xml/issue_writer_spec.rb b/modules/bim/spec/bcf/bcf_xml/issue_writer_spec.rb index 904bb641ea..a216126236 100644 --- a/modules/bim/spec/bcf/bcf_xml/issue_writer_spec.rb +++ b/modules/bim/spec/bcf/bcf_xml/issue_writer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/bcf/bcf_xml/markup_extractor_spec.rb b/modules/bim/spec/bcf/bcf_xml/markup_extractor_spec.rb index 43e68b46c2..475dcb8a5c 100644 --- a/modules/bim/spec/bcf/bcf_xml/markup_extractor_spec.rb +++ b/modules/bim/spec/bcf/bcf_xml/markup_extractor_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/bcf/issues/create_contract_spec.rb b/modules/bim/spec/contracts/bcf/issues/create_contract_spec.rb index 76cc656014..dc697b4305 100644 --- a/modules/bim/spec/contracts/bcf/issues/create_contract_spec.rb +++ b/modules/bim/spec/contracts/bcf/issues/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/bcf/issues/shared_contract_examples.rb b/modules/bim/spec/contracts/bcf/issues/shared_contract_examples.rb index 6ca2a0d513..14d1b9d12e 100644 --- a/modules/bim/spec/contracts/bcf/issues/shared_contract_examples.rb +++ b/modules/bim/spec/contracts/bcf/issues/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/bcf/issues/update_contract_spec.rb b/modules/bim/spec/contracts/bcf/issues/update_contract_spec.rb index 6636320db6..9ffa3fccae 100644 --- a/modules/bim/spec/contracts/bcf/issues/update_contract_spec.rb +++ b/modules/bim/spec/contracts/bcf/issues/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/bcf/viewpoints/create_contract_spec.rb b/modules/bim/spec/contracts/bcf/viewpoints/create_contract_spec.rb index ae3c69a8bb..c42a9b581e 100644 --- a/modules/bim/spec/contracts/bcf/viewpoints/create_contract_spec.rb +++ b/modules/bim/spec/contracts/bcf/viewpoints/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/ifc_models/create_contract_spec.rb b/modules/bim/spec/contracts/ifc_models/create_contract_spec.rb index 53862aa4f1..e3e8301588 100644 --- a/modules/bim/spec/contracts/ifc_models/create_contract_spec.rb +++ b/modules/bim/spec/contracts/ifc_models/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/ifc_models/shared_contract_examples.rb b/modules/bim/spec/contracts/ifc_models/shared_contract_examples.rb index 24adccfb72..2a14f6145c 100644 --- a/modules/bim/spec/contracts/ifc_models/shared_contract_examples.rb +++ b/modules/bim/spec/contracts/ifc_models/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/ifc_models/update_contract_spec.rb b/modules/bim/spec/contracts/ifc_models/update_contract_spec.rb index b75a74dfcf..e06b041971 100644 --- a/modules/bim/spec/contracts/ifc_models/update_contract_spec.rb +++ b/modules/bim/spec/contracts/ifc_models/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/contracts/views/create_contract_bim_spec.rb b/modules/bim/spec/contracts/views/create_contract_bim_spec.rb index e1430879c3..73cdd6f19a 100644 --- a/modules/bim/spec/contracts/views/create_contract_bim_spec.rb +++ b/modules/bim/spec/contracts/views/create_contract_bim_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/controllers/issues_controller_spec.rb b/modules/bim/spec/controllers/issues_controller_spec.rb index 93988fca3e..4e66185f1c 100644 --- a/modules/bim/spec/controllers/issues_controller_spec.rb +++ b/modules/bim/spec/controllers/issues_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/controllers/work_packages_controller_spec.rb b/modules/bim/spec/controllers/work_packages_controller_spec.rb index 933b28dcce..8a8de8dbc8 100644 --- a/modules/bim/spec/controllers/work_packages_controller_spec.rb +++ b/modules/bim/spec/controllers/work_packages_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/bcf_comment_factory.rb b/modules/bim/spec/factories/bcf_comment_factory.rb index ce847d61aa..d91339b330 100644 --- a/modules/bim/spec/factories/bcf_comment_factory.rb +++ b/modules/bim/spec/factories/bcf_comment_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/bcf_issue_factory.rb b/modules/bim/spec/factories/bcf_issue_factory.rb index ca20e7f7ff..7cc5846754 100644 --- a/modules/bim/spec/factories/bcf_issue_factory.rb +++ b/modules/bim/spec/factories/bcf_issue_factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/bcf_viewpoint_attachment_factory.rb b/modules/bim/spec/factories/bcf_viewpoint_attachment_factory.rb index 352596cef3..74e43b6ce9 100644 --- a/modules/bim/spec/factories/bcf_viewpoint_attachment_factory.rb +++ b/modules/bim/spec/factories/bcf_viewpoint_attachment_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/bcf_viewpoint_factory.rb b/modules/bim/spec/factories/bcf_viewpoint_factory.rb index e1d1efe623..03add14991 100644 --- a/modules/bim/spec/factories/bcf_viewpoint_factory.rb +++ b/modules/bim/spec/factories/bcf_viewpoint_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/ifc_model_factory.rb b/modules/bim/spec/factories/ifc_model_factory.rb index 81a03741cc..be83e8d4d9 100644 --- a/modules/bim/spec/factories/ifc_model_factory.rb +++ b/modules/bim/spec/factories/ifc_model_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/factories/xml_viewpoint_factory.rb b/modules/bim/spec/factories/xml_viewpoint_factory.rb index 1b3ebc574c..9ae61b3bcf 100644 --- a/modules/bim/spec/factories/xml_viewpoint_factory.rb +++ b/modules/bim/spec/factories/xml_viewpoint_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/bcf/api_authorization_spec.rb b/modules/bim/spec/features/bcf/api_authorization_spec.rb index c977961acf..de2d983311 100644 --- a/modules/bim/spec/features/bcf/api_authorization_spec.rb +++ b/modules/bim/spec/features/bcf/api_authorization_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/bcf/export_spec.rb b/modules/bim/spec/features/bcf/export_spec.rb index 1ff2c5fe85..3b10e646d5 100644 --- a/modules/bim/spec/features/bcf/export_spec.rb +++ b/modules/bim/spec/features/bcf/export_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/bcf_view_management_spec.rb b/modules/bim/spec/features/bcf_view_management_spec.rb index c7872b024d..7ca761f586 100644 --- a/modules/bim/spec/features/bcf_view_management_spec.rb +++ b/modules/bim/spec/features/bcf_view_management_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/bim_filter_spec.rb b/modules/bim/spec/features/bim_filter_spec.rb index 3f936b9462..b098f142ca 100644 --- a/modules/bim/spec/features/bim_filter_spec.rb +++ b/modules/bim/spec/features/bim_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/bim_navigation_spec.rb b/modules/bim/spec/features/bim_navigation_spec.rb index c6a94b7552..860fd0a724 100644 --- a/modules/bim/spec/features/bim_navigation_spec.rb +++ b/modules/bim/spec/features/bim_navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/ifc_models/direct_ifc_upload_spec.rb b/modules/bim/spec/features/ifc_models/direct_ifc_upload_spec.rb index 00689b7e5a..6dd8a3ee83 100644 --- a/modules/bim/spec/features/ifc_models/direct_ifc_upload_spec.rb +++ b/modules/bim/spec/features/ifc_models/direct_ifc_upload_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/ifc_models/regular_ifc_upload_spec.rb b/modules/bim/spec/features/ifc_models/regular_ifc_upload_spec.rb index 5db756975b..d71ee809cc 100644 --- a/modules/bim/spec/features/ifc_models/regular_ifc_upload_spec.rb +++ b/modules/bim/spec/features/ifc_models/regular_ifc_upload_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/model_management_spec.rb b/modules/bim/spec/features/model_management_spec.rb index 15cc6c6d15..580bf9604c 100644 --- a/modules/bim/spec/features/model_management_spec.rb +++ b/modules/bim/spec/features/model_management_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/model_viewer_spec.rb b/modules/bim/spec/features/model_viewer_spec.rb index b9279dd135..dee4df6aea 100644 --- a/modules/bim/spec/features/model_viewer_spec.rb +++ b/modules/bim/spec/features/model_viewer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/revit_add_in/bim_revit_add_in_navigation_spec.rb b/modules/bim/spec/features/revit_add_in/bim_revit_add_in_navigation_spec.rb index 977554cb1d..ef2e2fd707 100644 --- a/modules/bim/spec/features/revit_add_in/bim_revit_add_in_navigation_spec.rb +++ b/modules/bim/spec/features/revit_add_in/bim_revit_add_in_navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/revit_add_in/bim_revit_add_in_refresh_button_spec.rb b/modules/bim/spec/features/revit_add_in/bim_revit_add_in_refresh_button_spec.rb index d7f6110daf..78f469e2a5 100644 --- a/modules/bim/spec/features/revit_add_in/bim_revit_add_in_refresh_button_spec.rb +++ b/modules/bim/spec/features/revit_add_in/bim_revit_add_in_refresh_button_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/show_default_spec.rb b/modules/bim/spec/features/show_default_spec.rb index 7f3f3af21f..059feb8e56 100644 --- a/modules/bim/spec/features/show_default_spec.rb +++ b/modules/bim/spec/features/show_default_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/viewer/create_viewpoint_spec.rb b/modules/bim/spec/features/viewer/create_viewpoint_spec.rb index ec1484d211..ce515ce651 100644 --- a/modules/bim/spec/features/viewer/create_viewpoint_spec.rb +++ b/modules/bim/spec/features/viewer/create_viewpoint_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/viewer/delete_viewpoint_spec.rb b/modules/bim/spec/features/viewer/delete_viewpoint_spec.rb index 122ad515e5..318cc90b48 100644 --- a/modules/bim/spec/features/viewer/delete_viewpoint_spec.rb +++ b/modules/bim/spec/features/viewer/delete_viewpoint_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/features/viewer/show_viewpoint_spec.rb b/modules/bim/spec/features/viewer/show_viewpoint_spec.rb index 75c401d720..de8a916f62 100644 --- a/modules/bim/spec/features/viewer/show_viewpoint_spec.rb +++ b/modules/bim/spec/features/viewer/show_viewpoint_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb b/modules/bim/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb index 9c9a4f5bf1..b4f1339e56 100644 --- a/modules/bim/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb +++ b/modules/bim/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/open_project/access_control_spec.rb b/modules/bim/spec/lib/open_project/access_control_spec.rb index d5d3155ce3..6ce86201d6 100644 --- a/modules/bim/spec/lib/open_project/access_control_spec.rb +++ b/modules/bim/spec/lib/open_project/access_control_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_shared_examples.rb b/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_shared_examples.rb index 5b92edd823..b8e1db4f31 100644 --- a/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_shared_examples.rb +++ b/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_shared_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_spec.rb b/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_spec.rb index 8da72c4b78..6a7c3d433d 100644 --- a/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_spec.rb +++ b/modules/bim/spec/lib/open_project/bcf/bcf_json/viewpoint_reader_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/open_project/bcf/bcf_xml/viewpoint_writer_spec.rb b/modules/bim/spec/lib/open_project/bcf/bcf_xml/viewpoint_writer_spec.rb index 20f9c33bbe..280437bfd3 100644 --- a/modules/bim/spec/lib/open_project/bcf/bcf_xml/viewpoint_writer_spec.rb +++ b/modules/bim/spec/lib/open_project/bcf/bcf_xml/viewpoint_writer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/lib/open_project/bim/work_package/exporter/formatters/bcf_thumbnail_spec.rb b/modules/bim/spec/lib/open_project/bim/work_package/exporter/formatters/bcf_thumbnail_spec.rb index a46caddd4f..eaf901ff85 100644 --- a/modules/bim/spec/lib/open_project/bim/work_package/exporter/formatters/bcf_thumbnail_spec.rb +++ b/modules/bim/spec/lib/open_project/bim/work_package/exporter/formatters/bcf_thumbnail_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/models/bcf/issue_spec.rb b/modules/bim/spec/models/bcf/issue_spec.rb index da94c6453c..0298dd8a38 100644 --- a/modules/bim/spec/models/bcf/issue_spec.rb +++ b/modules/bim/spec/models/bcf/issue_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/models/queries/views/filters/type_filter_spec.rb b/modules/bim/spec/models/queries/views/filters/type_filter_spec.rb index 6f1745ae6f..942f7f8d38 100644 --- a/modules/bim/spec/models/queries/views/filters/type_filter_spec.rb +++ b/modules/bim/spec/models/queries/views/filters/type_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/models/queries/work_packages/filter/bcf_issue_associated_filter_spec.rb b/modules/bim/spec/models/queries/work_packages/filter/bcf_issue_associated_filter_spec.rb index 85442e0364..1977ff0768 100644 --- a/modules/bim/spec/models/queries/work_packages/filter/bcf_issue_associated_filter_spec.rb +++ b/modules/bim/spec/models/queries/work_packages/filter/bcf_issue_associated_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/models/type_spec.rb b/modules/bim/spec/models/type_spec.rb index d786a25e2d..1b7a4abe7c 100644 --- a/modules/bim/spec/models/type_spec.rb +++ b/modules/bim/spec/models/type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/auth/single_representer_rendering_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/auth/single_representer_rendering_spec.rb index 71b9808875..7b65c2d5b4 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/auth/single_representer_rendering_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/auth/single_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/project_extensions/representer_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/project_extensions/representer_spec.rb index fdfdf585d2..b784c9ae62 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/project_extensions/representer_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/project_extensions/representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/projects/single_representer_rendering_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/projects/single_representer_rendering_spec.rb index 9997726d5c..84a51c9daa 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/projects/single_representer_rendering_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/projects/single_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/topics/single_representer_rendering_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/topics/single_representer_rendering_spec.rb index 4ae4eb1515..858a1f651d 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/topics/single_representer_rendering_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/topics/single_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/users/single_representer_rendering_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/users/single_representer_rendering_spec.rb index 6678df4d5e..1b2f1c7c2b 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/users/single_representer_rendering_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/users/single_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representer_rendering_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representer_rendering_spec.rb index 8c36b3c05f..06f4eb542e 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representer_rendering_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representers_parsing_spec.rb b/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representers_parsing_spec.rb index 34ff240494..47933a079b 100644 --- a/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representers_parsing_spec.rb +++ b/modules/bim/spec/representers/bcf/api/v2_1/viewpoints/single_representers_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/auth_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/auth_api_spec.rb index 00c04e8e35..1f17479e0d 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/auth_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/auth_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/comments_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/comments_api_spec.rb index 8f935536be..1a61bfe74d 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/comments_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/comments_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/current_user_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/current_user_api_spec.rb index 1646b0f2cc..2f4db3a0ea 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/current_user_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/current_user_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/project_extensions_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/project_extensions_api_spec.rb index 69d46760eb..442e5a2c9f 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/project_extensions_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/project_extensions_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/projects_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/projects_api_spec.rb index de5bf3aebb..400e359ca4 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/projects_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/projects_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/shared_responses.rb b/modules/bim/spec/requests/api/bcf/v2_1/shared_responses.rb index 677c8fd44b..44fa32e405 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/shared_responses.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/shared_responses.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/topics_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/topics_api_spec.rb index b0ca43d863..5ebe12a090 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/topics_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/topics_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb b/modules/bim/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb index a1a9b9ff75..524158028c 100644 --- a/modules/bim/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/requests/api/bcf_xml/v1/bcf_xml_api_spec.rb b/modules/bim/spec/requests/api/bcf_xml/v1/bcf_xml_api_spec.rb index b1db449514..1d130377ad 100644 --- a/modules/bim/spec/requests/api/bcf_xml/v1/bcf_xml_api_spec.rb +++ b/modules/bim/spec/requests/api/bcf_xml/v1/bcf_xml_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/seeders/demo_data_seeder_spec.rb b/modules/bim/spec/seeders/demo_data_seeder_spec.rb index 165bad426a..3c50b8a735 100644 --- a/modules/bim/spec/seeders/demo_data_seeder_spec.rb +++ b/modules/bim/spec/seeders/demo_data_seeder_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/services/bcf/issues/create_service_spec.rb b/modules/bim/spec/services/bcf/issues/create_service_spec.rb index 33048c582a..72e8813429 100644 --- a/modules/bim/spec/services/bcf/issues/create_service_spec.rb +++ b/modules/bim/spec/services/bcf/issues/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/services/bcf/viewpoints/create_service_spec.rb b/modules/bim/spec/services/bcf/viewpoints/create_service_spec.rb index bca3db2419..953e4c3605 100644 --- a/modules/bim/spec/services/bcf/viewpoints/create_service_spec.rb +++ b/modules/bim/spec/services/bcf/viewpoints/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/services/bcf/viewpoints/set_attributes_service_spec.rb b/modules/bim/spec/services/bcf/viewpoints/set_attributes_service_spec.rb index 9c2ace0ced..3ba5f39c9f 100644 --- a/modules/bim/spec/services/bcf/viewpoints/set_attributes_service_spec.rb +++ b/modules/bim/spec/services/bcf/viewpoints/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/services/ifc_models/set_attributes_service_spec.rb b/modules/bim/spec/services/ifc_models/set_attributes_service_spec.rb index 8a3db456d9..af9525d6d6 100644 --- a/modules/bim/spec/services/ifc_models/set_attributes_service_spec.rb +++ b/modules/bim/spec/services/ifc_models/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/spec_helper.rb b/modules/bim/spec/spec_helper.rb index f54b5abead..4f436221f0 100644 --- a/modules/bim/spec/spec_helper.rb +++ b/modules/bim/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/components/bcf_details_viewpoints.rb b/modules/bim/spec/support/components/bcf_details_viewpoints.rb index f8ec418c58..f18032f232 100644 --- a/modules/bim/spec/support/components/bcf_details_viewpoints.rb +++ b/modules/bim/spec/support/components/bcf_details_viewpoints.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/components/xeokit_model_tree.rb b/modules/bim/spec/support/components/xeokit_model_tree.rb index 968ca706e0..831aa92448 100644 --- a/modules/bim/spec/support/components/xeokit_model_tree.rb +++ b/modules/bim/spec/support/components/xeokit_model_tree.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/pages/bcf/create_split.rb b/modules/bim/spec/support/pages/bcf/create_split.rb index 3e9cf01ddb..c2bff0aac3 100644 --- a/modules/bim/spec/support/pages/bcf/create_split.rb +++ b/modules/bim/spec/support/pages/bcf/create_split.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/pages/ifc_models/bcf_details_page.rb b/modules/bim/spec/support/pages/ifc_models/bcf_details_page.rb index b7ce9521f7..34563ced14 100644 --- a/modules/bim/spec/support/pages/ifc_models/bcf_details_page.rb +++ b/modules/bim/spec/support/pages/ifc_models/bcf_details_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/pages/ifc_models/index.rb b/modules/bim/spec/support/pages/ifc_models/index.rb index 2be5081211..6dee46c82a 100644 --- a/modules/bim/spec/support/pages/ifc_models/index.rb +++ b/modules/bim/spec/support/pages/ifc_models/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/pages/ifc_models/show.rb b/modules/bim/spec/support/pages/ifc_models/show.rb index 7e5663598f..645aeab8de 100644 --- a/modules/bim/spec/support/pages/ifc_models/show.rb +++ b/modules/bim/spec/support/pages/ifc_models/show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/support/pages/ifc_models/show_default.rb b/modules/bim/spec/support/pages/ifc_models/show_default.rb index 5cadbfa53a..51ff458d7e 100644 --- a/modules/bim/spec/support/pages/ifc_models/show_default.rb +++ b/modules/bim/spec/support/pages/ifc_models/show_default.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/views/bim/ifc_models/ifc_models/index.html.erb_spec.rb b/modules/bim/spec/views/bim/ifc_models/ifc_models/index.html.erb_spec.rb index ffe5b69234..0e10cde3ee 100644 --- a/modules/bim/spec/views/bim/ifc_models/ifc_models/index.html.erb_spec.rb +++ b/modules/bim/spec/views/bim/ifc_models/ifc_models/index.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/bim/spec/workers/work_packages/exports/export_job_spec.rb b/modules/bim/spec/workers/work_packages/exports/export_job_spec.rb index 0a6942fbab..cdfba2c038 100644 --- a/modules/bim/spec/workers/work_packages/exports/export_job_spec.rb +++ b/modules/bim/spec/workers/work_packages/exports/export_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/app/models/boards/grid.rb b/modules/boards/app/models/boards/grid.rb index 0a7e88b1c5..90f346a9f0 100644 --- a/modules/boards/app/models/boards/grid.rb +++ b/modules/boards/app/models/boards/grid.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/app/representers/api/v3/boards/widgets/board_options_representer.rb b/modules/boards/app/representers/api/v3/boards/widgets/board_options_representer.rb index 871fc5df33..cea4530afa 100644 --- a/modules/boards/app/representers/api/v3/boards/widgets/board_options_representer.rb +++ b/modules/boards/app/representers/api/v3/boards/widgets/board_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/app/services/boards/copy/widgets_dependent_service.rb b/modules/boards/app/services/boards/copy/widgets_dependent_service.rb index 2d76a3d828..fd38a9ca38 100644 --- a/modules/boards/app/services/boards/copy/widgets_dependent_service.rb +++ b/modules/boards/app/services/boards/copy/widgets_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/app/services/boards/copy_service.rb b/modules/boards/app/services/boards/copy_service.rb index 039f52f0e3..f934e86d1f 100644 --- a/modules/boards/app/services/boards/copy_service.rb +++ b/modules/boards/app/services/boards/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/lib/open_project/boards/patches/setting_seeder_patch.rb b/modules/boards/lib/open_project/boards/patches/setting_seeder_patch.rb index a82b43bf20..d35b4bd189 100644 --- a/modules/boards/lib/open_project/boards/patches/setting_seeder_patch.rb +++ b/modules/boards/lib/open_project/boards/patches/setting_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/contracts/grids/create_contract_spec.rb b/modules/boards/spec/contracts/grids/create_contract_spec.rb index ea032ace58..d1b27d707c 100644 --- a/modules/boards/spec/contracts/grids/create_contract_spec.rb +++ b/modules/boards/spec/contracts/grids/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/assignee_board_spec.rb b/modules/boards/spec/features/action_boards/assignee_board_spec.rb index 84374db742..dc4d1944c0 100644 --- a/modules/boards/spec/features/action_boards/assignee_board_spec.rb +++ b/modules/boards/spec/features/action_boards/assignee_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/custom_field_filters_spec.rb b/modules/boards/spec/features/action_boards/custom_field_filters_spec.rb index 897d59d7ee..99248a2e36 100644 --- a/modules/boards/spec/features/action_boards/custom_field_filters_spec.rb +++ b/modules/boards/spec/features/action_boards/custom_field_filters_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/status_board_spec.rb b/modules/boards/spec/features/action_boards/status_board_spec.rb index f8e90861e1..8e38a8d667 100644 --- a/modules/boards/spec/features/action_boards/status_board_spec.rb +++ b/modules/boards/spec/features/action_boards/status_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/status_type_moving_board_spec.rb b/modules/boards/spec/features/action_boards/status_type_moving_board_spec.rb index b60c3dfabf..3e7715ae07 100644 --- a/modules/boards/spec/features/action_boards/status_type_moving_board_spec.rb +++ b/modules/boards/spec/features/action_boards/status_type_moving_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/subproject_board_spec.rb b/modules/boards/spec/features/action_boards/subproject_board_spec.rb index e507906f9d..892bb85a1e 100644 --- a/modules/boards/spec/features/action_boards/subproject_board_spec.rb +++ b/modules/boards/spec/features/action_boards/subproject_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/subtasks_board_spec.rb b/modules/boards/spec/features/action_boards/subtasks_board_spec.rb index 77d11d5db8..b0402bc5a7 100644 --- a/modules/boards/spec/features/action_boards/subtasks_board_spec.rb +++ b/modules/boards/spec/features/action_boards/subtasks_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/action_boards/version_board_spec.rb b/modules/boards/spec/features/action_boards/version_board_spec.rb index 39165f8451..7bab4101c2 100644 --- a/modules/boards/spec/features/action_boards/version_board_spec.rb +++ b/modules/boards/spec/features/action_boards/version_board_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_conflicts_spec.rb b/modules/boards/spec/features/board_conflicts_spec.rb index f1d9c92ea4..76952de4d5 100644 --- a/modules/boards/spec/features/board_conflicts_spec.rb +++ b/modules/boards/spec/features/board_conflicts_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_highlighting_spec.rb b/modules/boards/spec/features/board_highlighting_spec.rb index 6b1c7eec3a..1e897f60bf 100644 --- a/modules/boards/spec/features/board_highlighting_spec.rb +++ b/modules/boards/spec/features/board_highlighting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_management_spec.rb b/modules/boards/spec/features/board_management_spec.rb index bac34a8c30..6f9b2a87b6 100644 --- a/modules/boards/spec/features/board_management_spec.rb +++ b/modules/boards/spec/features/board_management_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_navigation_spec.rb b/modules/boards/spec/features/board_navigation_spec.rb index c44825328c..4c5e5c8f48 100644 --- a/modules/boards/spec/features/board_navigation_spec.rb +++ b/modules/boards/spec/features/board_navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_reference_work_package_spec.rb b/modules/boards/spec/features/board_reference_work_package_spec.rb index 8d87ce7793..6cacbb5c6e 100644 --- a/modules/boards/spec/features/board_reference_work_package_spec.rb +++ b/modules/boards/spec/features/board_reference_work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/board_update_spec.rb b/modules/boards/spec/features/board_update_spec.rb index 3dc6fcd607..1f019c5b5d 100644 --- a/modules/boards/spec/features/board_update_spec.rb +++ b/modules/boards/spec/features/board_update_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/boards_sorting_spec.rb b/modules/boards/spec/features/boards_sorting_spec.rb index bb7a8bd3f8..65dc81829d 100644 --- a/modules/boards/spec/features/boards_sorting_spec.rb +++ b/modules/boards/spec/features/boards_sorting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/onboarding/boards_onboarding_tour_spec.rb b/modules/boards/spec/features/onboarding/boards_onboarding_tour_spec.rb index 253d73f871..26d6421dc6 100644 --- a/modules/boards/spec/features/onboarding/boards_onboarding_tour_spec.rb +++ b/modules/boards/spec/features/onboarding/boards_onboarding_tour_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/support/board_index_page.rb b/modules/boards/spec/features/support/board_index_page.rb index b32f7adb0e..a82eac6b61 100644 --- a/modules/boards/spec/features/support/board_index_page.rb +++ b/modules/boards/spec/features/support/board_index_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/support/board_page.rb b/modules/boards/spec/features/support/board_page.rb index 595aebd284..bd5335c9b5 100644 --- a/modules/boards/spec/features/support/board_page.rb +++ b/modules/boards/spec/features/support/board_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/features/support/onboarding_steps.rb b/modules/boards/spec/features/support/onboarding_steps.rb index 6bfd32f323..f2440fe40d 100644 --- a/modules/boards/spec/features/support/onboarding_steps.rb +++ b/modules/boards/spec/features/support/onboarding_steps.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/models/boards/grid_spec.rb b/modules/boards/spec/models/boards/grid_spec.rb index 24f7d32206..c912c33b16 100644 --- a/modules/boards/spec/models/boards/grid_spec.rb +++ b/modules/boards/spec/models/boards/grid_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/queries/grids/query_integration_spec.rb b/modules/boards/spec/queries/grids/query_integration_spec.rb index dd4c4c9606..8eba7eb31c 100644 --- a/modules/boards/spec/queries/grids/query_integration_spec.rb +++ b/modules/boards/spec/queries/grids/query_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb b/modules/boards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb index 5272ca5e2f..269bfac014 100644 --- a/modules/boards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb +++ b/modules/boards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/requests/api/v3/grids/grids_resource_spec.rb b/modules/boards/spec/requests/api/v3/grids/grids_resource_spec.rb index 5919ccaf42..5cc4251d18 100644 --- a/modules/boards/spec/requests/api/v3/grids/grids_resource_spec.rb +++ b/modules/boards/spec/requests/api/v3/grids/grids_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb b/modules/boards/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb index bff2ed2879..1240e42296 100644 --- a/modules/boards/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb +++ b/modules/boards/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/routing/boards_routing_spec.rb b/modules/boards/spec/routing/boards_routing_spec.rb index 727711c45b..b7b2b9ce76 100644 --- a/modules/boards/spec/routing/boards_routing_spec.rb +++ b/modules/boards/spec/routing/boards_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/boards/spec/services/copy_service_integration_spec.rb b/modules/boards/spec/services/copy_service_integration_spec.rb index a432ee96ad..39dcfa2474 100644 --- a/modules/boards/spec/services/copy_service_integration_spec.rb +++ b/modules/boards/spec/services/copy_service_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/contracts/budgets/base_contract.rb b/modules/budgets/app/contracts/budgets/base_contract.rb index 925447c7ae..79d61d20c7 100644 --- a/modules/budgets/app/contracts/budgets/base_contract.rb +++ b/modules/budgets/app/contracts/budgets/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/contracts/budgets/create_contract.rb b/modules/budgets/app/contracts/budgets/create_contract.rb index 87056ff056..dbd128695e 100644 --- a/modules/budgets/app/contracts/budgets/create_contract.rb +++ b/modules/budgets/app/contracts/budgets/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/contracts/budgets/update_contract.rb b/modules/budgets/app/contracts/budgets/update_contract.rb index f2716b9179..20db5c464a 100644 --- a/modules/budgets/app/contracts/budgets/update_contract.rb +++ b/modules/budgets/app/contracts/budgets/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/controllers/budgets_controller.rb b/modules/budgets/app/controllers/budgets_controller.rb index f09bb8c9e6..1d1db671e1 100644 --- a/modules/budgets/app/controllers/budgets_controller.rb +++ b/modules/budgets/app/controllers/budgets_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/helpers/budgets_helper.rb b/modules/budgets/app/helpers/budgets_helper.rb index cedad23ac9..75b21183bc 100644 --- a/modules/budgets/app/helpers/budgets_helper.rb +++ b/modules/budgets/app/helpers/budgets_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/activities/budget_activity_provider.rb b/modules/budgets/app/models/activities/budget_activity_provider.rb index 7e35c2e3e9..2cce5a9bb1 100644 --- a/modules/budgets/app/models/activities/budget_activity_provider.rb +++ b/modules/budgets/app/models/activities/budget_activity_provider.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/budget.rb b/modules/budgets/app/models/budget.rb index 884b43a5a9..437a9ed6ed 100644 --- a/modules/budgets/app/models/budget.rb +++ b/modules/budgets/app/models/budget.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/journal/budget_journal.rb b/modules/budgets/app/models/journal/budget_journal.rb index a116479bf6..329c92ec2e 100644 --- a/modules/budgets/app/models/journal/budget_journal.rb +++ b/modules/budgets/app/models/journal/budget_journal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/labor_budget_item.rb b/modules/budgets/app/models/labor_budget_item.rb index 8f7bbf9c09..4f22871cbd 100644 --- a/modules/budgets/app/models/labor_budget_item.rb +++ b/modules/budgets/app/models/labor_budget_item.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/material_budget_item.rb b/modules/budgets/app/models/material_budget_item.rb index db05c49d8d..c6175fbae6 100644 --- a/modules/budgets/app/models/material_budget_item.rb +++ b/modules/budgets/app/models/material_budget_item.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/models/queries/work_packages/filter/budget_filter.rb b/modules/budgets/app/models/queries/work_packages/filter/budget_filter.rb index a68bd4981b..67e9c2be60 100644 --- a/modules/budgets/app/models/queries/work_packages/filter/budget_filter.rb +++ b/modules/budgets/app/models/queries/work_packages/filter/budget_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/services/budgets/create_service.rb b/modules/budgets/app/services/budgets/create_service.rb index 84aacb83f4..9c1fb45b91 100644 --- a/modules/budgets/app/services/budgets/create_service.rb +++ b/modules/budgets/app/services/budgets/create_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/services/budgets/set_attributes_service.rb b/modules/budgets/app/services/budgets/set_attributes_service.rb index 01734da94d..96207f6f58 100644 --- a/modules/budgets/app/services/budgets/set_attributes_service.rb +++ b/modules/budgets/app/services/budgets/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/services/budgets/update_service.rb b/modules/budgets/app/services/budgets/update_service.rb index 0e707bf103..d9cfbdd0f2 100644 --- a/modules/budgets/app/services/budgets/update_service.rb +++ b/modules/budgets/app/services/budgets/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/_costs.html.erb b/modules/budgets/app/views/budgets/_costs.html.erb index bca368e007..0afcde9171 100644 --- a/modules/budgets/app/views/budgets/_costs.html.erb +++ b/modules/budgets/app/views/budgets/_costs.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/_edit.html.erb b/modules/budgets/app/views/budgets/_edit.html.erb index ed5728f2be..add6e4edbd 100644 --- a/modules/budgets/app/views/budgets/_edit.html.erb +++ b/modules/budgets/app/views/budgets/_edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/_form.html.erb b/modules/budgets/app/views/budgets/_form.html.erb index 0d0b23219d..298d3b8f12 100644 --- a/modules/budgets/app/views/budgets/_form.html.erb +++ b/modules/budgets/app/views/budgets/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/_list.html.erb b/modules/budgets/app/views/budgets/_list.html.erb index 864c4345b5..262f0cdc65 100644 --- a/modules/budgets/app/views/budgets/_list.html.erb +++ b/modules/budgets/app/views/budgets/_list.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/_show.html.erb b/modules/budgets/app/views/budgets/_show.html.erb index 8a0e2326b2..58985b20d8 100644 --- a/modules/budgets/app/views/budgets/_show.html.erb +++ b/modules/budgets/app/views/budgets/_show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/destroy_info.html.erb b/modules/budgets/app/views/budgets/destroy_info.html.erb index 1bc1ccdd15..18bd3118e4 100644 --- a/modules/budgets/app/views/budgets/destroy_info.html.erb +++ b/modules/budgets/app/views/budgets/destroy_info.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/edit.html.erb b/modules/budgets/app/views/budgets/edit.html.erb index 4da0f916bf..3d200356b3 100644 --- a/modules/budgets/app/views/budgets/edit.html.erb +++ b/modules/budgets/app/views/budgets/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/index.html.erb b/modules/budgets/app/views/budgets/index.html.erb index 58b4904372..fdfedda1b4 100644 --- a/modules/budgets/app/views/budgets/index.html.erb +++ b/modules/budgets/app/views/budgets/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/items/_labor_budget_item.html.erb b/modules/budgets/app/views/budgets/items/_labor_budget_item.html.erb index e24adf012c..6540aa7e32 100644 --- a/modules/budgets/app/views/budgets/items/_labor_budget_item.html.erb +++ b/modules/budgets/app/views/budgets/items/_labor_budget_item.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/items/_material_budget_item.html.erb b/modules/budgets/app/views/budgets/items/_material_budget_item.html.erb index 2e06b95a21..f9f11b27ad 100644 --- a/modules/budgets/app/views/budgets/items/_material_budget_item.html.erb +++ b/modules/budgets/app/views/budgets/items/_material_budget_item.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/new.html.erb b/modules/budgets/app/views/budgets/new.html.erb index 24383b684c..237fab4ba5 100644 --- a/modules/budgets/app/views/budgets/new.html.erb +++ b/modules/budgets/app/views/budgets/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/show.html.erb b/modules/budgets/app/views/budgets/show.html.erb index ebe3c9a5ae..23f5b1fb0e 100644 --- a/modules/budgets/app/views/budgets/show.html.erb +++ b/modules/budgets/app/views/budgets/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/subform/_labor_budget_subform.html.erb b/modules/budgets/app/views/budgets/subform/_labor_budget_subform.html.erb index d562cd843c..0b677683f1 100644 --- a/modules/budgets/app/views/budgets/subform/_labor_budget_subform.html.erb +++ b/modules/budgets/app/views/budgets/subform/_labor_budget_subform.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/app/views/budgets/subform/_material_budget_subform.html.erb b/modules/budgets/app/views/budgets/subform/_material_budget_subform.html.erb index f632c1ab46..02cbf192cd 100644 --- a/modules/budgets/app/views/budgets/subform/_material_budget_subform.html.erb +++ b/modules/budgets/app/views/budgets/subform/_material_budget_subform.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/config/locales/crowdin/af.yml b/modules/budgets/config/locales/crowdin/af.yml index 883dcb3801..e6c2877977 100644 --- a/modules/budgets/config/locales/crowdin/af.yml +++ b/modules/budgets/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ar.yml b/modules/budgets/config/locales/crowdin/ar.yml index d5d8cf5f8c..9ea0584902 100644 --- a/modules/budgets/config/locales/crowdin/ar.yml +++ b/modules/budgets/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/az.yml b/modules/budgets/config/locales/crowdin/az.yml index c64fe1f093..1278cc5fbc 100644 --- a/modules/budgets/config/locales/crowdin/az.yml +++ b/modules/budgets/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/bg.yml b/modules/budgets/config/locales/crowdin/bg.yml index 8b08582885..00ddfde2d9 100644 --- a/modules/budgets/config/locales/crowdin/bg.yml +++ b/modules/budgets/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ca.yml b/modules/budgets/config/locales/crowdin/ca.yml index 11964ec143..7cd028fee7 100644 --- a/modules/budgets/config/locales/crowdin/ca.yml +++ b/modules/budgets/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/cs.yml b/modules/budgets/config/locales/crowdin/cs.yml index 26474b2de2..030070fd6c 100644 --- a/modules/budgets/config/locales/crowdin/cs.yml +++ b/modules/budgets/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/da.yml b/modules/budgets/config/locales/crowdin/da.yml index 7b3159c225..01c26e0f31 100644 --- a/modules/budgets/config/locales/crowdin/da.yml +++ b/modules/budgets/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/de.yml b/modules/budgets/config/locales/crowdin/de.yml index 91e9f30f5f..f1e713c946 100644 --- a/modules/budgets/config/locales/crowdin/de.yml +++ b/modules/budgets/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/el.yml b/modules/budgets/config/locales/crowdin/el.yml index 74159fb56d..600f4b66a9 100644 --- a/modules/budgets/config/locales/crowdin/el.yml +++ b/modules/budgets/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/eo.yml b/modules/budgets/config/locales/crowdin/eo.yml index af52d81342..b1a9fa4e33 100644 --- a/modules/budgets/config/locales/crowdin/eo.yml +++ b/modules/budgets/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/es.yml b/modules/budgets/config/locales/crowdin/es.yml index 50377d8658..3d613c52df 100644 --- a/modules/budgets/config/locales/crowdin/es.yml +++ b/modules/budgets/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/et.yml b/modules/budgets/config/locales/crowdin/et.yml index 2cfc45af1e..da79cbebd7 100644 --- a/modules/budgets/config/locales/crowdin/et.yml +++ b/modules/budgets/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/fa.yml b/modules/budgets/config/locales/crowdin/fa.yml index 8105968f51..ef0c3f1e7c 100644 --- a/modules/budgets/config/locales/crowdin/fa.yml +++ b/modules/budgets/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/fi.yml b/modules/budgets/config/locales/crowdin/fi.yml index 5b403090fd..6d2d868ec8 100644 --- a/modules/budgets/config/locales/crowdin/fi.yml +++ b/modules/budgets/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/fil.yml b/modules/budgets/config/locales/crowdin/fil.yml index e27784c768..9560f0dc07 100644 --- a/modules/budgets/config/locales/crowdin/fil.yml +++ b/modules/budgets/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/fr.yml b/modules/budgets/config/locales/crowdin/fr.yml index 4236fce986..b56454004d 100644 --- a/modules/budgets/config/locales/crowdin/fr.yml +++ b/modules/budgets/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/he.yml b/modules/budgets/config/locales/crowdin/he.yml index a2bbbf2c4a..61c6e64790 100644 --- a/modules/budgets/config/locales/crowdin/he.yml +++ b/modules/budgets/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/hi.yml b/modules/budgets/config/locales/crowdin/hi.yml index 995cf107be..0291fec6cb 100644 --- a/modules/budgets/config/locales/crowdin/hi.yml +++ b/modules/budgets/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/hr.yml b/modules/budgets/config/locales/crowdin/hr.yml index 7c093fd8ad..f17a5183c8 100644 --- a/modules/budgets/config/locales/crowdin/hr.yml +++ b/modules/budgets/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/hu.yml b/modules/budgets/config/locales/crowdin/hu.yml index 6caa174136..f4427212df 100644 --- a/modules/budgets/config/locales/crowdin/hu.yml +++ b/modules/budgets/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/id.yml b/modules/budgets/config/locales/crowdin/id.yml index 063800b566..8897542d28 100644 --- a/modules/budgets/config/locales/crowdin/id.yml +++ b/modules/budgets/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/it.yml b/modules/budgets/config/locales/crowdin/it.yml index e62048c1ff..6c544e580c 100644 --- a/modules/budgets/config/locales/crowdin/it.yml +++ b/modules/budgets/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ja.yml b/modules/budgets/config/locales/crowdin/ja.yml index b9a7071ff5..db669ab559 100644 --- a/modules/budgets/config/locales/crowdin/ja.yml +++ b/modules/budgets/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-af.yml b/modules/budgets/config/locales/crowdin/js-af.yml index d399b0eeac..0dbc2ad234 100644 --- a/modules/budgets/config/locales/crowdin/js-af.yml +++ b/modules/budgets/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ar.yml b/modules/budgets/config/locales/crowdin/js-ar.yml index a8cad2de7d..2271547b89 100644 --- a/modules/budgets/config/locales/crowdin/js-ar.yml +++ b/modules/budgets/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-az.yml b/modules/budgets/config/locales/crowdin/js-az.yml index f81adc0693..7c7494cb63 100644 --- a/modules/budgets/config/locales/crowdin/js-az.yml +++ b/modules/budgets/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-bg.yml b/modules/budgets/config/locales/crowdin/js-bg.yml index 6f439d30ea..aebbc2af3c 100644 --- a/modules/budgets/config/locales/crowdin/js-bg.yml +++ b/modules/budgets/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ca.yml b/modules/budgets/config/locales/crowdin/js-ca.yml index 37a3fff540..ea22ca7900 100644 --- a/modules/budgets/config/locales/crowdin/js-ca.yml +++ b/modules/budgets/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-cs.yml b/modules/budgets/config/locales/crowdin/js-cs.yml index 7d5131014c..e1b1e0da38 100644 --- a/modules/budgets/config/locales/crowdin/js-cs.yml +++ b/modules/budgets/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-da.yml b/modules/budgets/config/locales/crowdin/js-da.yml index db5d8761a5..321125069e 100644 --- a/modules/budgets/config/locales/crowdin/js-da.yml +++ b/modules/budgets/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-de.yml b/modules/budgets/config/locales/crowdin/js-de.yml index 4ec8a36c0f..0f181281d4 100644 --- a/modules/budgets/config/locales/crowdin/js-de.yml +++ b/modules/budgets/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-el.yml b/modules/budgets/config/locales/crowdin/js-el.yml index b483251219..fb00280e3f 100644 --- a/modules/budgets/config/locales/crowdin/js-el.yml +++ b/modules/budgets/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-eo.yml b/modules/budgets/config/locales/crowdin/js-eo.yml index f2f0fbd990..7a5ee7e131 100644 --- a/modules/budgets/config/locales/crowdin/js-eo.yml +++ b/modules/budgets/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-es.yml b/modules/budgets/config/locales/crowdin/js-es.yml index e510ec4027..9c5ba60671 100644 --- a/modules/budgets/config/locales/crowdin/js-es.yml +++ b/modules/budgets/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-et.yml b/modules/budgets/config/locales/crowdin/js-et.yml index 19472ac8fa..85a151173b 100644 --- a/modules/budgets/config/locales/crowdin/js-et.yml +++ b/modules/budgets/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-fa.yml b/modules/budgets/config/locales/crowdin/js-fa.yml index 28cd04182b..d5ae387ada 100644 --- a/modules/budgets/config/locales/crowdin/js-fa.yml +++ b/modules/budgets/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-fi.yml b/modules/budgets/config/locales/crowdin/js-fi.yml index 40a18582fa..9d01496cb5 100644 --- a/modules/budgets/config/locales/crowdin/js-fi.yml +++ b/modules/budgets/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-fil.yml b/modules/budgets/config/locales/crowdin/js-fil.yml index 96008af7b5..c9ae45a49f 100644 --- a/modules/budgets/config/locales/crowdin/js-fil.yml +++ b/modules/budgets/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-fr.yml b/modules/budgets/config/locales/crowdin/js-fr.yml index cc0e91c08f..7be6368856 100644 --- a/modules/budgets/config/locales/crowdin/js-fr.yml +++ b/modules/budgets/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-he.yml b/modules/budgets/config/locales/crowdin/js-he.yml index 56355f407a..a21c4b0035 100644 --- a/modules/budgets/config/locales/crowdin/js-he.yml +++ b/modules/budgets/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-hi.yml b/modules/budgets/config/locales/crowdin/js-hi.yml index 8156d08034..6dc1f684ab 100644 --- a/modules/budgets/config/locales/crowdin/js-hi.yml +++ b/modules/budgets/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-hr.yml b/modules/budgets/config/locales/crowdin/js-hr.yml index 6d5dcc7c14..36743039d4 100644 --- a/modules/budgets/config/locales/crowdin/js-hr.yml +++ b/modules/budgets/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-hu.yml b/modules/budgets/config/locales/crowdin/js-hu.yml index e275b51e30..cc5ab0f4cc 100644 --- a/modules/budgets/config/locales/crowdin/js-hu.yml +++ b/modules/budgets/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-id.yml b/modules/budgets/config/locales/crowdin/js-id.yml index c8a321e011..d4f63073ee 100644 --- a/modules/budgets/config/locales/crowdin/js-id.yml +++ b/modules/budgets/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-it.yml b/modules/budgets/config/locales/crowdin/js-it.yml index 8fbbadd445..d9b846bbd1 100644 --- a/modules/budgets/config/locales/crowdin/js-it.yml +++ b/modules/budgets/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ja.yml b/modules/budgets/config/locales/crowdin/js-ja.yml index 5615c32896..3e1103269f 100644 --- a/modules/budgets/config/locales/crowdin/js-ja.yml +++ b/modules/budgets/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ko.yml b/modules/budgets/config/locales/crowdin/js-ko.yml index ed09482da6..418149e460 100644 --- a/modules/budgets/config/locales/crowdin/js-ko.yml +++ b/modules/budgets/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-lol.yml b/modules/budgets/config/locales/crowdin/js-lol.yml index b187417112..296da62c19 100644 --- a/modules/budgets/config/locales/crowdin/js-lol.yml +++ b/modules/budgets/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-lt.yml b/modules/budgets/config/locales/crowdin/js-lt.yml index 3126086e9c..162bf0a491 100644 --- a/modules/budgets/config/locales/crowdin/js-lt.yml +++ b/modules/budgets/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-lv.yml b/modules/budgets/config/locales/crowdin/js-lv.yml index 9b21b98b7b..fe06e324b6 100644 --- a/modules/budgets/config/locales/crowdin/js-lv.yml +++ b/modules/budgets/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ne.yml b/modules/budgets/config/locales/crowdin/js-ne.yml index a588aadccc..d560019636 100644 --- a/modules/budgets/config/locales/crowdin/js-ne.yml +++ b/modules/budgets/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-nl.yml b/modules/budgets/config/locales/crowdin/js-nl.yml index da8b61acd4..2377d56673 100644 --- a/modules/budgets/config/locales/crowdin/js-nl.yml +++ b/modules/budgets/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-no.yml b/modules/budgets/config/locales/crowdin/js-no.yml index 1a797b8c39..209e8c37db 100644 --- a/modules/budgets/config/locales/crowdin/js-no.yml +++ b/modules/budgets/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-pl.yml b/modules/budgets/config/locales/crowdin/js-pl.yml index b0351f1dfc..c9bbda7b83 100644 --- a/modules/budgets/config/locales/crowdin/js-pl.yml +++ b/modules/budgets/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-pt.yml b/modules/budgets/config/locales/crowdin/js-pt.yml index e62bd2c4c9..b5413724af 100644 --- a/modules/budgets/config/locales/crowdin/js-pt.yml +++ b/modules/budgets/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ro.yml b/modules/budgets/config/locales/crowdin/js-ro.yml index 118a23133b..7f65caa179 100644 --- a/modules/budgets/config/locales/crowdin/js-ro.yml +++ b/modules/budgets/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-ru.yml b/modules/budgets/config/locales/crowdin/js-ru.yml index 04071eb73f..e1fcf33bcd 100644 --- a/modules/budgets/config/locales/crowdin/js-ru.yml +++ b/modules/budgets/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-rw.yml b/modules/budgets/config/locales/crowdin/js-rw.yml index af85d4fc25..2e3d6bd830 100644 --- a/modules/budgets/config/locales/crowdin/js-rw.yml +++ b/modules/budgets/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-si.yml b/modules/budgets/config/locales/crowdin/js-si.yml index f7c6afa44e..39de3a34c9 100644 --- a/modules/budgets/config/locales/crowdin/js-si.yml +++ b/modules/budgets/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-sk.yml b/modules/budgets/config/locales/crowdin/js-sk.yml index 5a8e265081..28bf4dd3a0 100644 --- a/modules/budgets/config/locales/crowdin/js-sk.yml +++ b/modules/budgets/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-sl.yml b/modules/budgets/config/locales/crowdin/js-sl.yml index 305f301f8c..b847a89206 100644 --- a/modules/budgets/config/locales/crowdin/js-sl.yml +++ b/modules/budgets/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-sv.yml b/modules/budgets/config/locales/crowdin/js-sv.yml index d7f2f37ac1..21148f6b39 100644 --- a/modules/budgets/config/locales/crowdin/js-sv.yml +++ b/modules/budgets/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-th.yml b/modules/budgets/config/locales/crowdin/js-th.yml index 90e19f3630..8654db37ff 100644 --- a/modules/budgets/config/locales/crowdin/js-th.yml +++ b/modules/budgets/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-tr.yml b/modules/budgets/config/locales/crowdin/js-tr.yml index faa3efeb17..f5fb766f0b 100644 --- a/modules/budgets/config/locales/crowdin/js-tr.yml +++ b/modules/budgets/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-uk.yml b/modules/budgets/config/locales/crowdin/js-uk.yml index 24344619c8..58c15a42ed 100644 --- a/modules/budgets/config/locales/crowdin/js-uk.yml +++ b/modules/budgets/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-vi.yml b/modules/budgets/config/locales/crowdin/js-vi.yml index 77e289e5c8..c340bacf3f 100644 --- a/modules/budgets/config/locales/crowdin/js-vi.yml +++ b/modules/budgets/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-zh-CN.yml b/modules/budgets/config/locales/crowdin/js-zh-CN.yml index eb7222c2d2..4d12136242 100644 --- a/modules/budgets/config/locales/crowdin/js-zh-CN.yml +++ b/modules/budgets/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/js-zh-TW.yml b/modules/budgets/config/locales/crowdin/js-zh-TW.yml index e51e866934..b7dde4eeca 100644 --- a/modules/budgets/config/locales/crowdin/js-zh-TW.yml +++ b/modules/budgets/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ko.yml b/modules/budgets/config/locales/crowdin/ko.yml index fa3ae8ce9c..43869ba21b 100644 --- a/modules/budgets/config/locales/crowdin/ko.yml +++ b/modules/budgets/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/lol.yml b/modules/budgets/config/locales/crowdin/lol.yml index f87861be42..cf449b2ed2 100644 --- a/modules/budgets/config/locales/crowdin/lol.yml +++ b/modules/budgets/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/lt.yml b/modules/budgets/config/locales/crowdin/lt.yml index 04428fb3fe..08726f0e0b 100644 --- a/modules/budgets/config/locales/crowdin/lt.yml +++ b/modules/budgets/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/lv.yml b/modules/budgets/config/locales/crowdin/lv.yml index 92f16d8dcb..8a172b912b 100644 --- a/modules/budgets/config/locales/crowdin/lv.yml +++ b/modules/budgets/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ne.yml b/modules/budgets/config/locales/crowdin/ne.yml index c3bcb67d27..5c937da367 100644 --- a/modules/budgets/config/locales/crowdin/ne.yml +++ b/modules/budgets/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/nl.yml b/modules/budgets/config/locales/crowdin/nl.yml index da9f25ea42..d4867a32ad 100644 --- a/modules/budgets/config/locales/crowdin/nl.yml +++ b/modules/budgets/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/no.yml b/modules/budgets/config/locales/crowdin/no.yml index 7ac04f9a93..64faef7742 100644 --- a/modules/budgets/config/locales/crowdin/no.yml +++ b/modules/budgets/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/pl.yml b/modules/budgets/config/locales/crowdin/pl.yml index 521ea6c25a..b3651a2420 100644 --- a/modules/budgets/config/locales/crowdin/pl.yml +++ b/modules/budgets/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/pt.yml b/modules/budgets/config/locales/crowdin/pt.yml index 0a47ad9610..a3b72cdc83 100644 --- a/modules/budgets/config/locales/crowdin/pt.yml +++ b/modules/budgets/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ro.yml b/modules/budgets/config/locales/crowdin/ro.yml index 18202548eb..101d2c2953 100644 --- a/modules/budgets/config/locales/crowdin/ro.yml +++ b/modules/budgets/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/ru.yml b/modules/budgets/config/locales/crowdin/ru.yml index 2ffb7eed6c..a4dd65f619 100644 --- a/modules/budgets/config/locales/crowdin/ru.yml +++ b/modules/budgets/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/rw.yml b/modules/budgets/config/locales/crowdin/rw.yml index 5075e97752..2939e72cba 100644 --- a/modules/budgets/config/locales/crowdin/rw.yml +++ b/modules/budgets/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/si.yml b/modules/budgets/config/locales/crowdin/si.yml index bc725e5634..c30e56628c 100644 --- a/modules/budgets/config/locales/crowdin/si.yml +++ b/modules/budgets/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/sk.yml b/modules/budgets/config/locales/crowdin/sk.yml index 5eeab04389..d4242e4866 100644 --- a/modules/budgets/config/locales/crowdin/sk.yml +++ b/modules/budgets/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/sl.yml b/modules/budgets/config/locales/crowdin/sl.yml index 2dfcd2d656..df40081e13 100644 --- a/modules/budgets/config/locales/crowdin/sl.yml +++ b/modules/budgets/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/sv.yml b/modules/budgets/config/locales/crowdin/sv.yml index 8ba87cc1de..a2830ad310 100644 --- a/modules/budgets/config/locales/crowdin/sv.yml +++ b/modules/budgets/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/th.yml b/modules/budgets/config/locales/crowdin/th.yml index 10684aa10b..996d703900 100644 --- a/modules/budgets/config/locales/crowdin/th.yml +++ b/modules/budgets/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/tr.yml b/modules/budgets/config/locales/crowdin/tr.yml index a94c3b9d97..b3dcd35a42 100644 --- a/modules/budgets/config/locales/crowdin/tr.yml +++ b/modules/budgets/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/uk.yml b/modules/budgets/config/locales/crowdin/uk.yml index e0d3ddb5b5..b725d40437 100644 --- a/modules/budgets/config/locales/crowdin/uk.yml +++ b/modules/budgets/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/vi.yml b/modules/budgets/config/locales/crowdin/vi.yml index 053fb2a3b3..71339b5a01 100644 --- a/modules/budgets/config/locales/crowdin/vi.yml +++ b/modules/budgets/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/zh-CN.yml b/modules/budgets/config/locales/crowdin/zh-CN.yml index e5df9985cf..3b340affc1 100644 --- a/modules/budgets/config/locales/crowdin/zh-CN.yml +++ b/modules/budgets/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/crowdin/zh-TW.yml b/modules/budgets/config/locales/crowdin/zh-TW.yml index 7ca527628b..fe8c94361c 100644 --- a/modules/budgets/config/locales/crowdin/zh-TW.yml +++ b/modules/budgets/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/budgets/config/locales/en.yml b/modules/budgets/config/locales/en.yml index ffdfb1ac6a..0b3f8b29c6 100644 --- a/modules/budgets/config/locales/en.yml +++ b/modules/budgets/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/config/locales/js-en.yml b/modules/budgets/config/locales/js-en.yml index 14e8add998..5139709426 100644 --- a/modules/budgets/config/locales/js-en.yml +++ b/modules/budgets/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/config/routes.rb b/modules/budgets/config/routes.rb index 0836aff44f..493efd99ee 100644 --- a/modules/budgets/config/routes.rb +++ b/modules/budgets/config/routes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/db/migrate/20200807083950_keep_enabled_module.rb b/modules/budgets/db/migrate/20200807083950_keep_enabled_module.rb index 0b7c30b923..60b3651182 100644 --- a/modules/budgets/db/migrate/20200807083950_keep_enabled_module.rb +++ b/modules/budgets/db/migrate/20200807083950_keep_enabled_module.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/frontend/module/augment/cost-budget-subform.augment.service.ts b/modules/budgets/frontend/module/augment/cost-budget-subform.augment.service.ts index 4ecf606e27..11762bb764 100644 --- a/modules/budgets/frontend/module/augment/cost-budget-subform.augment.service.ts +++ b/modules/budgets/frontend/module/augment/cost-budget-subform.augment.service.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/frontend/module/augment/cost-subform.augment.service.ts b/modules/budgets/frontend/module/augment/cost-subform.augment.service.ts index 6b10e3c8cf..3007104170 100644 --- a/modules/budgets/frontend/module/augment/cost-subform.augment.service.ts +++ b/modules/budgets/frontend/module/augment/cost-subform.augment.service.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/frontend/module/augment/planned-costs-form.ts b/modules/budgets/frontend/module/augment/planned-costs-form.ts index f64c715522..fd8abf0575 100644 --- a/modules/budgets/frontend/module/augment/planned-costs-form.ts +++ b/modules/budgets/frontend/module/augment/planned-costs-form.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/attachments/attachments_by_budget_api.rb b/modules/budgets/lib/api/v3/attachments/attachments_by_budget_api.rb index 4dbe69776d..ca16faf5e8 100644 --- a/modules/budgets/lib/api/v3/attachments/attachments_by_budget_api.rb +++ b/modules/budgets/lib/api/v3/attachments/attachments_by_budget_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/budgets/budget_collection_representer.rb b/modules/budgets/lib/api/v3/budgets/budget_collection_representer.rb index 3eab809dd2..fe9173306d 100644 --- a/modules/budgets/lib/api/v3/budgets/budget_collection_representer.rb +++ b/modules/budgets/lib/api/v3/budgets/budget_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/budgets/budget_representer.rb b/modules/budgets/lib/api/v3/budgets/budget_representer.rb index 87eada2dbb..8979a13141 100644 --- a/modules/budgets/lib/api/v3/budgets/budget_representer.rb +++ b/modules/budgets/lib/api/v3/budgets/budget_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/budgets/budgets_api.rb b/modules/budgets/lib/api/v3/budgets/budgets_api.rb index 1b64a2c03e..d7f7db76d0 100644 --- a/modules/budgets/lib/api/v3/budgets/budgets_api.rb +++ b/modules/budgets/lib/api/v3/budgets/budgets_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/budgets/budgets_by_project_api.rb b/modules/budgets/lib/api/v3/budgets/budgets_by_project_api.rb index 8834f7da03..43d110f37e 100644 --- a/modules/budgets/lib/api/v3/budgets/budgets_by_project_api.rb +++ b/modules/budgets/lib/api/v3/budgets/budgets_by_project_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/api/v3/queries/schemas/budget_filter_dependency_representer.rb b/modules/budgets/lib/api/v3/queries/schemas/budget_filter_dependency_representer.rb index 860d3d51da..e4e388993e 100644 --- a/modules/budgets/lib/api/v3/queries/schemas/budget_filter_dependency_representer.rb +++ b/modules/budgets/lib/api/v3/queries/schemas/budget_filter_dependency_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/lib/budgets/hooks/work_package_hook.rb b/modules/budgets/lib/budgets/hooks/work_package_hook.rb index fed5260606..3c32921509 100644 --- a/modules/budgets/lib/budgets/hooks/work_package_hook.rb +++ b/modules/budgets/lib/budgets/hooks/work_package_hook.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/factories/budget_factory.rb b/modules/budgets/spec/factories/budget_factory.rb index d90d9cde2d..2456800bab 100644 --- a/modules/budgets/spec/factories/budget_factory.rb +++ b/modules/budgets/spec/factories/budget_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/factories/labor_budget_item_factory.rb b/modules/budgets/spec/factories/labor_budget_item_factory.rb index 91829a89d3..b39f45455b 100644 --- a/modules/budgets/spec/factories/labor_budget_item_factory.rb +++ b/modules/budgets/spec/factories/labor_budget_item_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/factories/material_budget_item_factory.rb b/modules/budgets/spec/factories/material_budget_item_factory.rb index e4342fcc34..36d808b2da 100644 --- a/modules/budgets/spec/factories/material_budget_item_factory.rb +++ b/modules/budgets/spec/factories/material_budget_item_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/budgets/add_budget_spec.rb b/modules/budgets/spec/features/budgets/add_budget_spec.rb index f62e9c7e2e..d7bf565461 100644 --- a/modules/budgets/spec/features/budgets/add_budget_spec.rb +++ b/modules/budgets/spec/features/budgets/add_budget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/budgets/attachment_upload_spec.rb b/modules/budgets/spec/features/budgets/attachment_upload_spec.rb index 193570cba8..153d392dea 100644 --- a/modules/budgets/spec/features/budgets/attachment_upload_spec.rb +++ b/modules/budgets/spec/features/budgets/attachment_upload_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/budgets/copy_budget_spec.rb b/modules/budgets/spec/features/budgets/copy_budget_spec.rb index b3f2d50a38..9d399dd3df 100644 --- a/modules/budgets/spec/features/budgets/copy_budget_spec.rb +++ b/modules/budgets/spec/features/budgets/copy_budget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/budgets/delete_budget_spec.rb b/modules/budgets/spec/features/budgets/delete_budget_spec.rb index 75c6cbb103..e95ad3beb7 100644 --- a/modules/budgets/spec/features/budgets/delete_budget_spec.rb +++ b/modules/budgets/spec/features/budgets/delete_budget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/budgets/update_budget_spec.rb b/modules/budgets/spec/features/budgets/update_budget_spec.rb index cca6e22c9d..790c0ee4e4 100644 --- a/modules/budgets/spec/features/budgets/update_budget_spec.rb +++ b/modules/budgets/spec/features/budgets/update_budget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/costs_edit_fields_spec.rb b/modules/budgets/spec/features/costs_edit_fields_spec.rb index 3b5388554c..bb1fa135f0 100644 --- a/modules/budgets/spec/features/costs_edit_fields_spec.rb +++ b/modules/budgets/spec/features/costs_edit_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/features/work_package_filter_spec.rb b/modules/budgets/spec/features/work_package_filter_spec.rb index 33370ca816..01fd23ebbd 100644 --- a/modules/budgets/spec/features/work_package_filter_spec.rb +++ b/modules/budgets/spec/features/work_package_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/helpers/budgets_helper_spec.rb b/modules/budgets/spec/helpers/budgets_helper_spec.rb index 75603eb78a..e03352b112 100644 --- a/modules/budgets/spec/helpers/budgets_helper_spec.rb +++ b/modules/budgets/spec/helpers/budgets_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/lib/api/v3/budgets/budget_representer_spec.rb b/modules/budgets/spec/lib/api/v3/budgets/budget_representer_spec.rb index 1ff124b1bb..ba9edd3800 100644 --- a/modules/budgets/spec/lib/api/v3/budgets/budget_representer_spec.rb +++ b/modules/budgets/spec/lib/api/v3/budgets/budget_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/lib/api/v3/path_helper_spec.rb b/modules/budgets/spec/lib/api/v3/path_helper_spec.rb index 2ce9e3eb27..f8d3b45135 100644 --- a/modules/budgets/spec/lib/api/v3/path_helper_spec.rb +++ b/modules/budgets/spec/lib/api/v3/path_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/lib/api/v3/queries/schemas/cost_object_dependency_representer_spec.rb b/modules/budgets/spec/lib/api/v3/queries/schemas/cost_object_dependency_representer_spec.rb index e67da5a649..084d08f0b6 100644 --- a/modules/budgets/spec/lib/api/v3/queries/schemas/cost_object_dependency_representer_spec.rb +++ b/modules/budgets/spec/lib/api/v3/queries/schemas/cost_object_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/models/budget_spec.rb b/modules/budgets/spec/models/budget_spec.rb index b4dcb7c120..1f7a9c597d 100644 --- a/modules/budgets/spec/models/budget_spec.rb +++ b/modules/budgets/spec/models/budget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/models/labor_budget_item_spec.rb b/modules/budgets/spec/models/labor_budget_item_spec.rb index 06e394e6e7..b99df82a8b 100644 --- a/modules/budgets/spec/models/labor_budget_item_spec.rb +++ b/modules/budgets/spec/models/labor_budget_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/models/permitted_params_spec.rb b/modules/budgets/spec/models/permitted_params_spec.rb index 30ecdfe651..62c11d5e1f 100644 --- a/modules/budgets/spec/models/permitted_params_spec.rb +++ b/modules/budgets/spec/models/permitted_params_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/requests/api/v3/budgets/budget_resource_spec.rb b/modules/budgets/spec/requests/api/v3/budgets/budget_resource_spec.rb index c74b3f3fc6..539d425c61 100644 --- a/modules/budgets/spec/requests/api/v3/budgets/budget_resource_spec.rb +++ b/modules/budgets/spec/requests/api/v3/budgets/budget_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/services/budgets/create_service_spec.rb b/modules/budgets/spec/services/budgets/create_service_spec.rb index 5b2a7a1d5a..f97434c847 100644 --- a/modules/budgets/spec/services/budgets/create_service_spec.rb +++ b/modules/budgets/spec/services/budgets/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/services/budgets/update_service_spec.rb b/modules/budgets/spec/services/budgets/update_service_spec.rb index 3a476cdbda..03b5d4ea26 100644 --- a/modules/budgets/spec/services/budgets/update_service_spec.rb +++ b/modules/budgets/spec/services/budgets/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/spec_helper.rb b/modules/budgets/spec/spec_helper.rb index 897b59b705..c3b7781c2a 100644 --- a/modules/budgets/spec/spec_helper.rb +++ b/modules/budgets/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/support/pages/budget_form.rb b/modules/budgets/spec/support/pages/budget_form.rb index a694bc1a11..6b945bd3cc 100644 --- a/modules/budgets/spec/support/pages/budget_form.rb +++ b/modules/budgets/spec/support/pages/budget_form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/support/pages/destroy_info.rb b/modules/budgets/spec/support/pages/destroy_info.rb index dc254cacbb..74923e14cf 100644 --- a/modules/budgets/spec/support/pages/destroy_info.rb +++ b/modules/budgets/spec/support/pages/destroy_info.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/support/pages/edit_budget.rb b/modules/budgets/spec/support/pages/edit_budget.rb index 1e22610064..234a89e5c7 100644 --- a/modules/budgets/spec/support/pages/edit_budget.rb +++ b/modules/budgets/spec/support/pages/edit_budget.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/support/pages/index_budget.rb b/modules/budgets/spec/support/pages/index_budget.rb index 5cd6306a17..4b61e5fe93 100644 --- a/modules/budgets/spec/support/pages/index_budget.rb +++ b/modules/budgets/spec/support/pages/index_budget.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/budgets/spec/support/pages/new_budget.rb b/modules/budgets/spec/support/pages/new_budget.rb index 66115c605e..3dcd90c943 100644 --- a/modules/budgets/spec/support/pages/new_budget.rb +++ b/modules/budgets/spec/support/pages/new_budget.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/app/controllers/calendar/calendars_controller.rb b/modules/calendar/app/controllers/calendar/calendars_controller.rb index e70eec782f..5ec54726fc 100644 --- a/modules/calendar/app/controllers/calendar/calendars_controller.rb +++ b/modules/calendar/app/controllers/calendar/calendars_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/app/views/calendar/calendars/index.html.erb b/modules/calendar/app/views/calendar/calendars/index.html.erb index db6746351d..6aff37f183 100644 --- a/modules/calendar/app/views/calendar/calendars/index.html.erb +++ b/modules/calendar/app/views/calendar/calendars/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/app/views/calendar/calendars/show.html.erb b/modules/calendar/app/views/calendar/calendars/show.html.erb index 6a859c229b..fa74191dad 100644 --- a/modules/calendar/app/views/calendar/calendars/show.html.erb +++ b/modules/calendar/app/views/calendar/calendars/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/lib/open_project/calendar.rb b/modules/calendar/lib/open_project/calendar.rb index 73a0c190f8..0c701f544a 100644 --- a/modules/calendar/lib/open_project/calendar.rb +++ b/modules/calendar/lib/open_project/calendar.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/controllers/calendar_controller_spec.rb b/modules/calendar/spec/controllers/calendar_controller_spec.rb index 502e9515a6..21ac77c268 100644 --- a/modules/calendar/spec/controllers/calendar_controller_spec.rb +++ b/modules/calendar/spec/controllers/calendar_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/calendar_create_work_package_spec.rb b/modules/calendar/spec/features/calendar_create_work_package_spec.rb index a45ad4a399..8cf7f9a7a4 100644 --- a/modules/calendar/spec/features/calendar_create_work_package_spec.rb +++ b/modules/calendar/spec/features/calendar_create_work_package_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/calendar_project_include_spec.rb b/modules/calendar/spec/features/calendar_project_include_spec.rb index 4c38f83d27..ac0d9a8535 100644 --- a/modules/calendar/spec/features/calendar_project_include_spec.rb +++ b/modules/calendar/spec/features/calendar_project_include_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/calendar_user_interaction_spec.rb b/modules/calendar/spec/features/calendar_user_interaction_spec.rb index e7479c10a9..15ef282086 100644 --- a/modules/calendar/spec/features/calendar_user_interaction_spec.rb +++ b/modules/calendar/spec/features/calendar_user_interaction_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/calendars_index_spec.rb b/modules/calendar/spec/features/calendars_index_spec.rb index 59ae4687e3..4dd1d9ffb9 100644 --- a/modules/calendar/spec/features/calendars_index_spec.rb +++ b/modules/calendar/spec/features/calendars_index_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/calendars_spec.rb b/modules/calendar/spec/features/calendars_spec.rb index b4c95d5cfe..d9f0572293 100644 --- a/modules/calendar/spec/features/calendars_spec.rb +++ b/modules/calendar/spec/features/calendars_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/query_handling_spec.rb b/modules/calendar/spec/features/query_handling_spec.rb index ed95fc0984..5ccc471b8d 100644 --- a/modules/calendar/spec/features/query_handling_spec.rb +++ b/modules/calendar/spec/features/query_handling_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/features/shared_context.rb b/modules/calendar/spec/features/shared_context.rb index 15534d29cf..8c62aef69d 100644 --- a/modules/calendar/spec/features/shared_context.rb +++ b/modules/calendar/spec/features/shared_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/routing/calendar_routing_spec.rb b/modules/calendar/spec/routing/calendar_routing_spec.rb index be20742b76..4cdad264a0 100644 --- a/modules/calendar/spec/routing/calendar_routing_spec.rb +++ b/modules/calendar/spec/routing/calendar_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/calendar/spec/support/pages/calendar.rb b/modules/calendar/spec/support/pages/calendar.rb index 4bce8e8e9d..f3399ef7da 100644 --- a/modules/calendar/spec/support/pages/calendar.rb +++ b/modules/calendar/spec/support/pages/calendar.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/contracts/time_entries/base_contract.rb b/modules/costs/app/contracts/time_entries/base_contract.rb index 631ff07d86..cc0825a853 100644 --- a/modules/costs/app/contracts/time_entries/base_contract.rb +++ b/modules/costs/app/contracts/time_entries/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/contracts/time_entries/create_contract.rb b/modules/costs/app/contracts/time_entries/create_contract.rb index 345304111b..9bcd0e1cbd 100644 --- a/modules/costs/app/contracts/time_entries/create_contract.rb +++ b/modules/costs/app/contracts/time_entries/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/contracts/time_entries/delete_contract.rb b/modules/costs/app/contracts/time_entries/delete_contract.rb index b36f4c3557..abed81843d 100644 --- a/modules/costs/app/contracts/time_entries/delete_contract.rb +++ b/modules/costs/app/contracts/time_entries/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/contracts/time_entries/update_contract.rb b/modules/costs/app/contracts/time_entries/update_contract.rb index 73008f920b..f8dd0e702d 100644 --- a/modules/costs/app/contracts/time_entries/update_contract.rb +++ b/modules/costs/app/contracts/time_entries/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/controllers/cost_types_controller.rb b/modules/costs/app/controllers/cost_types_controller.rb index 8b26fdd47e..a0f24b25ac 100644 --- a/modules/costs/app/controllers/cost_types_controller.rb +++ b/modules/costs/app/controllers/cost_types_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/controllers/costlog_controller.rb b/modules/costs/app/controllers/costlog_controller.rb index 5f39947cb9..f461545183 100644 --- a/modules/costs/app/controllers/costlog_controller.rb +++ b/modules/costs/app/controllers/costlog_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/controllers/hourly_rates_controller.rb b/modules/costs/app/controllers/hourly_rates_controller.rb index e813cd6b01..3e0040ffc1 100644 --- a/modules/costs/app/controllers/hourly_rates_controller.rb +++ b/modules/costs/app/controllers/hourly_rates_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/controllers/projects/settings/time_entry_activities_controller.rb b/modules/costs/app/controllers/projects/settings/time_entry_activities_controller.rb index cda027a58d..b6fdf1dd97 100644 --- a/modules/costs/app/controllers/projects/settings/time_entry_activities_controller.rb +++ b/modules/costs/app/controllers/projects/settings/time_entry_activities_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/helpers/cost_types_helper.rb b/modules/costs/app/helpers/cost_types_helper.rb index 7838faf244..17227e1d1f 100644 --- a/modules/costs/app/helpers/cost_types_helper.rb +++ b/modules/costs/app/helpers/cost_types_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/helpers/costlog_helper.rb b/modules/costs/app/helpers/costlog_helper.rb index f3081b9721..f0f2acab93 100644 --- a/modules/costs/app/helpers/costlog_helper.rb +++ b/modules/costs/app/helpers/costlog_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/helpers/costs/number_helper.rb b/modules/costs/app/helpers/costs/number_helper.rb index 6662d3d526..3dbc830010 100644 --- a/modules/costs/app/helpers/costs/number_helper.rb +++ b/modules/costs/app/helpers/costs/number_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/helpers/hourly_rates_helper.rb b/modules/costs/app/helpers/hourly_rates_helper.rb index 41f7e28e70..2a48694ea5 100644 --- a/modules/costs/app/helpers/hourly_rates_helper.rb +++ b/modules/costs/app/helpers/hourly_rates_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/activities/time_entry_activity_provider.rb b/modules/costs/app/models/activities/time_entry_activity_provider.rb index e78cf56b26..4272543403 100644 --- a/modules/costs/app/models/activities/time_entry_activity_provider.rb +++ b/modules/costs/app/models/activities/time_entry_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/cost_entry.rb b/modules/costs/app/models/cost_entry.rb index b13883c32a..5e2fd8d974 100644 --- a/modules/costs/app/models/cost_entry.rb +++ b/modules/costs/app/models/cost_entry.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/cost_rate.rb b/modules/costs/app/models/cost_rate.rb index 2ecd4ca53a..9887f21422 100644 --- a/modules/costs/app/models/cost_rate.rb +++ b/modules/costs/app/models/cost_rate.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/cost_type.rb b/modules/costs/app/models/cost_type.rb index e9a8c343e0..e126ed5ea1 100644 --- a/modules/costs/app/models/cost_type.rb +++ b/modules/costs/app/models/cost_type.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/default_hourly_rate.rb b/modules/costs/app/models/default_hourly_rate.rb index 82c810649e..9dde3f2b10 100644 --- a/modules/costs/app/models/default_hourly_rate.rb +++ b/modules/costs/app/models/default_hourly_rate.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/entry.rb b/modules/costs/app/models/entry.rb index abb047683d..ed2dfeb228 100644 --- a/modules/costs/app/models/entry.rb +++ b/modules/costs/app/models/entry.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/entry/costs.rb b/modules/costs/app/models/entry/costs.rb index ca173141c8..062a32e1cb 100644 --- a/modules/costs/app/models/entry/costs.rb +++ b/modules/costs/app/models/entry/costs.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/entry/splashed_dates.rb b/modules/costs/app/models/entry/splashed_dates.rb index 9c90de3ca3..50b4a1d58e 100644 --- a/modules/costs/app/models/entry/splashed_dates.rb +++ b/modules/costs/app/models/entry/splashed_dates.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/hourly_rate.rb b/modules/costs/app/models/hourly_rate.rb index d63884503f..029e6225c0 100644 --- a/modules/costs/app/models/hourly_rate.rb +++ b/modules/costs/app/models/hourly_rate.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/journal/time_entry_journal.rb b/modules/costs/app/models/journal/time_entry_journal.rb index 6dbe1ba6f2..3699ebec16 100644 --- a/modules/costs/app/models/journal/time_entry_journal.rb +++ b/modules/costs/app/models/journal/time_entry_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/projects/scopes/activated_time_activity.rb b/modules/costs/app/models/projects/scopes/activated_time_activity.rb index 0031ab8a82..7c435745b2 100644 --- a/modules/costs/app/models/projects/scopes/activated_time_activity.rb +++ b/modules/costs/app/models/projects/scopes/activated_time_activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/projects/scopes/visible_with_activated_time_activity.rb b/modules/costs/app/models/projects/scopes/visible_with_activated_time_activity.rb index e46306668f..fe7dcdc015 100644 --- a/modules/costs/app/models/projects/scopes/visible_with_activated_time_activity.rb +++ b/modules/costs/app/models/projects/scopes/visible_with_activated_time_activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries.rb b/modules/costs/app/models/queries/time_entries.rb index 52d50bd500..3a2126bb37 100644 --- a/modules/costs/app/models/queries/time_entries.rb +++ b/modules/costs/app/models/queries/time_entries.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/activity_filter.rb b/modules/costs/app/models/queries/time_entries/filters/activity_filter.rb index 22f3817aee..753a6055c1 100644 --- a/modules/costs/app/models/queries/time_entries/filters/activity_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/activity_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/created_at_filter.rb b/modules/costs/app/models/queries/time_entries/filters/created_at_filter.rb index 9c4156e0f7..9f0e14c584 100644 --- a/modules/costs/app/models/queries/time_entries/filters/created_at_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/created_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/project_filter.rb b/modules/costs/app/models/queries/time_entries/filters/project_filter.rb index 7e5d243ef9..2fdce307d7 100644 --- a/modules/costs/app/models/queries/time_entries/filters/project_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/spent_on_filter.rb b/modules/costs/app/models/queries/time_entries/filters/spent_on_filter.rb index 268973e44c..6223f70456 100644 --- a/modules/costs/app/models/queries/time_entries/filters/spent_on_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/spent_on_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/time_entry_filter.rb b/modules/costs/app/models/queries/time_entries/filters/time_entry_filter.rb index c5530e0a2f..11273ae6d5 100644 --- a/modules/costs/app/models/queries/time_entries/filters/time_entry_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/time_entry_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/updated_at_filter.rb b/modules/costs/app/models/queries/time_entries/filters/updated_at_filter.rb index e65f3c824a..c1fbc121da 100644 --- a/modules/costs/app/models/queries/time_entries/filters/updated_at_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/updated_at_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/user_filter.rb b/modules/costs/app/models/queries/time_entries/filters/user_filter.rb index 75daafd5a7..8147676fb8 100644 --- a/modules/costs/app/models/queries/time_entries/filters/user_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/user_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/filters/work_package_filter.rb b/modules/costs/app/models/queries/time_entries/filters/work_package_filter.rb index df022f98e5..2022a00108 100644 --- a/modules/costs/app/models/queries/time_entries/filters/work_package_filter.rb +++ b/modules/costs/app/models/queries/time_entries/filters/work_package_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/orders/default_order.rb b/modules/costs/app/models/queries/time_entries/orders/default_order.rb index 1b35890c85..f8b315902a 100644 --- a/modules/costs/app/models/queries/time_entries/orders/default_order.rb +++ b/modules/costs/app/models/queries/time_entries/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/queries/time_entries/time_entry_query.rb b/modules/costs/app/models/queries/time_entries/time_entry_query.rb index cceac0e75b..84fad6f77b 100644 --- a/modules/costs/app/models/queries/time_entries/time_entry_query.rb +++ b/modules/costs/app/models/queries/time_entries/time_entry_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/rate.rb b/modules/costs/app/models/rate.rb index 5d1c7c5a21..d7367c94c7 100644 --- a/modules/costs/app/models/rate.rb +++ b/modules/costs/app/models/rate.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entries/scopes/of_user_and_day.rb b/modules/costs/app/models/time_entries/scopes/of_user_and_day.rb index 80725ffeda..1b1039d5f0 100644 --- a/modules/costs/app/models/time_entries/scopes/of_user_and_day.rb +++ b/modules/costs/app/models/time_entries/scopes/of_user_and_day.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entries/scopes/visible.rb b/modules/costs/app/models/time_entries/scopes/visible.rb index 236e04b8eb..0d67d109a9 100644 --- a/modules/costs/app/models/time_entries/scopes/visible.rb +++ b/modules/costs/app/models/time_entries/scopes/visible.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entry.rb b/modules/costs/app/models/time_entry.rb index 80b4b32e57..2105d718ad 100644 --- a/modules/costs/app/models/time_entry.rb +++ b/modules/costs/app/models/time_entry.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entry_activities/scopes/active_in_project.rb b/modules/costs/app/models/time_entry_activities/scopes/active_in_project.rb index d8312d69eb..fef05918f0 100644 --- a/modules/costs/app/models/time_entry_activities/scopes/active_in_project.rb +++ b/modules/costs/app/models/time_entry_activities/scopes/active_in_project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entry_activities_project.rb b/modules/costs/app/models/time_entry_activities_project.rb index f8fa10e69e..7977fb6f6d 100644 --- a/modules/costs/app/models/time_entry_activities_project.rb +++ b/modules/costs/app/models/time_entry_activities_project.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entry_activity.rb b/modules/costs/app/models/time_entry_activity.rb index 03bd6966c5..589cb1a7e5 100644 --- a/modules/costs/app/models/time_entry_activity.rb +++ b/modules/costs/app/models/time_entry_activity.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/models/time_entry_custom_field.rb b/modules/costs/app/models/time_entry_custom_field.rb index c942541c63..a3102df3f2 100644 --- a/modules/costs/app/models/time_entry_custom_field.rb +++ b/modules/costs/app/models/time_entry_custom_field.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/services/time_entries/create_service.rb b/modules/costs/app/services/time_entries/create_service.rb index 54c73d51b9..db6cb9512e 100644 --- a/modules/costs/app/services/time_entries/create_service.rb +++ b/modules/costs/app/services/time_entries/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/services/time_entries/delete_service.rb b/modules/costs/app/services/time_entries/delete_service.rb index e5beb50362..7eadd0fa05 100644 --- a/modules/costs/app/services/time_entries/delete_service.rb +++ b/modules/costs/app/services/time_entries/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/services/time_entries/set_attributes_service.rb b/modules/costs/app/services/time_entries/set_attributes_service.rb index 993ef51e95..a58b7aca43 100644 --- a/modules/costs/app/services/time_entries/set_attributes_service.rb +++ b/modules/costs/app/services/time_entries/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/services/time_entries/update_service.rb b/modules/costs/app/services/time_entries/update_service.rb index ee2580121c..e57631fccc 100644 --- a/modules/costs/app/services/time_entries/update_service.rb +++ b/modules/costs/app/services/time_entries/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/cost_types/_list.html.erb b/modules/costs/app/views/cost_types/_list.html.erb index 6db90d1fda..73593df30a 100644 --- a/modules/costs/app/views/cost_types/_list.html.erb +++ b/modules/costs/app/views/cost_types/_list.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/cost_types/_list_deleted.html.erb b/modules/costs/app/views/cost_types/_list_deleted.html.erb index 730bffdd80..1466ac24d2 100644 --- a/modules/costs/app/views/cost_types/_list_deleted.html.erb +++ b/modules/costs/app/views/cost_types/_list_deleted.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/cost_types/_rate.html.erb b/modules/costs/app/views/cost_types/_rate.html.erb index fbb1707dba..b5edacb8e3 100644 --- a/modules/costs/app/views/cost_types/_rate.html.erb +++ b/modules/costs/app/views/cost_types/_rate.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/cost_types/edit.html.erb b/modules/costs/app/views/cost_types/edit.html.erb index 5fd9fe1a4d..1e827dcf17 100644 --- a/modules/costs/app/views/cost_types/edit.html.erb +++ b/modules/costs/app/views/cost_types/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/cost_types/index.html.erb b/modules/costs/app/views/cost_types/index.html.erb index ab0f4f13dc..92ccf85353 100644 --- a/modules/costs/app/views/cost_types/index.html.erb +++ b/modules/costs/app/views/cost_types/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/costlog/edit.html.erb b/modules/costs/app/views/costlog/edit.html.erb index cdab4102be..7172b65900 100644 --- a/modules/costs/app/views/costlog/edit.html.erb +++ b/modules/costs/app/views/costlog/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/_list.html.erb b/modules/costs/app/views/hourly_rates/_list.html.erb index 83b70b798d..528922f5fc 100644 --- a/modules/costs/app/views/hourly_rates/_list.html.erb +++ b/modules/costs/app/views/hourly_rates/_list.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/_list_default.html.erb b/modules/costs/app/views/hourly_rates/_list_default.html.erb index 350065554e..00bac32af9 100644 --- a/modules/costs/app/views/hourly_rates/_list_default.html.erb +++ b/modules/costs/app/views/hourly_rates/_list_default.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/_list_project.html.erb b/modules/costs/app/views/hourly_rates/_list_project.html.erb index c9305a1981..b6a5778598 100644 --- a/modules/costs/app/views/hourly_rates/_list_project.html.erb +++ b/modules/costs/app/views/hourly_rates/_list_project.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/_rate.html.erb b/modules/costs/app/views/hourly_rates/_rate.html.erb index 9371a14973..ec658b5763 100644 --- a/modules/costs/app/views/hourly_rates/_rate.html.erb +++ b/modules/costs/app/views/hourly_rates/_rate.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/edit.html.erb b/modules/costs/app/views/hourly_rates/edit.html.erb index a233d21173..53d2f4f0cc 100644 --- a/modules/costs/app/views/hourly_rates/edit.html.erb +++ b/modules/costs/app/views/hourly_rates/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/hourly_rates/show.html.erb b/modules/costs/app/views/hourly_rates/show.html.erb index 90849f7a80..7fb5d7660c 100644 --- a/modules/costs/app/views/hourly_rates/show.html.erb +++ b/modules/costs/app/views/hourly_rates/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/projects/settings/time_entry_activities/_activities.html.erb b/modules/costs/app/views/projects/settings/time_entry_activities/_activities.html.erb index e78b5b392f..eeacd012ec 100644 --- a/modules/costs/app/views/projects/settings/time_entry_activities/_activities.html.erb +++ b/modules/costs/app/views/projects/settings/time_entry_activities/_activities.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/projects/settings/time_entry_activities/show.html.erb b/modules/costs/app/views/projects/settings/time_entry_activities/show.html.erb index 1d9ead44dc..02347db706 100644 --- a/modules/costs/app/views/projects/settings/time_entry_activities/show.html.erb +++ b/modules/costs/app/views/projects/settings/time_entry_activities/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/settings/_costs.html.erb b/modules/costs/app/views/settings/_costs.html.erb index 85fcf03c26..6555ea1f31 100644 --- a/modules/costs/app/views/settings/_costs.html.erb +++ b/modules/costs/app/views/settings/_costs.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/app/views/users/_rates.html.erb b/modules/costs/app/views/users/_rates.html.erb index f5a2f52f73..9b18a2d747 100644 --- a/modules/costs/app/views/users/_rates.html.erb +++ b/modules/costs/app/views/users/_rates.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/config/locales/crowdin/af.yml b/modules/costs/config/locales/crowdin/af.yml index a193e1c445..4bd9b83ee5 100644 --- a/modules/costs/config/locales/crowdin/af.yml +++ b/modules/costs/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ar.yml b/modules/costs/config/locales/crowdin/ar.yml index 4d3ebc3250..7c3bcd5af1 100644 --- a/modules/costs/config/locales/crowdin/ar.yml +++ b/modules/costs/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/az.yml b/modules/costs/config/locales/crowdin/az.yml index ee50d44578..6fc91e4de4 100644 --- a/modules/costs/config/locales/crowdin/az.yml +++ b/modules/costs/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/bg.yml b/modules/costs/config/locales/crowdin/bg.yml index a61453f26d..6c9f88b456 100644 --- a/modules/costs/config/locales/crowdin/bg.yml +++ b/modules/costs/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ca.yml b/modules/costs/config/locales/crowdin/ca.yml index 7b40c961e9..8f5b8b7efc 100644 --- a/modules/costs/config/locales/crowdin/ca.yml +++ b/modules/costs/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/cs.yml b/modules/costs/config/locales/crowdin/cs.yml index bb60c254b1..402eb828e0 100644 --- a/modules/costs/config/locales/crowdin/cs.yml +++ b/modules/costs/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/da.yml b/modules/costs/config/locales/crowdin/da.yml index 752a28903d..81fac653f3 100644 --- a/modules/costs/config/locales/crowdin/da.yml +++ b/modules/costs/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/de.yml b/modules/costs/config/locales/crowdin/de.yml index 4aa28e39a2..9612d18992 100644 --- a/modules/costs/config/locales/crowdin/de.yml +++ b/modules/costs/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/el.yml b/modules/costs/config/locales/crowdin/el.yml index bbf3b4f253..73532bfa08 100644 --- a/modules/costs/config/locales/crowdin/el.yml +++ b/modules/costs/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/eo.yml b/modules/costs/config/locales/crowdin/eo.yml index 0e896d577c..741e2cffd0 100644 --- a/modules/costs/config/locales/crowdin/eo.yml +++ b/modules/costs/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/es.yml b/modules/costs/config/locales/crowdin/es.yml index 3521d14a1f..1e832c7d6d 100644 --- a/modules/costs/config/locales/crowdin/es.yml +++ b/modules/costs/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/et.yml b/modules/costs/config/locales/crowdin/et.yml index 3a1f71b873..d952196c6a 100644 --- a/modules/costs/config/locales/crowdin/et.yml +++ b/modules/costs/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/fa.yml b/modules/costs/config/locales/crowdin/fa.yml index 58df207a96..097ecce8bf 100644 --- a/modules/costs/config/locales/crowdin/fa.yml +++ b/modules/costs/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/fi.yml b/modules/costs/config/locales/crowdin/fi.yml index b2cc099b23..e22b59b52e 100644 --- a/modules/costs/config/locales/crowdin/fi.yml +++ b/modules/costs/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/fil.yml b/modules/costs/config/locales/crowdin/fil.yml index 67bcd8ec29..4291fccaa9 100644 --- a/modules/costs/config/locales/crowdin/fil.yml +++ b/modules/costs/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/fr.yml b/modules/costs/config/locales/crowdin/fr.yml index 049a91671b..74925dcdb7 100644 --- a/modules/costs/config/locales/crowdin/fr.yml +++ b/modules/costs/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/he.yml b/modules/costs/config/locales/crowdin/he.yml index d45f85009b..47ff1d43d0 100644 --- a/modules/costs/config/locales/crowdin/he.yml +++ b/modules/costs/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/hi.yml b/modules/costs/config/locales/crowdin/hi.yml index 4c8610d32c..f0613e87d9 100644 --- a/modules/costs/config/locales/crowdin/hi.yml +++ b/modules/costs/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/hr.yml b/modules/costs/config/locales/crowdin/hr.yml index 25f2daabb1..d2a9a6531b 100644 --- a/modules/costs/config/locales/crowdin/hr.yml +++ b/modules/costs/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/hu.yml b/modules/costs/config/locales/crowdin/hu.yml index 3f8e5b256c..f018e2affb 100644 --- a/modules/costs/config/locales/crowdin/hu.yml +++ b/modules/costs/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/id.yml b/modules/costs/config/locales/crowdin/id.yml index e37bd25ec9..476ed6691b 100644 --- a/modules/costs/config/locales/crowdin/id.yml +++ b/modules/costs/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/it.yml b/modules/costs/config/locales/crowdin/it.yml index 15c08aac14..0858c15e44 100644 --- a/modules/costs/config/locales/crowdin/it.yml +++ b/modules/costs/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ja.yml b/modules/costs/config/locales/crowdin/ja.yml index 3e823202e9..d044f76803 100644 --- a/modules/costs/config/locales/crowdin/ja.yml +++ b/modules/costs/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-af.yml b/modules/costs/config/locales/crowdin/js-af.yml index 4a00e9c420..2532d621f1 100644 --- a/modules/costs/config/locales/crowdin/js-af.yml +++ b/modules/costs/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ar.yml b/modules/costs/config/locales/crowdin/js-ar.yml index 76d385fe34..5eb7459fc9 100644 --- a/modules/costs/config/locales/crowdin/js-ar.yml +++ b/modules/costs/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-az.yml b/modules/costs/config/locales/crowdin/js-az.yml index 8a7a30d37f..5559da34e4 100644 --- a/modules/costs/config/locales/crowdin/js-az.yml +++ b/modules/costs/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-bg.yml b/modules/costs/config/locales/crowdin/js-bg.yml index f69436db84..945205be12 100644 --- a/modules/costs/config/locales/crowdin/js-bg.yml +++ b/modules/costs/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ca.yml b/modules/costs/config/locales/crowdin/js-ca.yml index 7ca91248f6..be69ce295a 100644 --- a/modules/costs/config/locales/crowdin/js-ca.yml +++ b/modules/costs/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-cs.yml b/modules/costs/config/locales/crowdin/js-cs.yml index 8e069f0a5c..13ee2cde9a 100644 --- a/modules/costs/config/locales/crowdin/js-cs.yml +++ b/modules/costs/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-da.yml b/modules/costs/config/locales/crowdin/js-da.yml index 7056dd532b..fc09549163 100644 --- a/modules/costs/config/locales/crowdin/js-da.yml +++ b/modules/costs/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-de.yml b/modules/costs/config/locales/crowdin/js-de.yml index f6b7bba190..49c641df18 100644 --- a/modules/costs/config/locales/crowdin/js-de.yml +++ b/modules/costs/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-el.yml b/modules/costs/config/locales/crowdin/js-el.yml index 5f8e08b9bc..5a9c33f025 100644 --- a/modules/costs/config/locales/crowdin/js-el.yml +++ b/modules/costs/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-eo.yml b/modules/costs/config/locales/crowdin/js-eo.yml index 0da052e567..04dcc56b91 100644 --- a/modules/costs/config/locales/crowdin/js-eo.yml +++ b/modules/costs/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-es.yml b/modules/costs/config/locales/crowdin/js-es.yml index 1227a0f2e0..d613aeee18 100644 --- a/modules/costs/config/locales/crowdin/js-es.yml +++ b/modules/costs/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-et.yml b/modules/costs/config/locales/crowdin/js-et.yml index 91b97cce1b..4bf0a27c11 100644 --- a/modules/costs/config/locales/crowdin/js-et.yml +++ b/modules/costs/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-fa.yml b/modules/costs/config/locales/crowdin/js-fa.yml index 1c767e9d49..16e02b763b 100644 --- a/modules/costs/config/locales/crowdin/js-fa.yml +++ b/modules/costs/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-fi.yml b/modules/costs/config/locales/crowdin/js-fi.yml index f3d50c5a85..0af199d1f6 100644 --- a/modules/costs/config/locales/crowdin/js-fi.yml +++ b/modules/costs/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-fil.yml b/modules/costs/config/locales/crowdin/js-fil.yml index ef736b13f6..7cff6403eb 100644 --- a/modules/costs/config/locales/crowdin/js-fil.yml +++ b/modules/costs/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-fr.yml b/modules/costs/config/locales/crowdin/js-fr.yml index 4b37e4db0d..c6019b3be8 100644 --- a/modules/costs/config/locales/crowdin/js-fr.yml +++ b/modules/costs/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-he.yml b/modules/costs/config/locales/crowdin/js-he.yml index 050750bcc0..172041ecbe 100644 --- a/modules/costs/config/locales/crowdin/js-he.yml +++ b/modules/costs/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-hi.yml b/modules/costs/config/locales/crowdin/js-hi.yml index 02afd0d432..4f97f17247 100644 --- a/modules/costs/config/locales/crowdin/js-hi.yml +++ b/modules/costs/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-hr.yml b/modules/costs/config/locales/crowdin/js-hr.yml index 9f94b5229a..bf1818772a 100644 --- a/modules/costs/config/locales/crowdin/js-hr.yml +++ b/modules/costs/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-hu.yml b/modules/costs/config/locales/crowdin/js-hu.yml index 1e1895bab7..c2ab243897 100644 --- a/modules/costs/config/locales/crowdin/js-hu.yml +++ b/modules/costs/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-id.yml b/modules/costs/config/locales/crowdin/js-id.yml index 1bb1906615..adcafe0b12 100644 --- a/modules/costs/config/locales/crowdin/js-id.yml +++ b/modules/costs/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-it.yml b/modules/costs/config/locales/crowdin/js-it.yml index 939d3d5977..2127b00881 100644 --- a/modules/costs/config/locales/crowdin/js-it.yml +++ b/modules/costs/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ja.yml b/modules/costs/config/locales/crowdin/js-ja.yml index a88f904a20..ca80b93c7b 100644 --- a/modules/costs/config/locales/crowdin/js-ja.yml +++ b/modules/costs/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ko.yml b/modules/costs/config/locales/crowdin/js-ko.yml index a6741aa030..58d07c8a65 100644 --- a/modules/costs/config/locales/crowdin/js-ko.yml +++ b/modules/costs/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-lol.yml b/modules/costs/config/locales/crowdin/js-lol.yml index 11f541173c..cf3999fa8f 100644 --- a/modules/costs/config/locales/crowdin/js-lol.yml +++ b/modules/costs/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-lt.yml b/modules/costs/config/locales/crowdin/js-lt.yml index f6802a1abb..4a3d7294ae 100644 --- a/modules/costs/config/locales/crowdin/js-lt.yml +++ b/modules/costs/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-lv.yml b/modules/costs/config/locales/crowdin/js-lv.yml index 8364108683..ccd80de6a1 100644 --- a/modules/costs/config/locales/crowdin/js-lv.yml +++ b/modules/costs/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ne.yml b/modules/costs/config/locales/crowdin/js-ne.yml index 906d25cdeb..38ba5d4d64 100644 --- a/modules/costs/config/locales/crowdin/js-ne.yml +++ b/modules/costs/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-nl.yml b/modules/costs/config/locales/crowdin/js-nl.yml index fd98e3bfb5..c4021cc7c2 100644 --- a/modules/costs/config/locales/crowdin/js-nl.yml +++ b/modules/costs/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-no.yml b/modules/costs/config/locales/crowdin/js-no.yml index 16d53042c5..2fbb6538d5 100644 --- a/modules/costs/config/locales/crowdin/js-no.yml +++ b/modules/costs/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-pl.yml b/modules/costs/config/locales/crowdin/js-pl.yml index 9ad8fc6e1f..5e815e46d5 100644 --- a/modules/costs/config/locales/crowdin/js-pl.yml +++ b/modules/costs/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-pt.yml b/modules/costs/config/locales/crowdin/js-pt.yml index cd634cd1d6..f4f26b535e 100644 --- a/modules/costs/config/locales/crowdin/js-pt.yml +++ b/modules/costs/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ro.yml b/modules/costs/config/locales/crowdin/js-ro.yml index 21130a63e3..294bf1bba9 100644 --- a/modules/costs/config/locales/crowdin/js-ro.yml +++ b/modules/costs/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-ru.yml b/modules/costs/config/locales/crowdin/js-ru.yml index be2371c033..a777bb0093 100644 --- a/modules/costs/config/locales/crowdin/js-ru.yml +++ b/modules/costs/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-rw.yml b/modules/costs/config/locales/crowdin/js-rw.yml index 8e4a8d9390..333eae9cd7 100644 --- a/modules/costs/config/locales/crowdin/js-rw.yml +++ b/modules/costs/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-si.yml b/modules/costs/config/locales/crowdin/js-si.yml index 6037b91c1b..ba8d8416ab 100644 --- a/modules/costs/config/locales/crowdin/js-si.yml +++ b/modules/costs/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-sk.yml b/modules/costs/config/locales/crowdin/js-sk.yml index cf34eb0c30..7755f7163b 100644 --- a/modules/costs/config/locales/crowdin/js-sk.yml +++ b/modules/costs/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-sl.yml b/modules/costs/config/locales/crowdin/js-sl.yml index a25c1c846a..04a93c2a1c 100644 --- a/modules/costs/config/locales/crowdin/js-sl.yml +++ b/modules/costs/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-sv.yml b/modules/costs/config/locales/crowdin/js-sv.yml index 5294874aa5..5de0b9d345 100644 --- a/modules/costs/config/locales/crowdin/js-sv.yml +++ b/modules/costs/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-th.yml b/modules/costs/config/locales/crowdin/js-th.yml index 43c5de677c..f516806197 100644 --- a/modules/costs/config/locales/crowdin/js-th.yml +++ b/modules/costs/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-tr.yml b/modules/costs/config/locales/crowdin/js-tr.yml index c3d85029e9..1e4c12ecea 100644 --- a/modules/costs/config/locales/crowdin/js-tr.yml +++ b/modules/costs/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-uk.yml b/modules/costs/config/locales/crowdin/js-uk.yml index 0353d8b025..c8c49725f8 100644 --- a/modules/costs/config/locales/crowdin/js-uk.yml +++ b/modules/costs/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-vi.yml b/modules/costs/config/locales/crowdin/js-vi.yml index 6d87562877..2d3b14581e 100644 --- a/modules/costs/config/locales/crowdin/js-vi.yml +++ b/modules/costs/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-zh-CN.yml b/modules/costs/config/locales/crowdin/js-zh-CN.yml index 7dc5c451b0..25bf86135e 100644 --- a/modules/costs/config/locales/crowdin/js-zh-CN.yml +++ b/modules/costs/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/js-zh-TW.yml b/modules/costs/config/locales/crowdin/js-zh-TW.yml index 965a3db26c..8fc9c4936f 100644 --- a/modules/costs/config/locales/crowdin/js-zh-TW.yml +++ b/modules/costs/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ko.yml b/modules/costs/config/locales/crowdin/ko.yml index 4c4ba51b0e..1f30b75d2c 100644 --- a/modules/costs/config/locales/crowdin/ko.yml +++ b/modules/costs/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/lol.yml b/modules/costs/config/locales/crowdin/lol.yml index 47a9ad4a51..b2aaae590e 100644 --- a/modules/costs/config/locales/crowdin/lol.yml +++ b/modules/costs/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/lt.yml b/modules/costs/config/locales/crowdin/lt.yml index 02508ad989..33bde1200e 100644 --- a/modules/costs/config/locales/crowdin/lt.yml +++ b/modules/costs/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/lv.yml b/modules/costs/config/locales/crowdin/lv.yml index 7fd6d35b40..2344ef903e 100644 --- a/modules/costs/config/locales/crowdin/lv.yml +++ b/modules/costs/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ne.yml b/modules/costs/config/locales/crowdin/ne.yml index 28976611c6..8371574e69 100644 --- a/modules/costs/config/locales/crowdin/ne.yml +++ b/modules/costs/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/nl.yml b/modules/costs/config/locales/crowdin/nl.yml index dc82e75e4c..009cb63552 100644 --- a/modules/costs/config/locales/crowdin/nl.yml +++ b/modules/costs/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/no.yml b/modules/costs/config/locales/crowdin/no.yml index 825925edc4..19ddb95742 100644 --- a/modules/costs/config/locales/crowdin/no.yml +++ b/modules/costs/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/pl.yml b/modules/costs/config/locales/crowdin/pl.yml index 799f661db4..45c6e3a2ff 100644 --- a/modules/costs/config/locales/crowdin/pl.yml +++ b/modules/costs/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/pt.yml b/modules/costs/config/locales/crowdin/pt.yml index 98be74a3da..df84c89dda 100644 --- a/modules/costs/config/locales/crowdin/pt.yml +++ b/modules/costs/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ro.yml b/modules/costs/config/locales/crowdin/ro.yml index e39a5f70f4..c2c4cec1fa 100644 --- a/modules/costs/config/locales/crowdin/ro.yml +++ b/modules/costs/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/ru.yml b/modules/costs/config/locales/crowdin/ru.yml index 1c2b138de1..cd4fd3071e 100644 --- a/modules/costs/config/locales/crowdin/ru.yml +++ b/modules/costs/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/rw.yml b/modules/costs/config/locales/crowdin/rw.yml index ea5a504348..c7d0d677ae 100644 --- a/modules/costs/config/locales/crowdin/rw.yml +++ b/modules/costs/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/si.yml b/modules/costs/config/locales/crowdin/si.yml index e1dc8d7ae4..f833714f09 100644 --- a/modules/costs/config/locales/crowdin/si.yml +++ b/modules/costs/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/sk.yml b/modules/costs/config/locales/crowdin/sk.yml index 03d20d971d..b248e4baf3 100644 --- a/modules/costs/config/locales/crowdin/sk.yml +++ b/modules/costs/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/sl.yml b/modules/costs/config/locales/crowdin/sl.yml index 49472e6bb5..669336e2ee 100644 --- a/modules/costs/config/locales/crowdin/sl.yml +++ b/modules/costs/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/sv.yml b/modules/costs/config/locales/crowdin/sv.yml index b68f6c1736..767d3c1755 100644 --- a/modules/costs/config/locales/crowdin/sv.yml +++ b/modules/costs/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/th.yml b/modules/costs/config/locales/crowdin/th.yml index 8c8dd2a9c5..846dd0751f 100644 --- a/modules/costs/config/locales/crowdin/th.yml +++ b/modules/costs/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/tr.yml b/modules/costs/config/locales/crowdin/tr.yml index b9cda8e11e..d5cc01bb60 100644 --- a/modules/costs/config/locales/crowdin/tr.yml +++ b/modules/costs/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/uk.yml b/modules/costs/config/locales/crowdin/uk.yml index e31ce023e0..dccd1d5e03 100644 --- a/modules/costs/config/locales/crowdin/uk.yml +++ b/modules/costs/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/vi.yml b/modules/costs/config/locales/crowdin/vi.yml index b9f67e7559..ad4b3742e4 100644 --- a/modules/costs/config/locales/crowdin/vi.yml +++ b/modules/costs/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/zh-CN.yml b/modules/costs/config/locales/crowdin/zh-CN.yml index 3b99689218..1c7ea0cd05 100644 --- a/modules/costs/config/locales/crowdin/zh-CN.yml +++ b/modules/costs/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/crowdin/zh-TW.yml b/modules/costs/config/locales/crowdin/zh-TW.yml index 6bd4c6516c..b9f44fd136 100644 --- a/modules/costs/config/locales/crowdin/zh-TW.yml +++ b/modules/costs/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/costs/config/locales/en.yml b/modules/costs/config/locales/en.yml index a45d1f0115..fb11268de0 100644 --- a/modules/costs/config/locales/en.yml +++ b/modules/costs/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/config/locales/js-en.yml b/modules/costs/config/locales/js-en.yml index 9c68da2c40..2339dcf88a 100644 --- a/modules/costs/config/locales/js-en.yml +++ b/modules/costs/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/config/routes.rb b/modules/costs/config/routes.rb index 70e88af915..0882f56876 100644 --- a/modules/costs/config/routes.rb +++ b/modules/costs/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/db/migrate/20180323133404_to_v710_aggregated_costs_migrations.rb b/modules/costs/db/migrate/20180323133404_to_v710_aggregated_costs_migrations.rb index 061d2101bc..e848fdb21c 100644 --- a/modules/costs/db/migrate/20180323133404_to_v710_aggregated_costs_migrations.rb +++ b/modules/costs/db/migrate/20180323133404_to_v710_aggregated_costs_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/db/migrate/20200807083952_rename_time_and_cost_module.rb b/modules/costs/db/migrate/20200807083952_rename_time_and_cost_module.rb index 64011542ed..882b512069 100644 --- a/modules/costs/db/migrate/20200807083952_rename_time_and_cost_module.rb +++ b/modules/costs/db/migrate/20200807083952_rename_time_and_cost_module.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/frontend/module/wp-display/costs-by-type-display-field.module.ts b/modules/costs/frontend/module/wp-display/costs-by-type-display-field.module.ts index 2b03e9d283..af5df3c3da 100644 --- a/modules/costs/frontend/module/wp-display/costs-by-type-display-field.module.ts +++ b/modules/costs/frontend/module/wp-display/costs-by-type-display-field.module.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/frontend/module/wp-display/currency-display-field.module.ts b/modules/costs/frontend/module/wp-display/currency-display-field.module.ts index 15770db1d5..ddfbddc024 100644 --- a/modules/costs/frontend/module/wp-display/currency-display-field.module.ts +++ b/modules/costs/frontend/module/wp-display/currency-display-field.module.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/aggregated_cost_entry_representer.rb b/modules/costs/lib/api/v3/cost_entries/aggregated_cost_entry_representer.rb index 0f9a18d243..83fef1af68 100644 --- a/modules/costs/lib/api/v3/cost_entries/aggregated_cost_entry_representer.rb +++ b/modules/costs/lib/api/v3/cost_entries/aggregated_cost_entry_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/cost_entries_api.rb b/modules/costs/lib/api/v3/cost_entries/cost_entries_api.rb index 4fdd5e45b7..f188c73e9a 100644 --- a/modules/costs/lib/api/v3/cost_entries/cost_entries_api.rb +++ b/modules/costs/lib/api/v3/cost_entries/cost_entries_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/cost_entries_by_work_package_api.rb b/modules/costs/lib/api/v3/cost_entries/cost_entries_by_work_package_api.rb index d104f1475e..d82b9a0b36 100644 --- a/modules/costs/lib/api/v3/cost_entries/cost_entries_by_work_package_api.rb +++ b/modules/costs/lib/api/v3/cost_entries/cost_entries_by_work_package_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/cost_entry_collection_representer.rb b/modules/costs/lib/api/v3/cost_entries/cost_entry_collection_representer.rb index 59e410aded..76851597f9 100644 --- a/modules/costs/lib/api/v3/cost_entries/cost_entry_collection_representer.rb +++ b/modules/costs/lib/api/v3/cost_entries/cost_entry_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/cost_entry_representer.rb b/modules/costs/lib/api/v3/cost_entries/cost_entry_representer.rb index 6e6be446c8..07b41f6727 100644 --- a/modules/costs/lib/api/v3/cost_entries/cost_entry_representer.rb +++ b/modules/costs/lib/api/v3/cost_entries/cost_entry_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_entries/work_package_costs_by_type_representer.rb b/modules/costs/lib/api/v3/cost_entries/work_package_costs_by_type_representer.rb index 148bd777d3..5972fe0bdb 100644 --- a/modules/costs/lib/api/v3/cost_entries/work_package_costs_by_type_representer.rb +++ b/modules/costs/lib/api/v3/cost_entries/work_package_costs_by_type_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_types/cost_type_representer.rb b/modules/costs/lib/api/v3/cost_types/cost_type_representer.rb index 52817bf965..eebe406485 100644 --- a/modules/costs/lib/api/v3/cost_types/cost_type_representer.rb +++ b/modules/costs/lib/api/v3/cost_types/cost_type_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/cost_types/cost_types_api.rb b/modules/costs/lib/api/v3/cost_types/cost_types_api.rb index 80b6473d1f..44b13d0400 100644 --- a/modules/costs/lib/api/v3/cost_types/cost_types_api.rb +++ b/modules/costs/lib/api/v3/cost_types/cost_types_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/available_projects_api.rb b/modules/costs/lib/api/v3/time_entries/available_projects_api.rb index 9ca90b27d4..41ed790f06 100644 --- a/modules/costs/lib/api/v3/time_entries/available_projects_api.rb +++ b/modules/costs/lib/api/v3/time_entries/available_projects_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/available_work_packages_helper.rb b/modules/costs/lib/api/v3/time_entries/available_work_packages_helper.rb index 1c8fd24fda..fb5ac253ca 100644 --- a/modules/costs/lib/api/v3/time_entries/available_work_packages_helper.rb +++ b/modules/costs/lib/api/v3/time_entries/available_work_packages_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/available_work_packages_on_create_api.rb b/modules/costs/lib/api/v3/time_entries/available_work_packages_on_create_api.rb index eeea36e5ae..1da88727d0 100644 --- a/modules/costs/lib/api/v3/time_entries/available_work_packages_on_create_api.rb +++ b/modules/costs/lib/api/v3/time_entries/available_work_packages_on_create_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/available_work_packages_on_edit_api.rb b/modules/costs/lib/api/v3/time_entries/available_work_packages_on_edit_api.rb index 94ab196a23..6c74d70250 100644 --- a/modules/costs/lib/api/v3/time_entries/available_work_packages_on_edit_api.rb +++ b/modules/costs/lib/api/v3/time_entries/available_work_packages_on_edit_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/create_form_api.rb b/modules/costs/lib/api/v3/time_entries/create_form_api.rb index b4302d99c6..911b3b6863 100644 --- a/modules/costs/lib/api/v3/time_entries/create_form_api.rb +++ b/modules/costs/lib/api/v3/time_entries/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/create_form_representer.rb b/modules/costs/lib/api/v3/time_entries/create_form_representer.rb index d604f81ff6..5350b517a1 100644 --- a/modules/costs/lib/api/v3/time_entries/create_form_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/form_representer.rb b/modules/costs/lib/api/v3/time_entries/form_representer.rb index dda09426dc..e4369e85a2 100644 --- a/modules/costs/lib/api/v3/time_entries/form_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_api.rb b/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_api.rb index 1df0742a9f..043197f37c 100644 --- a/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_api.rb +++ b/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_representer.rb b/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_representer.rb index ec01ec4401..8156b5d265 100644 --- a/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/schemas/time_entry_schema_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entries_activity_api.rb b/modules/costs/lib/api/v3/time_entries/time_entries_activity_api.rb index 6a3e1fd758..0f25b5b13c 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entries_activity_api.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entries_activity_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entries_activity_representer.rb b/modules/costs/lib/api/v3/time_entries/time_entries_activity_representer.rb index 1c70a1b89e..265f7be292 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entries_activity_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entries_activity_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entries_api.rb b/modules/costs/lib/api/v3/time_entries/time_entries_api.rb index eec3cc5b1d..eb90c6d7a4 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entries_api.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entries_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entry_collection_representer.rb b/modules/costs/lib/api/v3/time_entries/time_entry_collection_representer.rb index f69a426508..2aa5e5124c 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entry_collection_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entry_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entry_payload_representer.rb b/modules/costs/lib/api/v3/time_entries/time_entry_payload_representer.rb index 34dea70ad6..fd90f11acf 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entry_payload_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entry_payload_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/time_entry_representer.rb b/modules/costs/lib/api/v3/time_entries/time_entry_representer.rb index ca9d519c1a..e4e7f569d1 100644 --- a/modules/costs/lib/api/v3/time_entries/time_entry_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/time_entry_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/update_form_api.rb b/modules/costs/lib/api/v3/time_entries/update_form_api.rb index a65a0a0140..744a6b28b3 100644 --- a/modules/costs/lib/api/v3/time_entries/update_form_api.rb +++ b/modules/costs/lib/api/v3/time_entries/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/api/v3/time_entries/update_form_representer.rb b/modules/costs/lib/api/v3/time_entries/update_form_representer.rb index 966bbd0d62..e9cc8a23ea 100644 --- a/modules/costs/lib/api/v3/time_entries/update_form_representer.rb +++ b/modules/costs/lib/api/v3/time_entries/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs.rb b/modules/costs/lib/costs.rb index 08d615f095..e7e11830cc 100644 --- a/modules/costs/lib/costs.rb +++ b/modules/costs/lib/costs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/attributes_helper.rb b/modules/costs/lib/costs/attributes_helper.rb index 518731c683..e0c36b3090 100644 --- a/modules/costs/lib/costs/attributes_helper.rb +++ b/modules/costs/lib/costs/attributes_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/deleted_user_fallback.rb b/modules/costs/lib/costs/deleted_user_fallback.rb index 3b99574dd5..686e564ba3 100644 --- a/modules/costs/lib/costs/deleted_user_fallback.rb +++ b/modules/costs/lib/costs/deleted_user_fallback.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/engine.rb b/modules/costs/lib/costs/engine.rb index e4d62577e0..e578029e69 100644 --- a/modules/costs/lib/costs/engine.rb +++ b/modules/costs/lib/costs/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches.rb b/modules/costs/lib/costs/patches.rb index e9af30bc25..5b1fed617a 100644 --- a/modules/costs/lib/costs/patches.rb +++ b/modules/costs/lib/costs/patches.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/members_patch.rb b/modules/costs/lib/costs/patches/members_patch.rb index 2daf31861b..fdd981db14 100644 --- a/modules/costs/lib/costs/patches/members_patch.rb +++ b/modules/costs/lib/costs/patches/members_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/number_to_currency_converter_patch.rb b/modules/costs/lib/costs/patches/number_to_currency_converter_patch.rb index 9d73465553..139aacf63a 100644 --- a/modules/costs/lib/costs/patches/number_to_currency_converter_patch.rb +++ b/modules/costs/lib/costs/patches/number_to_currency_converter_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/permitted_params_patch.rb b/modules/costs/lib/costs/patches/permitted_params_patch.rb index d87e054224..ef5ff492be 100644 --- a/modules/costs/lib/costs/patches/permitted_params_patch.rb +++ b/modules/costs/lib/costs/patches/permitted_params_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/project_patch.rb b/modules/costs/lib/costs/patches/project_patch.rb index af199ba582..6eb38388ef 100644 --- a/modules/costs/lib/costs/patches/project_patch.rb +++ b/modules/costs/lib/costs/patches/project_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/projects_controller_patch.rb b/modules/costs/lib/costs/patches/projects_controller_patch.rb index 276934ff16..123eb2e25b 100644 --- a/modules/costs/lib/costs/patches/projects_controller_patch.rb +++ b/modules/costs/lib/costs/patches/projects_controller_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/role_seeder_patch.rb b/modules/costs/lib/costs/patches/role_seeder_patch.rb index 99de6f2f2f..6086a866d8 100644 --- a/modules/costs/lib/costs/patches/role_seeder_patch.rb +++ b/modules/costs/lib/costs/patches/role_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/setting_seeder_patch.rb b/modules/costs/lib/costs/patches/setting_seeder_patch.rb index 65df22dacc..413c2c19c6 100644 --- a/modules/costs/lib/costs/patches/setting_seeder_patch.rb +++ b/modules/costs/lib/costs/patches/setting_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/patches/user_patch.rb b/modules/costs/lib/costs/patches/user_patch.rb index 89fb8af4ed..df768d8011 100644 --- a/modules/costs/lib/costs/patches/user_patch.rb +++ b/modules/costs/lib/costs/patches/user_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/lib/costs/query_currency_column.rb b/modules/costs/lib/costs/query_currency_column.rb index 6114795325..11c2eb1187 100644 --- a/modules/costs/lib/costs/query_currency_column.rb +++ b/modules/costs/lib/costs/query_currency_column.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/contracts/time_entries/create_contract_spec.rb b/modules/costs/spec/contracts/time_entries/create_contract_spec.rb index f124b4790a..228eb2966d 100644 --- a/modules/costs/spec/contracts/time_entries/create_contract_spec.rb +++ b/modules/costs/spec/contracts/time_entries/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/contracts/time_entries/delete_contract_spec.rb b/modules/costs/spec/contracts/time_entries/delete_contract_spec.rb index 56648173d6..3fd1167910 100644 --- a/modules/costs/spec/contracts/time_entries/delete_contract_spec.rb +++ b/modules/costs/spec/contracts/time_entries/delete_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/contracts/time_entries/shared_contract_examples.rb b/modules/costs/spec/contracts/time_entries/shared_contract_examples.rb index 05df03d185..a3fb0e0f02 100644 --- a/modules/costs/spec/contracts/time_entries/shared_contract_examples.rb +++ b/modules/costs/spec/contracts/time_entries/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/contracts/time_entries/update_contract_spec.rb b/modules/costs/spec/contracts/time_entries/update_contract_spec.rb index 97944da4cf..99ed84fba9 100644 --- a/modules/costs/spec/contracts/time_entries/update_contract_spec.rb +++ b/modules/costs/spec/contracts/time_entries/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/controllers/cost_types_controller_spec.rb b/modules/costs/spec/controllers/cost_types_controller_spec.rb index a45076cd16..32ec37822d 100644 --- a/modules/costs/spec/controllers/cost_types_controller_spec.rb +++ b/modules/costs/spec/controllers/cost_types_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/controllers/costlog_controller_spec.rb b/modules/costs/spec/controllers/costlog_controller_spec.rb index 311b7f636e..a8b51de0e7 100644 --- a/modules/costs/spec/controllers/costlog_controller_spec.rb +++ b/modules/costs/spec/controllers/costlog_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/controllers/hourly_rates_controller_spec.rb b/modules/costs/spec/controllers/hourly_rates_controller_spec.rb index 759bc33472..92818e5f5d 100644 --- a/modules/costs/spec/controllers/hourly_rates_controller_spec.rb +++ b/modules/costs/spec/controllers/hourly_rates_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/controllers/work_packages_bulk_controller_spec.rb b/modules/costs/spec/controllers/work_packages_bulk_controller_spec.rb index 12b000c06e..797cd7e206 100644 --- a/modules/costs/spec/controllers/work_packages_bulk_controller_spec.rb +++ b/modules/costs/spec/controllers/work_packages_bulk_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/cost_entry_factory.rb b/modules/costs/spec/factories/cost_entry_factory.rb index cf69e21b3c..0b0f4f947a 100644 --- a/modules/costs/spec/factories/cost_entry_factory.rb +++ b/modules/costs/spec/factories/cost_entry_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/cost_rate_factory.rb b/modules/costs/spec/factories/cost_rate_factory.rb index e9e67d8e99..1543d9bb2b 100644 --- a/modules/costs/spec/factories/cost_rate_factory.rb +++ b/modules/costs/spec/factories/cost_rate_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/cost_type_factory.rb b/modules/costs/spec/factories/cost_type_factory.rb index 197e89bebf..2322a98d60 100644 --- a/modules/costs/spec/factories/cost_type_factory.rb +++ b/modules/costs/spec/factories/cost_type_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/default_hourly_rate_factory.rb b/modules/costs/spec/factories/default_hourly_rate_factory.rb index 2c5a5729f2..4b34264b4a 100644 --- a/modules/costs/spec/factories/default_hourly_rate_factory.rb +++ b/modules/costs/spec/factories/default_hourly_rate_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/hourly_rate_factory.rb b/modules/costs/spec/factories/hourly_rate_factory.rb index 07162034c9..ccd1fd28b4 100644 --- a/modules/costs/spec/factories/hourly_rate_factory.rb +++ b/modules/costs/spec/factories/hourly_rate_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/journal/budget_journal_factory.rb b/modules/costs/spec/factories/journal/budget_journal_factory.rb index 55c7dc19db..1fbc91e189 100644 --- a/modules/costs/spec/factories/journal/budget_journal_factory.rb +++ b/modules/costs/spec/factories/journal/budget_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/journal/time_entry_journal_factory.rb b/modules/costs/spec/factories/journal/time_entry_journal_factory.rb index a95a093edb..9c13d00994 100644 --- a/modules/costs/spec/factories/journal/time_entry_journal_factory.rb +++ b/modules/costs/spec/factories/journal/time_entry_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/rate_factory.rb b/modules/costs/spec/factories/rate_factory.rb index 4e04330b68..cbad63d0fb 100644 --- a/modules/costs/spec/factories/rate_factory.rb +++ b/modules/costs/spec/factories/rate_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/time_entry_activity_factory.rb b/modules/costs/spec/factories/time_entry_activity_factory.rb index 33ce1b19db..746384b57b 100644 --- a/modules/costs/spec/factories/time_entry_activity_factory.rb +++ b/modules/costs/spec/factories/time_entry_activity_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/factories/time_entry_factory.rb b/modules/costs/spec/factories/time_entry_factory.rb index 8e4d830990..485b653bcd 100644 --- a/modules/costs/spec/factories/time_entry_factory.rb +++ b/modules/costs/spec/factories/time_entry_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/cost_entries/add_cost_entry_spec.rb b/modules/costs/spec/features/cost_entries/add_cost_entry_spec.rb index ffb68d7906..ac1745fbfa 100644 --- a/modules/costs/spec/features/cost_entries/add_cost_entry_spec.rb +++ b/modules/costs/spec/features/cost_entries/add_cost_entry_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/cost_entries/add_entry_without_rate_permission_spec.rb b/modules/costs/spec/features/cost_entries/add_entry_without_rate_permission_spec.rb index 9ff9cc5372..3fa2e3f81b 100644 --- a/modules/costs/spec/features/cost_entries/add_entry_without_rate_permission_spec.rb +++ b/modules/costs/spec/features/cost_entries/add_entry_without_rate_permission_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/cost_types/create_cost_type_spec.rb b/modules/costs/spec/features/cost_types/create_cost_type_spec.rb index 1a040f6c5a..92801c41ee 100644 --- a/modules/costs/spec/features/cost_types/create_cost_type_spec.rb +++ b/modules/costs/spec/features/cost_types/create_cost_type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/cost_types/delete_cost_type_spec.rb b/modules/costs/spec/features/cost_types/delete_cost_type_spec.rb index 5678af0cef..4f0bde7e9e 100644 --- a/modules/costs/spec/features/cost_types/delete_cost_type_spec.rb +++ b/modules/costs/spec/features/cost_types/delete_cost_type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/destroy_work_package_with_cost_entries_spec.rb b/modules/costs/spec/features/destroy_work_package_with_cost_entries_spec.rb index f0445a0df4..0bb45e1e2f 100644 --- a/modules/costs/spec/features/destroy_work_package_with_cost_entries_spec.rb +++ b/modules/costs/spec/features/destroy_work_package_with_cost_entries_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/members_hourly_rates_spec.rb b/modules/costs/spec/features/members_hourly_rates_spec.rb index a63c0de6c4..5359703794 100644 --- a/modules/costs/spec/features/members_hourly_rates_spec.rb +++ b/modules/costs/spec/features/members_hourly_rates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/time_entries_spec.rb b/modules/costs/spec/features/time_entries_spec.rb index 4a1ee9b398..f0fa286fc6 100644 --- a/modules/costs/spec/features/time_entries_spec.rb +++ b/modules/costs/spec/features/time_entries_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/time_entry/activity_spec.rb b/modules/costs/spec/features/time_entry/activity_spec.rb index b33bc2a349..d8d449249d 100644 --- a/modules/costs/spec/features/time_entry/activity_spec.rb +++ b/modules/costs/spec/features/time_entry/activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/users_hourly_rates_spec.rb b/modules/costs/spec/features/users_hourly_rates_spec.rb index ef15f5f6e3..d3eeff2a9f 100644 --- a/modules/costs/spec/features/users_hourly_rates_spec.rb +++ b/modules/costs/spec/features/users_hourly_rates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/features/view_own_rates_spec.rb b/modules/costs/spec/features/view_own_rates_spec.rb index 031c98e66e..10c36251f1 100644 --- a/modules/costs/spec/features/view_own_rates_spec.rb +++ b/modules/costs/spec/features/view_own_rates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/helpers/costs/number_helper_spec.rb b/modules/costs/spec/helpers/costs/number_helper_spec.rb index 9f07d7841e..6777021367 100644 --- a/modules/costs/spec/helpers/costs/number_helper_spec.rb +++ b/modules/costs/spec/helpers/costs/number_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/cost_entries/aggregated_cost_entry_representer_spec.rb b/modules/costs/spec/lib/api/v3/cost_entries/aggregated_cost_entry_representer_spec.rb index 3bd2ff5785..5357165947 100644 --- a/modules/costs/spec/lib/api/v3/cost_entries/aggregated_cost_entry_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/cost_entries/aggregated_cost_entry_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/cost_entries/cost_entry_representer_spec.rb b/modules/costs/spec/lib/api/v3/cost_entries/cost_entry_representer_spec.rb index 25375f9b35..d96165eb94 100644 --- a/modules/costs/spec/lib/api/v3/cost_entries/cost_entry_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/cost_entries/cost_entry_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/cost_entries/work_package_costs_by_type_representer_spec.rb b/modules/costs/spec/lib/api/v3/cost_entries/work_package_costs_by_type_representer_spec.rb index 721c66d9b0..b14f578de3 100644 --- a/modules/costs/spec/lib/api/v3/cost_entries/work_package_costs_by_type_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/cost_entries/work_package_costs_by_type_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/cost_types/cost_type_representer_spec.rb b/modules/costs/spec/lib/api/v3/cost_types/cost_type_representer_spec.rb index b224d316ec..2b73312c40 100644 --- a/modules/costs/spec/lib/api/v3/cost_types/cost_type_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/cost_types/cost_type_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/costs_api_user_permission_check_spec.rb b/modules/costs/spec/lib/api/v3/costs_api_user_permission_check_spec.rb index d4e49e6583..711f8a5619 100644 --- a/modules/costs/spec/lib/api/v3/costs_api_user_permission_check_spec.rb +++ b/modules/costs/spec/lib/api/v3/costs_api_user_permission_check_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/path_helper_spec.rb b/modules/costs/spec/lib/api/v3/path_helper_spec.rb index e556df977c..1453b8f291 100644 --- a/modules/costs/spec/lib/api/v3/path_helper_spec.rb +++ b/modules/costs/spec/lib/api/v3/path_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/time_entries/schemas/time_entry_schema_representer_spec.rb b/modules/costs/spec/lib/api/v3/time_entries/schemas/time_entry_schema_representer_spec.rb index 842331d44b..00ddf43d64 100644 --- a/modules/costs/spec/lib/api/v3/time_entries/schemas/time_entry_schema_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/time_entries/schemas/time_entry_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/time_entries/time_entries_activity_representer_rendering_spec.rb b/modules/costs/spec/lib/api/v3/time_entries/time_entries_activity_representer_rendering_spec.rb index 3304ed59be..1aedba5cd2 100644 --- a/modules/costs/spec/lib/api/v3/time_entries/time_entries_activity_representer_rendering_spec.rb +++ b/modules/costs/spec/lib/api/v3/time_entries/time_entries_activity_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_parsing_spec.rb b/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_parsing_spec.rb index 9cb71cbe80..6567d819e1 100644 --- a/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_parsing_spec.rb +++ b/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_rendering_spec.rb b/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_rendering_spec.rb index 8bf45d49ea..f43d119be2 100644 --- a/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_rendering_spec.rb +++ b/modules/costs/spec/lib/api/v3/time_entries/time_entry_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/work_packages/work_package_representer_spec.rb b/modules/costs/spec/lib/api/v3/work_packages/work_package_representer_spec.rb index ecce893d8f..50ad8fbec3 100644 --- a/modules/costs/spec/lib/api/v3/work_packages/work_package_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/work_packages/work_package_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/api/v3/work_packages/work_package_schema_representer_spec.rb b/modules/costs/spec/lib/api/v3/work_packages/work_package_schema_representer_spec.rb index d29b576c0f..f7f759d434 100644 --- a/modules/costs/spec/lib/api/v3/work_packages/work_package_schema_representer_spec.rb +++ b/modules/costs/spec/lib/api/v3/work_packages/work_package_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/costs/query_currency_column_spec.rb b/modules/costs/spec/lib/costs/query_currency_column_spec.rb index 7fcc85bc85..a9e93cd0f2 100644 --- a/modules/costs/spec/lib/costs/query_currency_column_spec.rb +++ b/modules/costs/spec/lib/costs/query_currency_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/lib/open_project/costs/default_data_spec.rb b/modules/costs/spec/lib/open_project/costs/default_data_spec.rb index 1af3e3d8ec..bdff6da32e 100644 --- a/modules/costs/spec/lib/open_project/costs/default_data_spec.rb +++ b/modules/costs/spec/lib/open_project/costs/default_data_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/cost_entry_spec.rb b/modules/costs/spec/models/cost_entry_spec.rb index 1bb52a282b..31841b2724 100644 --- a/modules/costs/spec/models/cost_entry_spec.rb +++ b/modules/costs/spec/models/cost_entry_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/cost_type_spec.rb b/modules/costs/spec/models/cost_type_spec.rb index 85d0fb5e9f..d4d197e693 100644 --- a/modules/costs/spec/models/cost_type_spec.rb +++ b/modules/costs/spec/models/cost_type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/default_hourly_rate_spec.rb b/modules/costs/spec/models/default_hourly_rate_spec.rb index e1211fcd96..7becf8e7c7 100644 --- a/modules/costs/spec/models/default_hourly_rate_spec.rb +++ b/modules/costs/spec/models/default_hourly_rate_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/hourly_rate_spec.rb b/modules/costs/spec/models/hourly_rate_spec.rb index 45bae25700..4f37f56bf9 100644 --- a/modules/costs/spec/models/hourly_rate_spec.rb +++ b/modules/costs/spec/models/hourly_rate_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/permitted_params_spec.rb b/modules/costs/spec/models/permitted_params_spec.rb index f8d03228a2..faa48bb2bf 100644 --- a/modules/costs/spec/models/permitted_params_spec.rb +++ b/modules/costs/spec/models/permitted_params_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/project/activity_spec.rb b/modules/costs/spec/models/project/activity_spec.rb index f9b66ecbf2..fee49e0b66 100644 --- a/modules/costs/spec/models/project/activity_spec.rb +++ b/modules/costs/spec/models/project/activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/projects/scopes/activated_time_activity_spec.rb b/modules/costs/spec/models/projects/scopes/activated_time_activity_spec.rb index d87af0efd4..35637420de 100644 --- a/modules/costs/spec/models/projects/scopes/activated_time_activity_spec.rb +++ b/modules/costs/spec/models/projects/scopes/activated_time_activity_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/projects/scopes/visible_with_activated_time_activity_spec.rb b/modules/costs/spec/models/projects/scopes/visible_with_activated_time_activity_spec.rb index 69d050a2c7..0861894099 100644 --- a/modules/costs/spec/models/projects/scopes/visible_with_activated_time_activity_spec.rb +++ b/modules/costs/spec/models/projects/scopes/visible_with_activated_time_activity_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/activity_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/activity_filter_spec.rb index a98727e63e..7e88f0a2dd 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/activity_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/activity_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/created_at_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/created_at_filter_spec.rb index 0e78691e28..f30a4e5099 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/created_at_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/created_at_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/project_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/project_filter_spec.rb index a606b8e412..93e4a4f337 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/project_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/project_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/spent_on_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/spent_on_filter_spec.rb index 7e0c8bd35c..8e6008f5d4 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/spent_on_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/spent_on_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/updated_at_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/updated_at_filter_spec.rb index 4fe139f7c4..2cf65ab74b 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/updated_at_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/updated_at_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/user_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/user_filter_spec.rb index a674580bdf..0803fd2c39 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/user_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/user_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/filters/work_package_filter_spec.rb b/modules/costs/spec/models/queries/time_entries/filters/work_package_filter_spec.rb index 6b5d0c699c..9cab061fe1 100644 --- a/modules/costs/spec/models/queries/time_entries/filters/work_package_filter_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/filters/work_package_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/queries/time_entries/time_entry_query_spec.rb b/modules/costs/spec/models/queries/time_entries/time_entry_query_spec.rb index 0f52ad26bb..b90d68058c 100644 --- a/modules/costs/spec/models/queries/time_entries/time_entry_query_spec.rb +++ b/modules/costs/spec/models/queries/time_entries/time_entry_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/rate_spec.rb b/modules/costs/spec/models/rate_spec.rb index ce743ffe00..4aff1980d0 100644 --- a/modules/costs/spec/models/rate_spec.rb +++ b/modules/costs/spec/models/rate_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/time_entries/scopes/of_user_and_day_spec.rb b/modules/costs/spec/models/time_entries/scopes/of_user_and_day_spec.rb index 1d589e0992..2ac0aabe5a 100644 --- a/modules/costs/spec/models/time_entries/scopes/of_user_and_day_spec.rb +++ b/modules/costs/spec/models/time_entries/scopes/of_user_and_day_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/time_entries/scopes/visible_spec.rb b/modules/costs/spec/models/time_entries/scopes/visible_spec.rb index d8c9bcb8ee..5e0839bee7 100644 --- a/modules/costs/spec/models/time_entries/scopes/visible_spec.rb +++ b/modules/costs/spec/models/time_entries/scopes/visible_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/time_entry_activities/scopes/active_in_project_spec.rb b/modules/costs/spec/models/time_entry_activities/scopes/active_in_project_spec.rb index 011421e026..31e888ea40 100644 --- a/modules/costs/spec/models/time_entry_activities/scopes/active_in_project_spec.rb +++ b/modules/costs/spec/models/time_entry_activities/scopes/active_in_project_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/time_entry_activity_spec.rb b/modules/costs/spec/models/time_entry_activity_spec.rb index f8f3c41f61..e301fb2fa7 100644 --- a/modules/costs/spec/models/time_entry_activity_spec.rb +++ b/modules/costs/spec/models/time_entry_activity_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/time_entry_spec.rb b/modules/costs/spec/models/time_entry_spec.rb index cc6a99bfeb..943495714f 100644 --- a/modules/costs/spec/models/time_entry_spec.rb +++ b/modules/costs/spec/models/time_entry_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/user_spec.rb b/modules/costs/spec/models/user_spec.rb index 6fb04c7549..f402fda85f 100644 --- a/modules/costs/spec/models/user_spec.rb +++ b/modules/costs/spec/models/user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/work_package/ask_before_destruction_spec.rb b/modules/costs/spec/models/work_package/ask_before_destruction_spec.rb index 84a1f527a5..2ea0fc0f12 100644 --- a/modules/costs/spec/models/work_package/ask_before_destruction_spec.rb +++ b/modules/costs/spec/models/work_package/ask_before_destruction_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/models/work_package_spec.rb b/modules/costs/spec/models/work_package_spec.rb index a192e2d37d..6e428af1f3 100644 --- a/modules/costs/spec/models/work_package_spec.rb +++ b/modules/costs/spec/models/work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/plugin_spec_helper.rb b/modules/costs/spec/plugin_spec_helper.rb index c7d107b696..5d925237f4 100644 --- a/modules/costs/spec/plugin_spec_helper.rb +++ b/modules/costs/spec/plugin_spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/attachments/attachments_by_budget_resource_spec.rb b/modules/costs/spec/requests/api/attachments/attachments_by_budget_resource_spec.rb index 6fb4321ce0..0076f62ae9 100644 --- a/modules/costs/spec/requests/api/attachments/attachments_by_budget_resource_spec.rb +++ b/modules/costs/spec/requests/api/attachments/attachments_by_budget_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/cost_entries/cost_entries_by_work_package_resource_spec.rb b/modules/costs/spec/requests/api/cost_entries/cost_entries_by_work_package_resource_spec.rb index fa9713ace8..12b485ce11 100644 --- a/modules/costs/spec/requests/api/cost_entries/cost_entries_by_work_package_resource_spec.rb +++ b/modules/costs/spec/requests/api/cost_entries/cost_entries_by_work_package_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/cost_entries/cost_entry_resource_spec.rb b/modules/costs/spec/requests/api/cost_entries/cost_entry_resource_spec.rb index f6227a6cd0..4108fcba16 100644 --- a/modules/costs/spec/requests/api/cost_entries/cost_entry_resource_spec.rb +++ b/modules/costs/spec/requests/api/cost_entries/cost_entry_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/cost_types/cost_type_resource_spec.rb b/modules/costs/spec/requests/api/cost_types/cost_type_resource_spec.rb index c1f16f551b..bfe946df29 100644 --- a/modules/costs/spec/requests/api/cost_types/cost_type_resource_spec.rb +++ b/modules/costs/spec/requests/api/cost_types/cost_type_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/time_entries/available_projects_resource_spec.rb b/modules/costs/spec/requests/api/time_entries/available_projects_resource_spec.rb index 828a999dd1..1a966fbdfa 100644 --- a/modules/costs/spec/requests/api/time_entries/available_projects_resource_spec.rb +++ b/modules/costs/spec/requests/api/time_entries/available_projects_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/time_entries/schemas/time_entry_schema_resource_spec.rb b/modules/costs/spec/requests/api/time_entries/schemas/time_entry_schema_resource_spec.rb index d6d450594c..4fb040e839 100644 --- a/modules/costs/spec/requests/api/time_entries/schemas/time_entry_schema_resource_spec.rb +++ b/modules/costs/spec/requests/api/time_entries/schemas/time_entry_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/time_entry_activity_resource_spec.rb b/modules/costs/spec/requests/api/time_entry_activity_resource_spec.rb index 0098b21471..b47105f1a0 100644 --- a/modules/costs/spec/requests/api/time_entry_activity_resource_spec.rb +++ b/modules/costs/spec/requests/api/time_entry_activity_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/requests/api/time_entry_resource_spec.rb b/modules/costs/spec/requests/api/time_entry_resource_spec.rb index da61482143..68a7f07b2a 100644 --- a/modules/costs/spec/requests/api/time_entry_resource_spec.rb +++ b/modules/costs/spec/requests/api/time_entry_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/routing/cost_objects_routing_spec.rb b/modules/costs/spec/routing/cost_objects_routing_spec.rb index 8db77bd38c..1fe496eaa0 100644 --- a/modules/costs/spec/routing/cost_objects_routing_spec.rb +++ b/modules/costs/spec/routing/cost_objects_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/routing/cost_types_routing_spec.rb b/modules/costs/spec/routing/cost_types_routing_spec.rb index 6394eab942..2b9b64cd91 100644 --- a/modules/costs/spec/routing/cost_types_routing_spec.rb +++ b/modules/costs/spec/routing/cost_types_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/routing/costlog_routing_spec.rb b/modules/costs/spec/routing/costlog_routing_spec.rb index 02034033b0..560079e55f 100644 --- a/modules/costs/spec/routing/costlog_routing_spec.rb +++ b/modules/costs/spec/routing/costlog_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/routing/hourly_rates_routing_spec.rb b/modules/costs/spec/routing/hourly_rates_routing_spec.rb index 48850d1fa2..c337ff3ac5 100644 --- a/modules/costs/spec/routing/hourly_rates_routing_spec.rb +++ b/modules/costs/spec/routing/hourly_rates_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/services/time_entries/set_attributes_service_spec.rb b/modules/costs/spec/services/time_entries/set_attributes_service_spec.rb index a7ddd4f676..6c1fb32b76 100644 --- a/modules/costs/spec/services/time_entries/set_attributes_service_spec.rb +++ b/modules/costs/spec/services/time_entries/set_attributes_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/costs/spec/spec_helper.rb b/modules/costs/spec/spec_helper.rb index 3e9a23ae59..b0cdf6bc13 100644 --- a/modules/costs/spec/spec_helper.rb +++ b/modules/costs/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/app/models/grids/dashboard.rb b/modules/dashboards/app/models/grids/dashboard.rb index d002b1a341..a549b818fe 100644 --- a/modules/dashboards/app/models/grids/dashboard.rb +++ b/modules/dashboards/app/models/grids/dashboard.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/contracts/grids/create_contract_spec.rb b/modules/dashboards/spec/contracts/grids/create_contract_spec.rb index 0827e5dd42..83cafe1afe 100644 --- a/modules/dashboards/spec/contracts/grids/create_contract_spec.rb +++ b/modules/dashboards/spec/contracts/grids/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/contracts/grids/shared_examples.rb b/modules/dashboards/spec/contracts/grids/shared_examples.rb index 42237f694a..e17eeb9b10 100644 --- a/modules/dashboards/spec/contracts/grids/shared_examples.rb +++ b/modules/dashboards/spec/contracts/grids/shared_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/custom_text_spec.rb b/modules/dashboards/spec/features/custom_text_spec.rb index 95bc4bc427..ba2817f439 100644 --- a/modules/dashboards/spec/features/custom_text_spec.rb +++ b/modules/dashboards/spec/features/custom_text_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/docments_spec.rb b/modules/dashboards/spec/features/docments_spec.rb index d2ec96c8ad..85ad8385a3 100644 --- a/modules/dashboards/spec/features/docments_spec.rb +++ b/modules/dashboards/spec/features/docments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/members_principals_spec.rb b/modules/dashboards/spec/features/members_principals_spec.rb index 77000bc4a6..feefb6ff3c 100644 --- a/modules/dashboards/spec/features/members_principals_spec.rb +++ b/modules/dashboards/spec/features/members_principals_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/members_spec.rb b/modules/dashboards/spec/features/members_spec.rb index e3ebbfcf1c..dd3e5a87f3 100644 --- a/modules/dashboards/spec/features/members_spec.rb +++ b/modules/dashboards/spec/features/members_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/modifying_with_unallowed_spec.rb b/modules/dashboards/spec/features/modifying_with_unallowed_spec.rb index 244c6ba6cf..c3ed6bdf8d 100644 --- a/modules/dashboards/spec/features/modifying_with_unallowed_spec.rb +++ b/modules/dashboards/spec/features/modifying_with_unallowed_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/navigation_spec.rb b/modules/dashboards/spec/features/navigation_spec.rb index 54138e5822..b2439dd249 100644 --- a/modules/dashboards/spec/features/navigation_spec.rb +++ b/modules/dashboards/spec/features/navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/news_spec.rb b/modules/dashboards/spec/features/news_spec.rb index a5f98ae4dc..1225b3550d 100644 --- a/modules/dashboards/spec/features/news_spec.rb +++ b/modules/dashboards/spec/features/news_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/project_description_spec.rb b/modules/dashboards/spec/features/project_description_spec.rb index 6264d6cecf..25987c5e7b 100644 --- a/modules/dashboards/spec/features/project_description_spec.rb +++ b/modules/dashboards/spec/features/project_description_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/project_details_spec.rb b/modules/dashboards/spec/features/project_details_spec.rb index 514209970f..fa311eecd4 100644 --- a/modules/dashboards/spec/features/project_details_spec.rb +++ b/modules/dashboards/spec/features/project_details_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/project_status_spec.rb b/modules/dashboards/spec/features/project_status_spec.rb index 85dd7b5a30..78e80d1536 100644 --- a/modules/dashboards/spec/features/project_status_spec.rb +++ b/modules/dashboards/spec/features/project_status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/read_only_allowed_spec.rb b/modules/dashboards/spec/features/read_only_allowed_spec.rb index 1de591976c..b20ff5392a 100644 --- a/modules/dashboards/spec/features/read_only_allowed_spec.rb +++ b/modules/dashboards/spec/features/read_only_allowed_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/subprojects_spec.rb b/modules/dashboards/spec/features/subprojects_spec.rb index 5ddc672909..2d9b52a494 100644 --- a/modules/dashboards/spec/features/subprojects_spec.rb +++ b/modules/dashboards/spec/features/subprojects_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/time_entries_spec.rb b/modules/dashboards/spec/features/time_entries_spec.rb index b06ea5e60c..243952381f 100644 --- a/modules/dashboards/spec/features/time_entries_spec.rb +++ b/modules/dashboards/spec/features/time_entries_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/work_package_calendar_spec.rb b/modules/dashboards/spec/features/work_package_calendar_spec.rb index 8acd10f586..6a3dc9da5a 100644 --- a/modules/dashboards/spec/features/work_package_calendar_spec.rb +++ b/modules/dashboards/spec/features/work_package_calendar_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/work_package_graph_overview_spec.rb b/modules/dashboards/spec/features/work_package_graph_overview_spec.rb index 165b80919b..34f57b8e5f 100644 --- a/modules/dashboards/spec/features/work_package_graph_overview_spec.rb +++ b/modules/dashboards/spec/features/work_package_graph_overview_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/work_package_graph_spec.rb b/modules/dashboards/spec/features/work_package_graph_spec.rb index 74ea7883d0..8e8d500a57 100644 --- a/modules/dashboards/spec/features/work_package_graph_spec.rb +++ b/modules/dashboards/spec/features/work_package_graph_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/features/work_package_table_spec.rb b/modules/dashboards/spec/features/work_package_table_spec.rb index 6c589dab30..a7b23341aa 100644 --- a/modules/dashboards/spec/features/work_package_table_spec.rb +++ b/modules/dashboards/spec/features/work_package_table_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/requests/api/v3/attachments/grid_spec.rb b/modules/dashboards/spec/requests/api/v3/attachments/grid_spec.rb index a60244d016..d07ac5c7bd 100644 --- a/modules/dashboards/spec/requests/api/v3/attachments/grid_spec.rb +++ b/modules/dashboards/spec/requests/api/v3/attachments/grid_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb b/modules/dashboards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb index c3ec6b0d4e..5738d17201 100644 --- a/modules/dashboards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb +++ b/modules/dashboards/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/requests/api/v3/grids/grids_resource_spec.rb b/modules/dashboards/spec/requests/api/v3/grids/grids_resource_spec.rb index 43d5ae0e19..2f41930f80 100644 --- a/modules/dashboards/spec/requests/api/v3/grids/grids_resource_spec.rb +++ b/modules/dashboards/spec/requests/api/v3/grids/grids_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/dashboards/spec/support/pages/dashboard.rb b/modules/dashboards/spec/support/pages/dashboard.rb index da8626f548..eff53daabb 100644 --- a/modules/dashboards/spec/support/pages/dashboard.rb +++ b/modules/dashboards/spec/support/pages/dashboard.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/contracts/documents/base_contract.rb b/modules/documents/app/contracts/documents/base_contract.rb index 28359f61e6..ebc4f201d8 100644 --- a/modules/documents/app/contracts/documents/base_contract.rb +++ b/modules/documents/app/contracts/documents/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/contracts/documents/create_contract.rb b/modules/documents/app/contracts/documents/create_contract.rb index 2ddfddfbcc..03ccb6d763 100644 --- a/modules/documents/app/contracts/documents/create_contract.rb +++ b/modules/documents/app/contracts/documents/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/contracts/documents/update_contract.rb b/modules/documents/app/contracts/documents/update_contract.rb index a51da0bb48..6c82491210 100644 --- a/modules/documents/app/contracts/documents/update_contract.rb +++ b/modules/documents/app/contracts/documents/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/controllers/documents_controller.rb b/modules/documents/app/controllers/documents_controller.rb index 6ae61ced8b..9ad7bf9c9d 100644 --- a/modules/documents/app/controllers/documents_controller.rb +++ b/modules/documents/app/controllers/documents_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/helpers/documents_helper.rb b/modules/documents/app/helpers/documents_helper.rb index 8be014d610..49b7d8463d 100644 --- a/modules/documents/app/helpers/documents_helper.rb +++ b/modules/documents/app/helpers/documents_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/mailers/documents_mailer.rb b/modules/documents/app/mailers/documents_mailer.rb index 91c1ab2a5d..126b99cf28 100644 --- a/modules/documents/app/mailers/documents_mailer.rb +++ b/modules/documents/app/mailers/documents_mailer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/activities/document_activity_provider.rb b/modules/documents/app/models/activities/document_activity_provider.rb index 7c0c7098d7..d21ccbcc87 100644 --- a/modules/documents/app/models/activities/document_activity_provider.rb +++ b/modules/documents/app/models/activities/document_activity_provider.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/document.rb b/modules/documents/app/models/document.rb index 1518f76590..5f1d2ed909 100644 --- a/modules/documents/app/models/document.rb +++ b/modules/documents/app/models/document.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/document_category.rb b/modules/documents/app/models/document_category.rb index e04db9cfe5..0efd5bc399 100644 --- a/modules/documents/app/models/document_category.rb +++ b/modules/documents/app/models/document_category.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/journal/document_journal.rb b/modules/documents/app/models/journal/document_journal.rb index 4ba461bfb0..9ed6ea4a1b 100644 --- a/modules/documents/app/models/journal/document_journal.rb +++ b/modules/documents/app/models/journal/document_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/queries/documents.rb b/modules/documents/app/models/queries/documents.rb index 02912c2e0c..cc3b4d11cb 100644 --- a/modules/documents/app/models/queries/documents.rb +++ b/modules/documents/app/models/queries/documents.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/queries/documents/document_query.rb b/modules/documents/app/models/queries/documents/document_query.rb index 9be1451b91..ddc2663144 100644 --- a/modules/documents/app/models/queries/documents/document_query.rb +++ b/modules/documents/app/models/queries/documents/document_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/queries/documents/filters/document_filter.rb b/modules/documents/app/models/queries/documents/filters/document_filter.rb index db7ee22bc6..080f2bc15b 100644 --- a/modules/documents/app/models/queries/documents/filters/document_filter.rb +++ b/modules/documents/app/models/queries/documents/filters/document_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/queries/documents/filters/project_filter.rb b/modules/documents/app/models/queries/documents/filters/project_filter.rb index 10dae51a3b..e131fb1d67 100644 --- a/modules/documents/app/models/queries/documents/filters/project_filter.rb +++ b/modules/documents/app/models/queries/documents/filters/project_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/models/queries/documents/orders/default_order.rb b/modules/documents/app/models/queries/documents/orders/default_order.rb index b248189643..31a3828e72 100644 --- a/modules/documents/app/models/queries/documents/orders/default_order.rb +++ b/modules/documents/app/models/queries/documents/orders/default_order.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/seeders/basic_data/documents/enumeration_seeder.rb b/modules/documents/app/seeders/basic_data/documents/enumeration_seeder.rb index 4149d53bf0..613b61fdc1 100644 --- a/modules/documents/app/seeders/basic_data/documents/enumeration_seeder.rb +++ b/modules/documents/app/seeders/basic_data/documents/enumeration_seeder.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/services/documents/create_service.rb b/modules/documents/app/services/documents/create_service.rb index 2e57cb404c..b9aea38391 100644 --- a/modules/documents/app/services/documents/create_service.rb +++ b/modules/documents/app/services/documents/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/services/documents/set_attributes_service.rb b/modules/documents/app/services/documents/set_attributes_service.rb index 1d90eb6031..d22b13415f 100644 --- a/modules/documents/app/services/documents/set_attributes_service.rb +++ b/modules/documents/app/services/documents/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/services/documents/update_service.rb b/modules/documents/app/services/documents/update_service.rb index 0a6b692a0c..b59b50071d 100644 --- a/modules/documents/app/services/documents/update_service.rb +++ b/modules/documents/app/services/documents/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/services/notifications/create_from_model_service/document_strategy.rb b/modules/documents/app/services/notifications/create_from_model_service/document_strategy.rb index 7dd846e559..3a784b28ab 100644 --- a/modules/documents/app/services/notifications/create_from_model_service/document_strategy.rb +++ b/modules/documents/app/services/notifications/create_from_model_service/document_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/services/notifications/mail_service/document_strategy.rb b/modules/documents/app/services/notifications/mail_service/document_strategy.rb index 0c4fbc43d9..90808a3964 100644 --- a/modules/documents/app/services/notifications/mail_service/document_strategy.rb +++ b/modules/documents/app/services/notifications/mail_service/document_strategy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/_document.html.erb b/modules/documents/app/views/documents/_document.html.erb index f20d7f0490..154d7b9840 100644 --- a/modules/documents/app/views/documents/_document.html.erb +++ b/modules/documents/app/views/documents/_document.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/_form.html.erb b/modules/documents/app/views/documents/_form.html.erb index 5b58ad5826..5012274c22 100644 --- a/modules/documents/app/views/documents/_form.html.erb +++ b/modules/documents/app/views/documents/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/edit.html.erb b/modules/documents/app/views/documents/edit.html.erb index 1be95d8d83..43fa951ca7 100644 --- a/modules/documents/app/views/documents/edit.html.erb +++ b/modules/documents/app/views/documents/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/index.html.erb b/modules/documents/app/views/documents/index.html.erb index 5c44c75a1a..529c749f19 100644 --- a/modules/documents/app/views/documents/index.html.erb +++ b/modules/documents/app/views/documents/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/new.html.erb b/modules/documents/app/views/documents/new.html.erb index 59d1ecad1c..429cdd04c7 100644 --- a/modules/documents/app/views/documents/new.html.erb +++ b/modules/documents/app/views/documents/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents/show.html.erb b/modules/documents/app/views/documents/show.html.erb index d502538a51..8b3e02faae 100644 --- a/modules/documents/app/views/documents/show.html.erb +++ b/modules/documents/app/views/documents/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents_mailer/document_added.html.erb b/modules/documents/app/views/documents_mailer/document_added.html.erb index 106505222e..6adbe69ddd 100644 --- a/modules/documents/app/views/documents_mailer/document_added.html.erb +++ b/modules/documents/app/views/documents_mailer/document_added.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/documents_mailer/document_added.text.erb b/modules/documents/app/views/documents_mailer/document_added.text.erb index 18dff5db01..8e9f6a172e 100644 --- a/modules/documents/app/views/documents_mailer/document_added.text.erb +++ b/modules/documents/app/views/documents_mailer/document_added.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/app/views/help/wiki_syntax_detailed.html.erb b/modules/documents/app/views/help/wiki_syntax_detailed.html.erb index 0438c05d91..16fa980946 100644 --- a/modules/documents/app/views/help/wiki_syntax_detailed.html.erb +++ b/modules/documents/app/views/help/wiki_syntax_detailed.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/config/locales/crowdin/af.yml b/modules/documents/config/locales/crowdin/af.yml index dfee6267d9..d0d202e724 100644 --- a/modules/documents/config/locales/crowdin/af.yml +++ b/modules/documents/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ar.yml b/modules/documents/config/locales/crowdin/ar.yml index 7070dc663d..c88ab95232 100644 --- a/modules/documents/config/locales/crowdin/ar.yml +++ b/modules/documents/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/az.yml b/modules/documents/config/locales/crowdin/az.yml index 59a5e99afe..d78937695d 100644 --- a/modules/documents/config/locales/crowdin/az.yml +++ b/modules/documents/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/bg.yml b/modules/documents/config/locales/crowdin/bg.yml index 6b3dc15c9a..7fb1ba8a32 100644 --- a/modules/documents/config/locales/crowdin/bg.yml +++ b/modules/documents/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ca.yml b/modules/documents/config/locales/crowdin/ca.yml index 9b39dec13e..83724b0568 100644 --- a/modules/documents/config/locales/crowdin/ca.yml +++ b/modules/documents/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/cs.yml b/modules/documents/config/locales/crowdin/cs.yml index a85f7dea71..35ed5193a5 100644 --- a/modules/documents/config/locales/crowdin/cs.yml +++ b/modules/documents/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/da.yml b/modules/documents/config/locales/crowdin/da.yml index 5643392d57..b1d61fb57b 100644 --- a/modules/documents/config/locales/crowdin/da.yml +++ b/modules/documents/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/de.yml b/modules/documents/config/locales/crowdin/de.yml index c07e6d6d2e..5e7a5ba044 100644 --- a/modules/documents/config/locales/crowdin/de.yml +++ b/modules/documents/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/el.yml b/modules/documents/config/locales/crowdin/el.yml index f49383d101..f2836c2e97 100644 --- a/modules/documents/config/locales/crowdin/el.yml +++ b/modules/documents/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/eo.yml b/modules/documents/config/locales/crowdin/eo.yml index 74e723ea6e..cbebf27af5 100644 --- a/modules/documents/config/locales/crowdin/eo.yml +++ b/modules/documents/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/es.yml b/modules/documents/config/locales/crowdin/es.yml index 1ed9c698fd..336197b092 100644 --- a/modules/documents/config/locales/crowdin/es.yml +++ b/modules/documents/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/et.yml b/modules/documents/config/locales/crowdin/et.yml index 948125d2dd..09446b1b50 100644 --- a/modules/documents/config/locales/crowdin/et.yml +++ b/modules/documents/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/fa.yml b/modules/documents/config/locales/crowdin/fa.yml index 8892d65783..7bfdcb82f1 100644 --- a/modules/documents/config/locales/crowdin/fa.yml +++ b/modules/documents/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/fi.yml b/modules/documents/config/locales/crowdin/fi.yml index 30a6db84f2..f492a7145c 100644 --- a/modules/documents/config/locales/crowdin/fi.yml +++ b/modules/documents/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/fil.yml b/modules/documents/config/locales/crowdin/fil.yml index 2143acf84c..cac2ffc0fd 100644 --- a/modules/documents/config/locales/crowdin/fil.yml +++ b/modules/documents/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/fr.yml b/modules/documents/config/locales/crowdin/fr.yml index f73cc98a24..5c2d309f5f 100644 --- a/modules/documents/config/locales/crowdin/fr.yml +++ b/modules/documents/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/he.yml b/modules/documents/config/locales/crowdin/he.yml index 411bea87f0..b415ca88fb 100644 --- a/modules/documents/config/locales/crowdin/he.yml +++ b/modules/documents/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/hi.yml b/modules/documents/config/locales/crowdin/hi.yml index 9a236510b4..582a0545ac 100644 --- a/modules/documents/config/locales/crowdin/hi.yml +++ b/modules/documents/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/hr.yml b/modules/documents/config/locales/crowdin/hr.yml index 66685d6518..cd34ff4195 100644 --- a/modules/documents/config/locales/crowdin/hr.yml +++ b/modules/documents/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/hu.yml b/modules/documents/config/locales/crowdin/hu.yml index b16448e6ea..7bc6568144 100644 --- a/modules/documents/config/locales/crowdin/hu.yml +++ b/modules/documents/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/id.yml b/modules/documents/config/locales/crowdin/id.yml index cbab8b3674..06872b56cb 100644 --- a/modules/documents/config/locales/crowdin/id.yml +++ b/modules/documents/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/it.yml b/modules/documents/config/locales/crowdin/it.yml index e44df2308e..4bd2110fb3 100644 --- a/modules/documents/config/locales/crowdin/it.yml +++ b/modules/documents/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ja.yml b/modules/documents/config/locales/crowdin/ja.yml index 523c2c831d..7a13b978e3 100644 --- a/modules/documents/config/locales/crowdin/ja.yml +++ b/modules/documents/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ko.yml b/modules/documents/config/locales/crowdin/ko.yml index 3d992703f8..4612926262 100644 --- a/modules/documents/config/locales/crowdin/ko.yml +++ b/modules/documents/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/lol.yml b/modules/documents/config/locales/crowdin/lol.yml index fd59f6d6d6..ae429c8a15 100644 --- a/modules/documents/config/locales/crowdin/lol.yml +++ b/modules/documents/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/lt.yml b/modules/documents/config/locales/crowdin/lt.yml index 6957d58e10..0a357004fb 100644 --- a/modules/documents/config/locales/crowdin/lt.yml +++ b/modules/documents/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/lv.yml b/modules/documents/config/locales/crowdin/lv.yml index 0bfaa5f252..f6bc2a4e15 100644 --- a/modules/documents/config/locales/crowdin/lv.yml +++ b/modules/documents/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ne.yml b/modules/documents/config/locales/crowdin/ne.yml index 9710936d9e..407cd01b9e 100644 --- a/modules/documents/config/locales/crowdin/ne.yml +++ b/modules/documents/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/nl.yml b/modules/documents/config/locales/crowdin/nl.yml index 7b4170cb08..4d439a954e 100644 --- a/modules/documents/config/locales/crowdin/nl.yml +++ b/modules/documents/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/no.yml b/modules/documents/config/locales/crowdin/no.yml index 2adf7b4e3f..71e6e19732 100644 --- a/modules/documents/config/locales/crowdin/no.yml +++ b/modules/documents/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/pl.yml b/modules/documents/config/locales/crowdin/pl.yml index 5be33bb9bc..e8d20cc450 100644 --- a/modules/documents/config/locales/crowdin/pl.yml +++ b/modules/documents/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/pt.yml b/modules/documents/config/locales/crowdin/pt.yml index 0c6ee48787..7470bb9bc7 100644 --- a/modules/documents/config/locales/crowdin/pt.yml +++ b/modules/documents/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ro.yml b/modules/documents/config/locales/crowdin/ro.yml index 24bbe9471d..34973e6f8a 100644 --- a/modules/documents/config/locales/crowdin/ro.yml +++ b/modules/documents/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/ru.yml b/modules/documents/config/locales/crowdin/ru.yml index 9125e93b1f..a3ac9cba64 100644 --- a/modules/documents/config/locales/crowdin/ru.yml +++ b/modules/documents/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/rw.yml b/modules/documents/config/locales/crowdin/rw.yml index 57aab8b3ea..903bfddd8a 100644 --- a/modules/documents/config/locales/crowdin/rw.yml +++ b/modules/documents/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/si.yml b/modules/documents/config/locales/crowdin/si.yml index 4aba20dbd2..8569cf3bd3 100644 --- a/modules/documents/config/locales/crowdin/si.yml +++ b/modules/documents/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/sk.yml b/modules/documents/config/locales/crowdin/sk.yml index 4df5d1721b..c9473d8ef4 100644 --- a/modules/documents/config/locales/crowdin/sk.yml +++ b/modules/documents/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/sl.yml b/modules/documents/config/locales/crowdin/sl.yml index a9c7465988..a136e0056d 100644 --- a/modules/documents/config/locales/crowdin/sl.yml +++ b/modules/documents/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/sv.yml b/modules/documents/config/locales/crowdin/sv.yml index fc979efdb4..af6e66fd73 100644 --- a/modules/documents/config/locales/crowdin/sv.yml +++ b/modules/documents/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/th.yml b/modules/documents/config/locales/crowdin/th.yml index 61b6ef3029..335583070c 100644 --- a/modules/documents/config/locales/crowdin/th.yml +++ b/modules/documents/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/tr.yml b/modules/documents/config/locales/crowdin/tr.yml index d8c50eb683..2bf276f36f 100644 --- a/modules/documents/config/locales/crowdin/tr.yml +++ b/modules/documents/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/uk.yml b/modules/documents/config/locales/crowdin/uk.yml index 1979843c63..f7840cee9d 100644 --- a/modules/documents/config/locales/crowdin/uk.yml +++ b/modules/documents/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/vi.yml b/modules/documents/config/locales/crowdin/vi.yml index 0ee38de219..03c25e30d8 100644 --- a/modules/documents/config/locales/crowdin/vi.yml +++ b/modules/documents/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/zh-CN.yml b/modules/documents/config/locales/crowdin/zh-CN.yml index db3de1af9e..acc996c222 100644 --- a/modules/documents/config/locales/crowdin/zh-CN.yml +++ b/modules/documents/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/crowdin/zh-TW.yml b/modules/documents/config/locales/crowdin/zh-TW.yml index 1dc4beeeaa..779c639452 100644 --- a/modules/documents/config/locales/crowdin/zh-TW.yml +++ b/modules/documents/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/documents/config/locales/en.yml b/modules/documents/config/locales/en.yml index 941e7869e8..9a27182628 100644 --- a/modules/documents/config/locales/en.yml +++ b/modules/documents/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/config/routes.rb b/modules/documents/config/routes.rb index ad06898df4..6d04659735 100644 --- a/modules/documents/config/routes.rb +++ b/modules/documents/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/db/migrate/20180323140208_to_v710_aggregated_documents_migrations.rb b/modules/documents/db/migrate/20180323140208_to_v710_aggregated_documents_migrations.rb index be8b6a2a2f..6a9c9aa799 100644 --- a/modules/documents/db/migrate/20180323140208_to_v710_aggregated_documents_migrations.rb +++ b/modules/documents/db/migrate/20180323140208_to_v710_aggregated_documents_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/frontend/module/hal/resources/document-resource.ts b/modules/documents/frontend/module/hal/resources/document-resource.ts index c6abadefce..99aeb411ec 100644 --- a/modules/documents/frontend/module/hal/resources/document-resource.ts +++ b/modules/documents/frontend/module/hal/resources/document-resource.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/frontend/module/main.ts b/modules/documents/frontend/module/main.ts index c2da9d6ee4..d5fe48b3de 100644 --- a/modules/documents/frontend/module/main.ts +++ b/modules/documents/frontend/module/main.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/api/v3/attachments/attachments_by_document_api.rb b/modules/documents/lib/api/v3/attachments/attachments_by_document_api.rb index a1b17fa1dc..43a9ed22d3 100644 --- a/modules/documents/lib/api/v3/attachments/attachments_by_document_api.rb +++ b/modules/documents/lib/api/v3/attachments/attachments_by_document_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/api/v3/documents/document_collection_representer.rb b/modules/documents/lib/api/v3/documents/document_collection_representer.rb index 20e9b75c5e..0e457679bd 100644 --- a/modules/documents/lib/api/v3/documents/document_collection_representer.rb +++ b/modules/documents/lib/api/v3/documents/document_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/api/v3/documents/document_representer.rb b/modules/documents/lib/api/v3/documents/document_representer.rb index 1c00d49f20..1d7c5944c9 100644 --- a/modules/documents/lib/api/v3/documents/document_representer.rb +++ b/modules/documents/lib/api/v3/documents/document_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/api/v3/documents/documents_api.rb b/modules/documents/lib/api/v3/documents/documents_api.rb index 8a51357e2c..abfe0bd0f0 100644 --- a/modules/documents/lib/api/v3/documents/documents_api.rb +++ b/modules/documents/lib/api/v3/documents/documents_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/open_project/documents.rb b/modules/documents/lib/open_project/documents.rb index 0c18d7d081..9bd879e74f 100644 --- a/modules/documents/lib/open_project/documents.rb +++ b/modules/documents/lib/open_project/documents.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/open_project/documents/engine.rb b/modules/documents/lib/open_project/documents/engine.rb index 087fdb2897..e640e24e12 100644 --- a/modules/documents/lib/open_project/documents/engine.rb +++ b/modules/documents/lib/open_project/documents/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/open_project/documents/patches.rb b/modules/documents/lib/open_project/documents/patches.rb index dc6007fe22..13228a867b 100644 --- a/modules/documents/lib/open_project/documents/patches.rb +++ b/modules/documents/lib/open_project/documents/patches.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/open_project/documents/patches/project_patch.rb b/modules/documents/lib/open_project/documents/patches/project_patch.rb index 2bf2d2c895..75e71e0110 100644 --- a/modules/documents/lib/open_project/documents/patches/project_patch.rb +++ b/modules/documents/lib/open_project/documents/patches/project_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/lib/openproject-documents.rb b/modules/documents/lib/openproject-documents.rb index 329c799638..76f0bca6d1 100644 --- a/modules/documents/lib/openproject-documents.rb +++ b/modules/documents/lib/openproject-documents.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/api/v3/documents/document_representer_rendering_spec.rb b/modules/documents/spec/api/v3/documents/document_representer_rendering_spec.rb index 3fa815d0f6..79557ec345 100644 --- a/modules/documents/spec/api/v3/documents/document_representer_rendering_spec.rb +++ b/modules/documents/spec/api/v3/documents/document_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/application_helper_spec.rb b/modules/documents/spec/application_helper_spec.rb index 9e17ef7e87..d3c4392d97 100644 --- a/modules/documents/spec/application_helper_spec.rb +++ b/modules/documents/spec/application_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/controllers/documents_controller_spec.rb b/modules/documents/spec/controllers/documents_controller_spec.rb index ca43eac52f..c9d54d23c5 100644 --- a/modules/documents/spec/controllers/documents_controller_spec.rb +++ b/modules/documents/spec/controllers/documents_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/factories/document_category_factory.rb b/modules/documents/spec/factories/document_category_factory.rb index af22eb6cde..48d18fe9cc 100644 --- a/modules/documents/spec/factories/document_category_factory.rb +++ b/modules/documents/spec/factories/document_category_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/factories/document_factory.rb b/modules/documents/spec/factories/document_factory.rb index 24b5fa0e5f..efe789342a 100644 --- a/modules/documents/spec/factories/document_factory.rb +++ b/modules/documents/spec/factories/document_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/factories/journal/document_journal_factory.rb b/modules/documents/spec/factories/journal/document_journal_factory.rb index fc974e4820..7c8d497032 100644 --- a/modules/documents/spec/factories/journal/document_journal_factory.rb +++ b/modules/documents/spec/factories/journal/document_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/features/attachment_upload_spec.rb b/modules/documents/spec/features/attachment_upload_spec.rb index 0077fbaccf..fee04d3a71 100644 --- a/modules/documents/spec/features/attachment_upload_spec.rb +++ b/modules/documents/spec/features/attachment_upload_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/lib/open_project/markdown_formatting_spec.rb b/modules/documents/spec/lib/open_project/markdown_formatting_spec.rb index 72af7b280e..d2d4e3546d 100644 --- a/modules/documents/spec/lib/open_project/markdown_formatting_spec.rb +++ b/modules/documents/spec/lib/open_project/markdown_formatting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/lib/redmine/access_control_spec.rb b/modules/documents/spec/lib/redmine/access_control_spec.rb index 1d667a1406..f643baae70 100644 --- a/modules/documents/spec/lib/redmine/access_control_spec.rb +++ b/modules/documents/spec/lib/redmine/access_control_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/mailers/documents_mailer_spec.rb b/modules/documents/spec/mailers/documents_mailer_spec.rb index 34bf74f2de..e2f3140b9b 100644 --- a/modules/documents/spec/mailers/documents_mailer_spec.rb +++ b/modules/documents/spec/mailers/documents_mailer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/models/document_category_spec.rb b/modules/documents/spec/models/document_category_spec.rb index 1a932557f6..b1caf9452e 100644 --- a/modules/documents/spec/models/document_category_spec.rb +++ b/modules/documents/spec/models/document_category_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/models/document_spec.rb b/modules/documents/spec/models/document_spec.rb index 18fd6d39d9..bcefa9dae4 100644 --- a/modules/documents/spec/models/document_spec.rb +++ b/modules/documents/spec/models/document_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/models/queries/documents/document_query_spec.rb b/modules/documents/spec/models/queries/documents/document_query_spec.rb index 84fb56f100..b566b3b6ca 100644 --- a/modules/documents/spec/models/queries/documents/document_query_spec.rb +++ b/modules/documents/spec/models/queries/documents/document_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/models/queries/documents/filters/project_filter_spec.rb b/modules/documents/spec/models/queries/documents/filters/project_filter_spec.rb index 40f20185ab..882d6273ab 100644 --- a/modules/documents/spec/models/queries/documents/filters/project_filter_spec.rb +++ b/modules/documents/spec/models/queries/documents/filters/project_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/requests/api/v3/attachments/attachments_by_documents_resource_spec.rb b/modules/documents/spec/requests/api/v3/attachments/attachments_by_documents_resource_spec.rb index 8f9ddd9b3e..f195453276 100644 --- a/modules/documents/spec/requests/api/v3/attachments/attachments_by_documents_resource_spec.rb +++ b/modules/documents/spec/requests/api/v3/attachments/attachments_by_documents_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/requests/api/v3/documents/documents_resource_spec.rb b/modules/documents/spec/requests/api/v3/documents/documents_resource_spec.rb index c958460eb2..d71683ed70 100644 --- a/modules/documents/spec/requests/api/v3/documents/documents_resource_spec.rb +++ b/modules/documents/spec/requests/api/v3/documents/documents_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/routing/documents_routing_spec.rb b/modules/documents/spec/routing/documents_routing_spec.rb index 76b076e64e..292c987dc3 100644 --- a/modules/documents/spec/routing/documents_routing_spec.rb +++ b/modules/documents/spec/routing/documents_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/services/notifications/create_from_model_service_document_spec.rb b/modules/documents/spec/services/notifications/create_from_model_service_document_spec.rb index fc9fd2a82a..9a6e363881 100644 --- a/modules/documents/spec/services/notifications/create_from_model_service_document_spec.rb +++ b/modules/documents/spec/services/notifications/create_from_model_service_document_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/services/notifications/mail_service_spec.rb b/modules/documents/spec/services/notifications/mail_service_spec.rb index 44bf06e9e6..957afd9254 100644 --- a/modules/documents/spec/services/notifications/mail_service_spec.rb +++ b/modules/documents/spec/services/notifications/mail_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/documents/spec/spec_helper.rb b/modules/documents/spec/spec_helper.rb index 7f30e0d8b4..3c2f986997 100644 --- a/modules/documents/spec/spec_helper.rb +++ b/modules/documents/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/app/models/github_check_run.rb b/modules/github_integration/app/models/github_check_run.rb index 6caea564f0..c6a2b08d04 100644 --- a/modules/github_integration/app/models/github_check_run.rb +++ b/modules/github_integration/app/models/github_check_run.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/app/models/github_pull_request.rb b/modules/github_integration/app/models/github_pull_request.rb index 6092e8860c..eef85019b2 100644 --- a/modules/github_integration/app/models/github_pull_request.rb +++ b/modules/github_integration/app/models/github_pull_request.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/app/models/github_user.rb b/modules/github_integration/app/models/github_user.rb index 7ac657384f..1b3e29b38d 100644 --- a/modules/github_integration/app/models/github_user.rb +++ b/modules/github_integration/app/models/github_user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/app/workers/cron/clear_old_pull_requests_job.rb b/modules/github_integration/app/workers/cron/clear_old_pull_requests_job.rb index e2a0f2c315..35996693c0 100644 --- a/modules/github_integration/app/workers/cron/clear_old_pull_requests_job.rb +++ b/modules/github_integration/app/workers/cron/clear_old_pull_requests_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/config/locales/crowdin/af.yml b/modules/github_integration/config/locales/crowdin/af.yml index 5d59eb6c62..3a7a2b3163 100644 --- a/modules/github_integration/config/locales/crowdin/af.yml +++ b/modules/github_integration/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ar.yml b/modules/github_integration/config/locales/crowdin/ar.yml index bea9a9166c..f406b84626 100644 --- a/modules/github_integration/config/locales/crowdin/ar.yml +++ b/modules/github_integration/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/az.yml b/modules/github_integration/config/locales/crowdin/az.yml index eb2ac28cf3..7b3f5546d3 100644 --- a/modules/github_integration/config/locales/crowdin/az.yml +++ b/modules/github_integration/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/bg.yml b/modules/github_integration/config/locales/crowdin/bg.yml index 3467d28ee9..a52ed3ee96 100644 --- a/modules/github_integration/config/locales/crowdin/bg.yml +++ b/modules/github_integration/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ca.yml b/modules/github_integration/config/locales/crowdin/ca.yml index be27173b97..c1e43c090e 100644 --- a/modules/github_integration/config/locales/crowdin/ca.yml +++ b/modules/github_integration/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/cs.yml b/modules/github_integration/config/locales/crowdin/cs.yml index bf79ef923f..a184730473 100644 --- a/modules/github_integration/config/locales/crowdin/cs.yml +++ b/modules/github_integration/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/da.yml b/modules/github_integration/config/locales/crowdin/da.yml index 9f4b3bc3fe..41dbf368ad 100644 --- a/modules/github_integration/config/locales/crowdin/da.yml +++ b/modules/github_integration/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/de.yml b/modules/github_integration/config/locales/crowdin/de.yml index 4718c3256c..6dea337df4 100644 --- a/modules/github_integration/config/locales/crowdin/de.yml +++ b/modules/github_integration/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/el.yml b/modules/github_integration/config/locales/crowdin/el.yml index 0de794b806..ff1fd4202b 100644 --- a/modules/github_integration/config/locales/crowdin/el.yml +++ b/modules/github_integration/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/eo.yml b/modules/github_integration/config/locales/crowdin/eo.yml index 34175e9dfd..aebe5f2620 100644 --- a/modules/github_integration/config/locales/crowdin/eo.yml +++ b/modules/github_integration/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/es.yml b/modules/github_integration/config/locales/crowdin/es.yml index 3d985dd4c0..f629c1b657 100644 --- a/modules/github_integration/config/locales/crowdin/es.yml +++ b/modules/github_integration/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/et.yml b/modules/github_integration/config/locales/crowdin/et.yml index 2f0303ff37..7c0a2a7997 100644 --- a/modules/github_integration/config/locales/crowdin/et.yml +++ b/modules/github_integration/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/fa.yml b/modules/github_integration/config/locales/crowdin/fa.yml index 2cadd098f5..38c3e7373f 100644 --- a/modules/github_integration/config/locales/crowdin/fa.yml +++ b/modules/github_integration/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/fi.yml b/modules/github_integration/config/locales/crowdin/fi.yml index aa289dc975..e44aa22762 100644 --- a/modules/github_integration/config/locales/crowdin/fi.yml +++ b/modules/github_integration/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/fil.yml b/modules/github_integration/config/locales/crowdin/fil.yml index 525da3f83c..e4617479ff 100644 --- a/modules/github_integration/config/locales/crowdin/fil.yml +++ b/modules/github_integration/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/fr.yml b/modules/github_integration/config/locales/crowdin/fr.yml index 7bd4558b8d..905cb00ce5 100644 --- a/modules/github_integration/config/locales/crowdin/fr.yml +++ b/modules/github_integration/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/he.yml b/modules/github_integration/config/locales/crowdin/he.yml index 6937e07968..97c3fb10fe 100644 --- a/modules/github_integration/config/locales/crowdin/he.yml +++ b/modules/github_integration/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/hi.yml b/modules/github_integration/config/locales/crowdin/hi.yml index 0eb8edb738..8044b0e92b 100644 --- a/modules/github_integration/config/locales/crowdin/hi.yml +++ b/modules/github_integration/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/hr.yml b/modules/github_integration/config/locales/crowdin/hr.yml index 2446a69fdf..170d9e4c4d 100644 --- a/modules/github_integration/config/locales/crowdin/hr.yml +++ b/modules/github_integration/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/hu.yml b/modules/github_integration/config/locales/crowdin/hu.yml index 27077ad29c..20a0e4bc49 100644 --- a/modules/github_integration/config/locales/crowdin/hu.yml +++ b/modules/github_integration/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/id.yml b/modules/github_integration/config/locales/crowdin/id.yml index dfe3dc2fef..36b85fce1a 100644 --- a/modules/github_integration/config/locales/crowdin/id.yml +++ b/modules/github_integration/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/it.yml b/modules/github_integration/config/locales/crowdin/it.yml index eae6668e2d..4324ad61c4 100644 --- a/modules/github_integration/config/locales/crowdin/it.yml +++ b/modules/github_integration/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ja.yml b/modules/github_integration/config/locales/crowdin/ja.yml index 8300faafe5..4b40e5fe1f 100644 --- a/modules/github_integration/config/locales/crowdin/ja.yml +++ b/modules/github_integration/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-af.yml b/modules/github_integration/config/locales/crowdin/js-af.yml index 4da2dcd03d..f3f0aef925 100644 --- a/modules/github_integration/config/locales/crowdin/js-af.yml +++ b/modules/github_integration/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ar.yml b/modules/github_integration/config/locales/crowdin/js-ar.yml index 11457d8846..5344f25819 100644 --- a/modules/github_integration/config/locales/crowdin/js-ar.yml +++ b/modules/github_integration/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-az.yml b/modules/github_integration/config/locales/crowdin/js-az.yml index a9f8a88f94..9715e00850 100644 --- a/modules/github_integration/config/locales/crowdin/js-az.yml +++ b/modules/github_integration/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-bg.yml b/modules/github_integration/config/locales/crowdin/js-bg.yml index c6708929c8..09295898ce 100644 --- a/modules/github_integration/config/locales/crowdin/js-bg.yml +++ b/modules/github_integration/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ca.yml b/modules/github_integration/config/locales/crowdin/js-ca.yml index 5b480aafc3..59ba41e4d0 100644 --- a/modules/github_integration/config/locales/crowdin/js-ca.yml +++ b/modules/github_integration/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-cs.yml b/modules/github_integration/config/locales/crowdin/js-cs.yml index bbc7cb7afe..e9f930494c 100644 --- a/modules/github_integration/config/locales/crowdin/js-cs.yml +++ b/modules/github_integration/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-da.yml b/modules/github_integration/config/locales/crowdin/js-da.yml index 4992e52888..ca2f028200 100644 --- a/modules/github_integration/config/locales/crowdin/js-da.yml +++ b/modules/github_integration/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-de.yml b/modules/github_integration/config/locales/crowdin/js-de.yml index 12abc02f66..30f1a5dc0c 100644 --- a/modules/github_integration/config/locales/crowdin/js-de.yml +++ b/modules/github_integration/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-el.yml b/modules/github_integration/config/locales/crowdin/js-el.yml index 4d99b3db21..3d303be2d5 100644 --- a/modules/github_integration/config/locales/crowdin/js-el.yml +++ b/modules/github_integration/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-eo.yml b/modules/github_integration/config/locales/crowdin/js-eo.yml index e871881c8f..7fe203ed85 100644 --- a/modules/github_integration/config/locales/crowdin/js-eo.yml +++ b/modules/github_integration/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-es.yml b/modules/github_integration/config/locales/crowdin/js-es.yml index 285c3109af..ced0592796 100644 --- a/modules/github_integration/config/locales/crowdin/js-es.yml +++ b/modules/github_integration/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-et.yml b/modules/github_integration/config/locales/crowdin/js-et.yml index 11de03b6e6..1cf2752947 100644 --- a/modules/github_integration/config/locales/crowdin/js-et.yml +++ b/modules/github_integration/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-fa.yml b/modules/github_integration/config/locales/crowdin/js-fa.yml index 53992ab570..ec15b76b9e 100644 --- a/modules/github_integration/config/locales/crowdin/js-fa.yml +++ b/modules/github_integration/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-fi.yml b/modules/github_integration/config/locales/crowdin/js-fi.yml index f68174dbcb..ffdf8c8bd3 100644 --- a/modules/github_integration/config/locales/crowdin/js-fi.yml +++ b/modules/github_integration/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-fil.yml b/modules/github_integration/config/locales/crowdin/js-fil.yml index 802d80cbc4..3874a0c6c5 100644 --- a/modules/github_integration/config/locales/crowdin/js-fil.yml +++ b/modules/github_integration/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-fr.yml b/modules/github_integration/config/locales/crowdin/js-fr.yml index 731171d80a..f45d772c0a 100644 --- a/modules/github_integration/config/locales/crowdin/js-fr.yml +++ b/modules/github_integration/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-he.yml b/modules/github_integration/config/locales/crowdin/js-he.yml index 454946a91a..4a73a18697 100644 --- a/modules/github_integration/config/locales/crowdin/js-he.yml +++ b/modules/github_integration/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-hi.yml b/modules/github_integration/config/locales/crowdin/js-hi.yml index d2c9e78704..e576e05821 100644 --- a/modules/github_integration/config/locales/crowdin/js-hi.yml +++ b/modules/github_integration/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-hr.yml b/modules/github_integration/config/locales/crowdin/js-hr.yml index 2a4d852b81..1ed177a269 100644 --- a/modules/github_integration/config/locales/crowdin/js-hr.yml +++ b/modules/github_integration/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-hu.yml b/modules/github_integration/config/locales/crowdin/js-hu.yml index 1118759908..cba71562a5 100644 --- a/modules/github_integration/config/locales/crowdin/js-hu.yml +++ b/modules/github_integration/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-id.yml b/modules/github_integration/config/locales/crowdin/js-id.yml index a7c5e7a825..4fcb637a4c 100644 --- a/modules/github_integration/config/locales/crowdin/js-id.yml +++ b/modules/github_integration/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-it.yml b/modules/github_integration/config/locales/crowdin/js-it.yml index 0dc1b2a058..4bbcafde32 100644 --- a/modules/github_integration/config/locales/crowdin/js-it.yml +++ b/modules/github_integration/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ja.yml b/modules/github_integration/config/locales/crowdin/js-ja.yml index aa95a66d21..27e4adccdd 100644 --- a/modules/github_integration/config/locales/crowdin/js-ja.yml +++ b/modules/github_integration/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ko.yml b/modules/github_integration/config/locales/crowdin/js-ko.yml index 5d454f9c93..d8c1c50f3f 100644 --- a/modules/github_integration/config/locales/crowdin/js-ko.yml +++ b/modules/github_integration/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-lol.yml b/modules/github_integration/config/locales/crowdin/js-lol.yml index 89f3e5ba75..8cbbe9b3ad 100644 --- a/modules/github_integration/config/locales/crowdin/js-lol.yml +++ b/modules/github_integration/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-lt.yml b/modules/github_integration/config/locales/crowdin/js-lt.yml index 69cabded62..f836677e56 100644 --- a/modules/github_integration/config/locales/crowdin/js-lt.yml +++ b/modules/github_integration/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-lv.yml b/modules/github_integration/config/locales/crowdin/js-lv.yml index 76a8e0f7a8..a67b022518 100644 --- a/modules/github_integration/config/locales/crowdin/js-lv.yml +++ b/modules/github_integration/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ne.yml b/modules/github_integration/config/locales/crowdin/js-ne.yml index f64c63d6be..88400f5896 100644 --- a/modules/github_integration/config/locales/crowdin/js-ne.yml +++ b/modules/github_integration/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-nl.yml b/modules/github_integration/config/locales/crowdin/js-nl.yml index 9d815421f2..27c9d93220 100644 --- a/modules/github_integration/config/locales/crowdin/js-nl.yml +++ b/modules/github_integration/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-no.yml b/modules/github_integration/config/locales/crowdin/js-no.yml index 2485c2f4eb..d582c27be1 100644 --- a/modules/github_integration/config/locales/crowdin/js-no.yml +++ b/modules/github_integration/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-pl.yml b/modules/github_integration/config/locales/crowdin/js-pl.yml index eed3f679c5..dfc55e6ab2 100644 --- a/modules/github_integration/config/locales/crowdin/js-pl.yml +++ b/modules/github_integration/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-pt.yml b/modules/github_integration/config/locales/crowdin/js-pt.yml index 13af90afc2..d62077d56e 100644 --- a/modules/github_integration/config/locales/crowdin/js-pt.yml +++ b/modules/github_integration/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ro.yml b/modules/github_integration/config/locales/crowdin/js-ro.yml index 3700977a5a..19e617b7d8 100644 --- a/modules/github_integration/config/locales/crowdin/js-ro.yml +++ b/modules/github_integration/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-ru.yml b/modules/github_integration/config/locales/crowdin/js-ru.yml index 7edd33cc46..d04ebc355b 100644 --- a/modules/github_integration/config/locales/crowdin/js-ru.yml +++ b/modules/github_integration/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-rw.yml b/modules/github_integration/config/locales/crowdin/js-rw.yml index 45b82ae805..e9a12bd948 100644 --- a/modules/github_integration/config/locales/crowdin/js-rw.yml +++ b/modules/github_integration/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-si.yml b/modules/github_integration/config/locales/crowdin/js-si.yml index 15310f66c2..62a75b8dae 100644 --- a/modules/github_integration/config/locales/crowdin/js-si.yml +++ b/modules/github_integration/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-sk.yml b/modules/github_integration/config/locales/crowdin/js-sk.yml index 4903ef5222..0e24ceb373 100644 --- a/modules/github_integration/config/locales/crowdin/js-sk.yml +++ b/modules/github_integration/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-sl.yml b/modules/github_integration/config/locales/crowdin/js-sl.yml index a428a4fc85..a1ffe62521 100644 --- a/modules/github_integration/config/locales/crowdin/js-sl.yml +++ b/modules/github_integration/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-sv.yml b/modules/github_integration/config/locales/crowdin/js-sv.yml index 640ed70605..c6cb878b9c 100644 --- a/modules/github_integration/config/locales/crowdin/js-sv.yml +++ b/modules/github_integration/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-th.yml b/modules/github_integration/config/locales/crowdin/js-th.yml index f894a69c0f..8b51d87791 100644 --- a/modules/github_integration/config/locales/crowdin/js-th.yml +++ b/modules/github_integration/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-tr.yml b/modules/github_integration/config/locales/crowdin/js-tr.yml index fc86478f54..ed98196070 100644 --- a/modules/github_integration/config/locales/crowdin/js-tr.yml +++ b/modules/github_integration/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-uk.yml b/modules/github_integration/config/locales/crowdin/js-uk.yml index b6ec7d506e..39d13d9411 100644 --- a/modules/github_integration/config/locales/crowdin/js-uk.yml +++ b/modules/github_integration/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-vi.yml b/modules/github_integration/config/locales/crowdin/js-vi.yml index cb9e012a76..37e6ef455d 100644 --- a/modules/github_integration/config/locales/crowdin/js-vi.yml +++ b/modules/github_integration/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-zh-CN.yml b/modules/github_integration/config/locales/crowdin/js-zh-CN.yml index 81f347e274..84f53ae1c7 100644 --- a/modules/github_integration/config/locales/crowdin/js-zh-CN.yml +++ b/modules/github_integration/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/js-zh-TW.yml b/modules/github_integration/config/locales/crowdin/js-zh-TW.yml index d098407eb2..fbe1b7f24c 100644 --- a/modules/github_integration/config/locales/crowdin/js-zh-TW.yml +++ b/modules/github_integration/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ko.yml b/modules/github_integration/config/locales/crowdin/ko.yml index 95d565ef46..c72a10253c 100644 --- a/modules/github_integration/config/locales/crowdin/ko.yml +++ b/modules/github_integration/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/lol.yml b/modules/github_integration/config/locales/crowdin/lol.yml index 5c6deae4e6..988ee2af7a 100644 --- a/modules/github_integration/config/locales/crowdin/lol.yml +++ b/modules/github_integration/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/lt.yml b/modules/github_integration/config/locales/crowdin/lt.yml index e41fbad520..1271264bb5 100644 --- a/modules/github_integration/config/locales/crowdin/lt.yml +++ b/modules/github_integration/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/lv.yml b/modules/github_integration/config/locales/crowdin/lv.yml index 7a7f8ebacc..868d164ebb 100644 --- a/modules/github_integration/config/locales/crowdin/lv.yml +++ b/modules/github_integration/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ne.yml b/modules/github_integration/config/locales/crowdin/ne.yml index e63ad2fe28..f6f4b43d21 100644 --- a/modules/github_integration/config/locales/crowdin/ne.yml +++ b/modules/github_integration/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/nl.yml b/modules/github_integration/config/locales/crowdin/nl.yml index 7740c28633..caf698b7a3 100644 --- a/modules/github_integration/config/locales/crowdin/nl.yml +++ b/modules/github_integration/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/no.yml b/modules/github_integration/config/locales/crowdin/no.yml index 5fac47b9f7..4d8420eba5 100644 --- a/modules/github_integration/config/locales/crowdin/no.yml +++ b/modules/github_integration/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/pl.yml b/modules/github_integration/config/locales/crowdin/pl.yml index 875ef2b39a..6c8ed71ba0 100644 --- a/modules/github_integration/config/locales/crowdin/pl.yml +++ b/modules/github_integration/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/pt.yml b/modules/github_integration/config/locales/crowdin/pt.yml index fc51ffab24..5a99210390 100644 --- a/modules/github_integration/config/locales/crowdin/pt.yml +++ b/modules/github_integration/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ro.yml b/modules/github_integration/config/locales/crowdin/ro.yml index 08a68f3e43..d5a900dc2f 100644 --- a/modules/github_integration/config/locales/crowdin/ro.yml +++ b/modules/github_integration/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/ru.yml b/modules/github_integration/config/locales/crowdin/ru.yml index 2b098f8857..62bfeec59d 100644 --- a/modules/github_integration/config/locales/crowdin/ru.yml +++ b/modules/github_integration/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/rw.yml b/modules/github_integration/config/locales/crowdin/rw.yml index ac08214aa4..9ab0c48475 100644 --- a/modules/github_integration/config/locales/crowdin/rw.yml +++ b/modules/github_integration/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/si.yml b/modules/github_integration/config/locales/crowdin/si.yml index 3a46d91a00..f2166ea962 100644 --- a/modules/github_integration/config/locales/crowdin/si.yml +++ b/modules/github_integration/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/sk.yml b/modules/github_integration/config/locales/crowdin/sk.yml index 427a4c8941..d4e9c3c9ca 100644 --- a/modules/github_integration/config/locales/crowdin/sk.yml +++ b/modules/github_integration/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/sl.yml b/modules/github_integration/config/locales/crowdin/sl.yml index db208b1a93..05cc1c3b6c 100644 --- a/modules/github_integration/config/locales/crowdin/sl.yml +++ b/modules/github_integration/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/sv.yml b/modules/github_integration/config/locales/crowdin/sv.yml index 1183153f66..9479f00506 100644 --- a/modules/github_integration/config/locales/crowdin/sv.yml +++ b/modules/github_integration/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/th.yml b/modules/github_integration/config/locales/crowdin/th.yml index c9b54d7d0e..71f299056a 100644 --- a/modules/github_integration/config/locales/crowdin/th.yml +++ b/modules/github_integration/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/tr.yml b/modules/github_integration/config/locales/crowdin/tr.yml index a7e196953e..f0e0687de7 100644 --- a/modules/github_integration/config/locales/crowdin/tr.yml +++ b/modules/github_integration/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/uk.yml b/modules/github_integration/config/locales/crowdin/uk.yml index 5e511b2d4b..2a47f0679c 100644 --- a/modules/github_integration/config/locales/crowdin/uk.yml +++ b/modules/github_integration/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/vi.yml b/modules/github_integration/config/locales/crowdin/vi.yml index 66323fd642..c2899d14bb 100644 --- a/modules/github_integration/config/locales/crowdin/vi.yml +++ b/modules/github_integration/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/zh-CN.yml b/modules/github_integration/config/locales/crowdin/zh-CN.yml index b13d812158..e5a60d8c52 100644 --- a/modules/github_integration/config/locales/crowdin/zh-CN.yml +++ b/modules/github_integration/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/crowdin/zh-TW.yml b/modules/github_integration/config/locales/crowdin/zh-TW.yml index 94d3820021..136d9505e6 100644 --- a/modules/github_integration/config/locales/crowdin/zh-TW.yml +++ b/modules/github_integration/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/github_integration/config/locales/de.yml b/modules/github_integration/config/locales/de.yml index db3b3fb32c..0f84540da0 100644 --- a/modules/github_integration/config/locales/de.yml +++ b/modules/github_integration/config/locales/de.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/config/locales/en.yml b/modules/github_integration/config/locales/en.yml index 8388d181da..1d3bd5df70 100644 --- a/modules/github_integration/config/locales/en.yml +++ b/modules/github_integration/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/config/locales/js-en.yml b/modules/github_integration/config/locales/js-en.yml index e9fc949fd1..a4eb235447 100644 --- a/modules/github_integration/config/locales/js-en.yml +++ b/modules/github_integration/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.component.ts b/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.component.ts index 7dd5686a34..4f3f894b0b 100644 --- a/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.component.ts +++ b/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.directive.ts b/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.directive.ts index 912c3bef0f..149f1057ac 100644 --- a/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.directive.ts +++ b/modules/github_integration/frontend/module/git-actions-menu/git-actions-menu.directive.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/git-actions/git-actions.service.spec.ts b/modules/github_integration/frontend/module/git-actions/git-actions.service.spec.ts index 78e24b5775..39f027d588 100644 --- a/modules/github_integration/frontend/module/git-actions/git-actions.service.spec.ts +++ b/modules/github_integration/frontend/module/git-actions/git-actions.service.spec.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/git-actions/git-actions.service.ts b/modules/github_integration/frontend/module/git-actions/git-actions.service.ts index fac0c138aa..6b1c80aa84 100644 --- a/modules/github_integration/frontend/module/git-actions/git-actions.service.ts +++ b/modules/github_integration/frontend/module/git-actions/git-actions.service.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/github-tab/github-tab.component.ts b/modules/github_integration/frontend/module/github-tab/github-tab.component.ts index f519154eb1..f769357fef 100644 --- a/modules/github_integration/frontend/module/github-tab/github-tab.component.ts +++ b/modules/github_integration/frontend/module/github-tab/github-tab.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/hal/resources/github-check-run-resource.ts b/modules/github_integration/frontend/module/hal/resources/github-check-run-resource.ts index b92ee0b87e..56da89c847 100644 --- a/modules/github_integration/frontend/module/hal/resources/github-check-run-resource.ts +++ b/modules/github_integration/frontend/module/hal/resources/github-check-run-resource.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/hal/resources/github-pull-request-resource.ts b/modules/github_integration/frontend/module/hal/resources/github-pull-request-resource.ts index edab53f306..dc13af61ef 100644 --- a/modules/github_integration/frontend/module/hal/resources/github-pull-request-resource.ts +++ b/modules/github_integration/frontend/module/hal/resources/github-pull-request-resource.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/hal/resources/github-user-resource.ts b/modules/github_integration/frontend/module/hal/resources/github-user-resource.ts index 0e5dd6c658..a014859dda 100644 --- a/modules/github_integration/frontend/module/hal/resources/github-user-resource.ts +++ b/modules/github_integration/frontend/module/hal/resources/github-user-resource.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/main.ts b/modules/github_integration/frontend/module/main.ts index 59881b6181..75223a9c2c 100644 --- a/modules/github_integration/frontend/module/main.ts +++ b/modules/github_integration/frontend/module/main.ts @@ -1,6 +1,6 @@ // -- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/pull-request/pull-request.component.sass b/modules/github_integration/frontend/module/pull-request/pull-request.component.sass index 4ac61b9179..4528c0fb94 100644 --- a/modules/github_integration/frontend/module/pull-request/pull-request.component.sass +++ b/modules/github_integration/frontend/module/pull-request/pull-request.component.sass @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/pull-request/pull-request.component.ts b/modules/github_integration/frontend/module/pull-request/pull-request.component.ts index ba8a092087..ca5871bd59 100644 --- a/modules/github_integration/frontend/module/pull-request/pull-request.component.ts +++ b/modules/github_integration/frontend/module/pull-request/pull-request.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/tab-header/styles/tab-header.sass b/modules/github_integration/frontend/module/tab-header/styles/tab-header.sass index 27285eb473..b428cedeb4 100644 --- a/modules/github_integration/frontend/module/tab-header/styles/tab-header.sass +++ b/modules/github_integration/frontend/module/tab-header/styles/tab-header.sass @@ -1,6 +1,6 @@ /*-- copyright * OpenProject is an open source project management software. - * Copyright (C) 2012-2021 the OpenProject GmbH + * Copyright (C) 2012-2022 the OpenProject GmbH * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/tab-header/tab-header.component.ts b/modules/github_integration/frontend/module/tab-header/tab-header.component.ts index caacf3c9bf..be95b8a1b2 100644 --- a/modules/github_integration/frontend/module/tab-header/tab-header.component.ts +++ b/modules/github_integration/frontend/module/tab-header/tab-header.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/tab-prs/tab-prs.component.ts b/modules/github_integration/frontend/module/tab-prs/tab-prs.component.ts index 205c590c88..67a80fb3e1 100644 --- a/modules/github_integration/frontend/module/tab-prs/tab-prs.component.ts +++ b/modules/github_integration/frontend/module/tab-prs/tab-prs.component.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/frontend/module/tab-prs/wp-github-prs.service.ts b/modules/github_integration/frontend/module/tab-prs/wp-github-prs.service.ts index 50640c07d0..ecc18d40d0 100644 --- a/modules/github_integration/frontend/module/tab-prs/wp-github-prs.service.ts +++ b/modules/github_integration/frontend/module/tab-prs/wp-github-prs.service.ts @@ -1,6 +1,6 @@ //-- copyright // OpenProject is an open source project management software. -// Copyright (C) 2012-2021 the OpenProject GmbH +// Copyright (C) 2012-2022 the OpenProject GmbH // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/api/v3/github_pull_requests/github_check_run_representer.rb b/modules/github_integration/lib/api/v3/github_pull_requests/github_check_run_representer.rb index 75f3964ebe..adff362a6d 100644 --- a/modules/github_integration/lib/api/v3/github_pull_requests/github_check_run_representer.rb +++ b/modules/github_integration/lib/api/v3/github_pull_requests/github_check_run_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_collection_representer.rb b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_collection_representer.rb index 4d314e50bf..31aa5e113f 100644 --- a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_collection_representer.rb +++ b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_representer.rb b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_representer.rb index 8f48a04cfe..8f3573fb8d 100644 --- a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_representer.rb +++ b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_request_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_requests_by_work_package_api.rb b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_requests_by_work_package_api.rb index b31174b495..46baa1a10f 100644 --- a/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_requests_by_work_package_api.rb +++ b/modules/github_integration/lib/api/v3/github_pull_requests/github_pull_requests_by_work_package_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/api/v3/github_pull_requests/github_user_representer.rb b/modules/github_integration/lib/api/v3/github_pull_requests/github_user_representer.rb index 827823edc4..c44cbf5ab5 100644 --- a/modules/github_integration/lib/api/v3/github_pull_requests/github_user_representer.rb +++ b/modules/github_integration/lib/api/v3/github_pull_requests/github_user_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration.rb b/modules/github_integration/lib/open_project/github_integration.rb index 228f1707d1..266b1162e6 100644 --- a/modules/github_integration/lib/open_project/github_integration.rb +++ b/modules/github_integration/lib/open_project/github_integration.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/engine.rb b/modules/github_integration/lib/open_project/github_integration/engine.rb index 34f62beab2..22478a19f5 100644 --- a/modules/github_integration/lib/open_project/github_integration/engine.rb +++ b/modules/github_integration/lib/open_project/github_integration/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/hook_handler.rb b/modules/github_integration/lib/open_project/github_integration/hook_handler.rb index 2917b7069b..b9d483f33e 100644 --- a/modules/github_integration/lib/open_project/github_integration/hook_handler.rb +++ b/modules/github_integration/lib/open_project/github_integration/hook_handler.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/notification_handler.rb b/modules/github_integration/lib/open_project/github_integration/notification_handler.rb index 4657ac85f3..222c8f16c8 100644 --- a/modules/github_integration/lib/open_project/github_integration/notification_handler.rb +++ b/modules/github_integration/lib/open_project/github_integration/notification_handler.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/notification_handler/check_run.rb b/modules/github_integration/lib/open_project/github_integration/notification_handler/check_run.rb index 879ab37147..6ab6a7f194 100644 --- a/modules/github_integration/lib/open_project/github_integration/notification_handler/check_run.rb +++ b/modules/github_integration/lib/open_project/github_integration/notification_handler/check_run.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/notification_handler/helper.rb b/modules/github_integration/lib/open_project/github_integration/notification_handler/helper.rb index 04343f3d51..5457c08569 100644 --- a/modules/github_integration/lib/open_project/github_integration/notification_handler/helper.rb +++ b/modules/github_integration/lib/open_project/github_integration/notification_handler/helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/notification_handler/issue_comment.rb b/modules/github_integration/lib/open_project/github_integration/notification_handler/issue_comment.rb index 9e00d81e9a..585642a106 100644 --- a/modules/github_integration/lib/open_project/github_integration/notification_handler/issue_comment.rb +++ b/modules/github_integration/lib/open_project/github_integration/notification_handler/issue_comment.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/notification_handler/pull_request.rb b/modules/github_integration/lib/open_project/github_integration/notification_handler/pull_request.rb index 08d75583fd..65cb5d9367 100644 --- a/modules/github_integration/lib/open_project/github_integration/notification_handler/pull_request.rb +++ b/modules/github_integration/lib/open_project/github_integration/notification_handler/pull_request.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/services.rb b/modules/github_integration/lib/open_project/github_integration/services.rb index e68dd1da76..55630996a9 100644 --- a/modules/github_integration/lib/open_project/github_integration/services.rb +++ b/modules/github_integration/lib/open_project/github_integration/services.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/services/upsert_check_run.rb b/modules/github_integration/lib/open_project/github_integration/services/upsert_check_run.rb index 8de3e2fcfa..edafc3c286 100644 --- a/modules/github_integration/lib/open_project/github_integration/services/upsert_check_run.rb +++ b/modules/github_integration/lib/open_project/github_integration/services/upsert_check_run.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/services/upsert_github_user.rb b/modules/github_integration/lib/open_project/github_integration/services/upsert_github_user.rb index be23dd36e6..21901d7e4b 100644 --- a/modules/github_integration/lib/open_project/github_integration/services/upsert_github_user.rb +++ b/modules/github_integration/lib/open_project/github_integration/services/upsert_github_user.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/services/upsert_partial_pull_request.rb b/modules/github_integration/lib/open_project/github_integration/services/upsert_partial_pull_request.rb index 2227daf3dc..7179f785c5 100644 --- a/modules/github_integration/lib/open_project/github_integration/services/upsert_partial_pull_request.rb +++ b/modules/github_integration/lib/open_project/github_integration/services/upsert_partial_pull_request.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/open_project/github_integration/services/upsert_pull_request.rb b/modules/github_integration/lib/open_project/github_integration/services/upsert_pull_request.rb index 515aa9573b..e0be74bc18 100644 --- a/modules/github_integration/lib/open_project/github_integration/services/upsert_pull_request.rb +++ b/modules/github_integration/lib/open_project/github_integration/services/upsert_pull_request.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/lib/openproject-github_integration.rb b/modules/github_integration/lib/openproject-github_integration.rb index e5fd22f773..ecd628a32e 100644 --- a/modules/github_integration/lib/openproject-github_integration.rb +++ b/modules/github_integration/lib/openproject-github_integration.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/factories/github_check_run_factory.rb b/modules/github_integration/spec/factories/github_check_run_factory.rb index f23182962f..9ca577b7ed 100644 --- a/modules/github_integration/spec/factories/github_check_run_factory.rb +++ b/modules/github_integration/spec/factories/github_check_run_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/factories/github_pull_request_factory.rb b/modules/github_integration/spec/factories/github_pull_request_factory.rb index 2eac028148..6ccdd96e64 100644 --- a/modules/github_integration/spec/factories/github_pull_request_factory.rb +++ b/modules/github_integration/spec/factories/github_pull_request_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/factories/github_user_factory.rb b/modules/github_integration/spec/factories/github_user_factory.rb index 56599d9000..cf022263e9 100644 --- a/modules/github_integration/spec/factories/github_user_factory.rb +++ b/modules/github_integration/spec/factories/github_user_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/features/work_package_github_tab_spec.rb b/modules/github_integration/spec/features/work_package_github_tab_spec.rb index 12840777c0..7f1a1c7a5c 100644 --- a/modules/github_integration/spec/features/work_package_github_tab_spec.rb +++ b/modules/github_integration/spec/features/work_package_github_tab_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_check_run_representer_spec.rb b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_check_run_representer_spec.rb index 8d3f9cb88b..010e63eaca 100644 --- a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_check_run_representer_spec.rb +++ b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_check_run_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_pull_request_representer_spec.rb b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_pull_request_representer_spec.rb index 2679242969..93aa48176e 100644 --- a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_pull_request_representer_spec.rb +++ b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_pull_request_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_user_representer_spec.rb b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_user_representer_spec.rb index 6617013553..647e844e4a 100644 --- a/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_user_representer_spec.rb +++ b/modules/github_integration/spec/lib/api/v3/github_pull_requests/github_user_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_integration_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_integration_spec.rb index f618fe7474..cf3b58dead 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_integration_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_spec.rb index 4f48d810da..29c945e868 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/hook_handler_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/check_run_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/check_run_spec.rb index 45f04f81da..5d8afbb009 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/check_run_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/check_run_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/helper_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/helper_spec.rb index c148aba760..82cf221ee2 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/helper_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/issue_comment_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/issue_comment_spec.rb index 6db36b8576..3d13cd8afb 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/issue_comment_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/issue_comment_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/pull_request_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/pull_request_spec.rb index c858ccdb04..289dfb9f9b 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/pull_request_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler/pull_request_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler_spec.rb index ad6169867a..9260f2feae 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/notification_handler_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/notification_handler_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_check_run_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_check_run_spec.rb index 433507dc18..5ac46e5015 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_check_run_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_check_run_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_github_user_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_github_user_spec.rb index 7a99b782b8..727697084a 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_github_user_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_github_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_partial_pull_request_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_partial_pull_request_spec.rb index ca94d8f28f..b7899fa832 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_partial_pull_request_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_partial_pull_request_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_pull_request_spec.rb b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_pull_request_spec.rb index efde4dafed..4eff18f48c 100644 --- a/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_pull_request_spec.rb +++ b/modules/github_integration/spec/lib/open_project/github_integration/services/upsert_pull_request_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/models/github_check_run_spec.rb b/modules/github_integration/spec/models/github_check_run_spec.rb index 76b678a5b0..41f0a2608d 100644 --- a/modules/github_integration/spec/models/github_check_run_spec.rb +++ b/modules/github_integration/spec/models/github_check_run_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/models/github_pull_request_spec.rb b/modules/github_integration/spec/models/github_pull_request_spec.rb index 9f30435ad1..b3544647a2 100644 --- a/modules/github_integration/spec/models/github_pull_request_spec.rb +++ b/modules/github_integration/spec/models/github_pull_request_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/models/github_user_spec.rb b/modules/github_integration/spec/models/github_user_spec.rb index 0e923468c4..6c5488204d 100644 --- a/modules/github_integration/spec/models/github_user_spec.rb +++ b/modules/github_integration/spec/models/github_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/spec_helper.rb b/modules/github_integration/spec/spec_helper.rb index 7aa94f800d..77390a0950 100644 --- a/modules/github_integration/spec/spec_helper.rb +++ b/modules/github_integration/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/support/pages/work_package_github_tab.rb b/modules/github_integration/spec/support/pages/work_package_github_tab.rb index 7dbdd93a77..00cdf20236 100644 --- a/modules/github_integration/spec/support/pages/work_package_github_tab.rb +++ b/modules/github_integration/spec/support/pages/work_package_github_tab.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/support/webhook_fixture_helpers.rb b/modules/github_integration/spec/support/webhook_fixture_helpers.rb index 3e7afef487..01d5cb70a9 100644 --- a/modules/github_integration/spec/support/webhook_fixture_helpers.rb +++ b/modules/github_integration/spec/support/webhook_fixture_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/github_integration/spec/workers/cron/clear_old_pull_requests_job_spec.rb b/modules/github_integration/spec/workers/cron/clear_old_pull_requests_job_spec.rb index 444e98f840..96bdf90907 100644 --- a/modules/github_integration/spec/workers/cron/clear_old_pull_requests_job_spec.rb +++ b/modules/github_integration/spec/workers/cron/clear_old_pull_requests_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/contracts/grids/base_contract.rb b/modules/grids/app/contracts/grids/base_contract.rb index 00701882e0..54145f62d6 100644 --- a/modules/grids/app/contracts/grids/base_contract.rb +++ b/modules/grids/app/contracts/grids/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/contracts/grids/create_contract.rb b/modules/grids/app/contracts/grids/create_contract.rb index 4808595eab..ae2c15380b 100644 --- a/modules/grids/app/contracts/grids/create_contract.rb +++ b/modules/grids/app/contracts/grids/create_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/contracts/grids/delete_contract.rb b/modules/grids/app/contracts/grids/delete_contract.rb index 743cd4c2cf..08b26c75c8 100644 --- a/modules/grids/app/contracts/grids/delete_contract.rb +++ b/modules/grids/app/contracts/grids/delete_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/contracts/grids/update_contract.rb b/modules/grids/app/contracts/grids/update_contract.rb index 2cdb7cc8c4..77138bee09 100644 --- a/modules/grids/app/contracts/grids/update_contract.rb +++ b/modules/grids/app/contracts/grids/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/controllers/api/v3/attachments/attachments_by_grid_api.rb b/modules/grids/app/controllers/api/v3/attachments/attachments_by_grid_api.rb index b840e59bfd..2f82c5eaac 100644 --- a/modules/grids/app/controllers/api/v3/attachments/attachments_by_grid_api.rb +++ b/modules/grids/app/controllers/api/v3/attachments/attachments_by_grid_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/controllers/api/v3/grids/create_form_api.rb b/modules/grids/app/controllers/api/v3/grids/create_form_api.rb index 0ad1ca6d59..3d56356a5c 100644 --- a/modules/grids/app/controllers/api/v3/grids/create_form_api.rb +++ b/modules/grids/app/controllers/api/v3/grids/create_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/controllers/api/v3/grids/grids_api.rb b/modules/grids/app/controllers/api/v3/grids/grids_api.rb index 12384b6f66..82cfaf78d5 100644 --- a/modules/grids/app/controllers/api/v3/grids/grids_api.rb +++ b/modules/grids/app/controllers/api/v3/grids/grids_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/controllers/api/v3/grids/schemas/grid_schema_api.rb b/modules/grids/app/controllers/api/v3/grids/schemas/grid_schema_api.rb index 8a9cf02ba8..e41dd0e505 100644 --- a/modules/grids/app/controllers/api/v3/grids/schemas/grid_schema_api.rb +++ b/modules/grids/app/controllers/api/v3/grids/schemas/grid_schema_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/controllers/api/v3/grids/update_form_api.rb b/modules/grids/app/controllers/api/v3/grids/update_form_api.rb index 4e929acfcd..bb639b2e7b 100644 --- a/modules/grids/app/controllers/api/v3/grids/update_form_api.rb +++ b/modules/grids/app/controllers/api/v3/grids/update_form_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/models/grids/grid.rb b/modules/grids/app/models/grids/grid.rb index 2e346bf87c..fa0e7332c7 100644 --- a/modules/grids/app/models/grids/grid.rb +++ b/modules/grids/app/models/grids/grid.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/models/grids/widget.rb b/modules/grids/app/models/grids/widget.rb index 6ece48447c..60a73bae0f 100644 --- a/modules/grids/app/models/grids/widget.rb +++ b/modules/grids/app/models/grids/widget.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/queries/grids/filters/grid_filter.rb b/modules/grids/app/queries/grids/filters/grid_filter.rb index 2bffd98161..5b7dc4dec9 100644 --- a/modules/grids/app/queries/grids/filters/grid_filter.rb +++ b/modules/grids/app/queries/grids/filters/grid_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/queries/grids/filters/page_filter.rb b/modules/grids/app/queries/grids/filters/page_filter.rb index 7197a7040e..41e577945e 100644 --- a/modules/grids/app/queries/grids/filters/page_filter.rb +++ b/modules/grids/app/queries/grids/filters/page_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/queries/grids/filters/scope_filter.rb b/modules/grids/app/queries/grids/filters/scope_filter.rb index b952920e3f..e7af193323 100644 --- a/modules/grids/app/queries/grids/filters/scope_filter.rb +++ b/modules/grids/app/queries/grids/filters/scope_filter.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/queries/grids/query.rb b/modules/grids/app/queries/grids/query.rb index 38c3497a06..0c74a70593 100644 --- a/modules/grids/app/queries/grids/query.rb +++ b/modules/grids/app/queries/grids/query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/create_form_representer.rb b/modules/grids/app/representers/api/v3/grids/create_form_representer.rb index 64461309fb..63cce4f885 100644 --- a/modules/grids/app/representers/api/v3/grids/create_form_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/create_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/form_representer.rb b/modules/grids/app/representers/api/v3/grids/form_representer.rb index 42115efc03..d6edc502c3 100644 --- a/modules/grids/app/representers/api/v3/grids/form_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/grid_collection_representer.rb b/modules/grids/app/representers/api/v3/grids/grid_collection_representer.rb index ad19ab4252..89f34cbdb7 100644 --- a/modules/grids/app/representers/api/v3/grids/grid_collection_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/grid_collection_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/grid_payload_representer.rb b/modules/grids/app/representers/api/v3/grids/grid_payload_representer.rb index 77b1327daa..c69eb00704 100644 --- a/modules/grids/app/representers/api/v3/grids/grid_payload_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/grid_payload_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/grid_representer.rb b/modules/grids/app/representers/api/v3/grids/grid_representer.rb index a72e813e7b..98253ba733 100644 --- a/modules/grids/app/representers/api/v3/grids/grid_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/grid_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/schemas/grid_schema_representer.rb b/modules/grids/app/representers/api/v3/grids/schemas/grid_schema_representer.rb index 214fc05aec..baed6e4337 100644 --- a/modules/grids/app/representers/api/v3/grids/schemas/grid_schema_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/schemas/grid_schema_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/update_form_representer.rb b/modules/grids/app/representers/api/v3/grids/update_form_representer.rb index 0388a84a39..8da0334c3e 100644 --- a/modules/grids/app/representers/api/v3/grids/update_form_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/update_form_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/chart_options_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/chart_options_representer.rb index 500b286f2e..72602567bb 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/chart_options_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/chart_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/custom_text_options_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/custom_text_options_representer.rb index 873e110475..58d935abe2 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/custom_text_options_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/custom_text_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/default_options_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/default_options_representer.rb index 5a9a7b449a..d0ec84a54b 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/default_options_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/default_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/query_options_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/query_options_representer.rb index 788139bcbd..2e29517a4d 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/query_options_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/query_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/time_entry_calendar_options_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/time_entry_calendar_options_representer.rb index 401caa18fe..bd4e2707b4 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/time_entry_calendar_options_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/time_entry_calendar_options_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/representers/api/v3/grids/widgets/widget_representer.rb b/modules/grids/app/representers/api/v3/grids/widgets/widget_representer.rb index a06fb25b1d..98dc1dcd4f 100644 --- a/modules/grids/app/representers/api/v3/grids/widgets/widget_representer.rb +++ b/modules/grids/app/representers/api/v3/grids/widgets/widget_representer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/services/grids/create_service.rb b/modules/grids/app/services/grids/create_service.rb index 0b34b7e5be..e349561071 100644 --- a/modules/grids/app/services/grids/create_service.rb +++ b/modules/grids/app/services/grids/create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/services/grids/delete_service.rb b/modules/grids/app/services/grids/delete_service.rb index 0955bf8409..161494f079 100644 --- a/modules/grids/app/services/grids/delete_service.rb +++ b/modules/grids/app/services/grids/delete_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/services/grids/set_attributes_service.rb b/modules/grids/app/services/grids/set_attributes_service.rb index 0e4c5f2f86..08a98c5aa2 100644 --- a/modules/grids/app/services/grids/set_attributes_service.rb +++ b/modules/grids/app/services/grids/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/app/services/grids/update_service.rb b/modules/grids/app/services/grids/update_service.rb index d88de478c8..e87d581acf 100644 --- a/modules/grids/app/services/grids/update_service.rb +++ b/modules/grids/app/services/grids/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/lib/grids/configuration.rb b/modules/grids/lib/grids/configuration.rb index cdbf1ee117..5b8f721d85 100644 --- a/modules/grids/lib/grids/configuration.rb +++ b/modules/grids/lib/grids/configuration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/lib/grids/configuration/registration.rb b/modules/grids/lib/grids/configuration/registration.rb index 9da0a7f55e..4192861e23 100644 --- a/modules/grids/lib/grids/configuration/registration.rb +++ b/modules/grids/lib/grids/configuration/registration.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/lib/grids/configuration/widget_strategy.rb b/modules/grids/lib/grids/configuration/widget_strategy.rb index 835c9ba545..aafd1461ea 100644 --- a/modules/grids/lib/grids/configuration/widget_strategy.rb +++ b/modules/grids/lib/grids/configuration/widget_strategy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/lib/grids/factory.rb b/modules/grids/lib/grids/factory.rb index f064c87834..2221df21ad 100644 --- a/modules/grids/lib/grids/factory.rb +++ b/modules/grids/lib/grids/factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/contracts/grids/create_contract_spec.rb b/modules/grids/spec/contracts/grids/create_contract_spec.rb index c3dd4d89f7..1315af7fb2 100644 --- a/modules/grids/spec/contracts/grids/create_contract_spec.rb +++ b/modules/grids/spec/contracts/grids/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/contracts/grids/delete_contract_spec.rb b/modules/grids/spec/contracts/grids/delete_contract_spec.rb index fc542270c5..e3932b9595 100644 --- a/modules/grids/spec/contracts/grids/delete_contract_spec.rb +++ b/modules/grids/spec/contracts/grids/delete_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/contracts/grids/shared_examples.rb b/modules/grids/spec/contracts/grids/shared_examples.rb index 2ee052fe71..cbe1db730a 100644 --- a/modules/grids/spec/contracts/grids/shared_examples.rb +++ b/modules/grids/spec/contracts/grids/shared_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/contracts/grids/update_contract_spec.rb b/modules/grids/spec/contracts/grids/update_contract_spec.rb index 6c10a0d39c..287ee28406 100644 --- a/modules/grids/spec/contracts/grids/update_contract_spec.rb +++ b/modules/grids/spec/contracts/grids/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/lib/api/v3/grids/grid_payload_representer_parsing_spec.rb b/modules/grids/spec/lib/api/v3/grids/grid_payload_representer_parsing_spec.rb index ee60c7c430..fff59480fd 100644 --- a/modules/grids/spec/lib/api/v3/grids/grid_payload_representer_parsing_spec.rb +++ b/modules/grids/spec/lib/api/v3/grids/grid_payload_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/lib/api/v3/grids/grid_representer_rendering_spec.rb b/modules/grids/spec/lib/api/v3/grids/grid_representer_rendering_spec.rb index 9b096c579b..60f9c18a09 100644 --- a/modules/grids/spec/lib/api/v3/grids/grid_representer_rendering_spec.rb +++ b/modules/grids/spec/lib/api/v3/grids/grid_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/lib/api/v3/grids/schemas/grid_schema_representer_spec.rb b/modules/grids/spec/lib/api/v3/grids/schemas/grid_schema_representer_spec.rb index c06c2e95a5..d945945859 100644 --- a/modules/grids/spec/lib/api/v3/grids/schemas/grid_schema_representer_spec.rb +++ b/modules/grids/spec/lib/api/v3/grids/schemas/grid_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/lib/api/v3/utilities/file_helper_spec.rb b/modules/grids/spec/lib/api/v3/utilities/file_helper_spec.rb index 08476c8229..46d880e8b7 100644 --- a/modules/grids/spec/lib/api/v3/utilities/file_helper_spec.rb +++ b/modules/grids/spec/lib/api/v3/utilities/file_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/models/grids/grid_spec.rb b/modules/grids/spec/models/grids/grid_spec.rb index df6016f52f..2f45c16d6b 100644 --- a/modules/grids/spec/models/grids/grid_spec.rb +++ b/modules/grids/spec/models/grids/grid_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/models/grids/shared_model.rb b/modules/grids/spec/models/grids/shared_model.rb index c5a532b30d..1cd219714e 100644 --- a/modules/grids/spec/models/grids/shared_model.rb +++ b/modules/grids/spec/models/grids/shared_model.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/models/grids/widget_spec.rb b/modules/grids/spec/models/grids/widget_spec.rb index 3c276fdcc4..e83c271691 100644 --- a/modules/grids/spec/models/grids/widget_spec.rb +++ b/modules/grids/spec/models/grids/widget_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb b/modules/grids/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb index 72dfde4738..4f2dae3eed 100644 --- a/modules/grids/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb +++ b/modules/grids/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/requests/api/v3/grids/grids_resource_spec.rb b/modules/grids/spec/requests/api/v3/grids/grids_resource_spec.rb index cda43d760f..c07846bf1b 100644 --- a/modules/grids/spec/requests/api/v3/grids/grids_resource_spec.rb +++ b/modules/grids/spec/requests/api/v3/grids/grids_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/requests/api/v3/grids/grids_schema_resource_spec.rb b/modules/grids/spec/requests/api/v3/grids/grids_schema_resource_spec.rb index a0c47bfa56..03236234d5 100644 --- a/modules/grids/spec/requests/api/v3/grids/grids_schema_resource_spec.rb +++ b/modules/grids/spec/requests/api/v3/grids/grids_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb b/modules/grids/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb index 090d86977f..e7ef3e22c7 100644 --- a/modules/grids/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb +++ b/modules/grids/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/services/grids/create_service_spec.rb b/modules/grids/spec/services/grids/create_service_spec.rb index 1f815d6fe8..802f2934e4 100644 --- a/modules/grids/spec/services/grids/create_service_spec.rb +++ b/modules/grids/spec/services/grids/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/services/grids/set_attributes_service_spec.rb b/modules/grids/spec/services/grids/set_attributes_service_spec.rb index c45d3d7dc9..c661b46a5f 100644 --- a/modules/grids/spec/services/grids/set_attributes_service_spec.rb +++ b/modules/grids/spec/services/grids/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/services/grids/update_service_spec.rb b/modules/grids/spec/services/grids/update_service_spec.rb index dac23c37ab..423c002551 100644 --- a/modules/grids/spec/services/grids/update_service_spec.rb +++ b/modules/grids/spec/services/grids/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/grids/spec/support/pages/grid.rb b/modules/grids/spec/support/pages/grid.rb index 0313d2258d..2d4ea33800 100644 --- a/modules/grids/spec/support/pages/grid.rb +++ b/modules/grids/spec/support/pages/grid.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/app/workers/job_status/application_job_with_status.rb b/modules/job_status/app/workers/job_status/application_job_with_status.rb index 55ee5658ad..abdffe2a59 100644 --- a/modules/job_status/app/workers/job_status/application_job_with_status.rb +++ b/modules/job_status/app/workers/job_status/application_job_with_status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/app/workers/job_status/cron/clear_old_job_status_job.rb b/modules/job_status/app/workers/job_status/cron/clear_old_job_status_job.rb index d864beb8f5..b57dc39931 100644 --- a/modules/job_status/app/workers/job_status/cron/clear_old_job_status_job.rb +++ b/modules/job_status/app/workers/job_status/cron/clear_old_job_status_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/api/v3/job_status/job_status_api.rb b/modules/job_status/lib/api/v3/job_status/job_status_api.rb index 51b99d8573..0077d7d97e 100644 --- a/modules/job_status/lib/api/v3/job_status/job_status_api.rb +++ b/modules/job_status/lib/api/v3/job_status/job_status_api.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/api/v3/job_status/job_status_representer.rb b/modules/job_status/lib/api/v3/job_status/job_status_representer.rb index 533f408282..11016154ba 100644 --- a/modules/job_status/lib/api/v3/job_status/job_status_representer.rb +++ b/modules/job_status/lib/api/v3/job_status/job_status_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/open_project/job_status.rb b/modules/job_status/lib/open_project/job_status.rb index 3effe44b06..5dbf60a1ee 100644 --- a/modules/job_status/lib/open_project/job_status.rb +++ b/modules/job_status/lib/open_project/job_status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/open_project/job_status/engine.rb b/modules/job_status/lib/open_project/job_status/engine.rb index b54fa5b17a..15b90eee4c 100644 --- a/modules/job_status/lib/open_project/job_status/engine.rb +++ b/modules/job_status/lib/open_project/job_status/engine.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/open_project/job_status/event_listener.rb b/modules/job_status/lib/open_project/job_status/event_listener.rb index eeba5e9031..6adae61412 100644 --- a/modules/job_status/lib/open_project/job_status/event_listener.rb +++ b/modules/job_status/lib/open_project/job_status/event_listener.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/lib/openproject-job_status.rb b/modules/job_status/lib/openproject-job_status.rb index a045307fe2..a2b98f825e 100644 --- a/modules/job_status/lib/openproject-job_status.rb +++ b/modules/job_status/lib/openproject-job_status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/spec/factories/delayed_job_status_factory.rb b/modules/job_status/spec/factories/delayed_job_status_factory.rb index 5e8972c97a..5a7d2f009d 100644 --- a/modules/job_status/spec/factories/delayed_job_status_factory.rb +++ b/modules/job_status/spec/factories/delayed_job_status_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/spec/features/job_status_spec.rb b/modules/job_status/spec/features/job_status_spec.rb index e4455ae7f9..8e957aaa9b 100644 --- a/modules/job_status/spec/features/job_status_spec.rb +++ b/modules/job_status/spec/features/job_status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/job_status/spec/services/documents/update_service_spec.rb b/modules/job_status/spec/services/documents/update_service_spec.rb index 28138bdf60..a8d298e6f7 100644 --- a/modules/job_status/spec/services/documents/update_service_spec.rb +++ b/modules/job_status/spec/services/documents/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/ldap_groups/app/workers/ldap_groups/synchronization_job.rb b/modules/ldap_groups/app/workers/ldap_groups/synchronization_job.rb index b45bc273eb..49f351a246 100644 --- a/modules/ldap_groups/app/workers/ldap_groups/synchronization_job.rb +++ b/modules/ldap_groups/app/workers/ldap_groups/synchronization_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/ldap_groups/lib/tasks/ldap_groups.rake b/modules/ldap_groups/lib/tasks/ldap_groups.rake index aebc1621f8..410bfb63ae 100644 --- a/modules/ldap_groups/lib/tasks/ldap_groups.rake +++ b/modules/ldap_groups/lib/tasks/ldap_groups.rake @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/contracts/meeting_contents/base_contract.rb b/modules/meeting/app/contracts/meeting_contents/base_contract.rb index febc4efa49..fff557df19 100644 --- a/modules/meeting/app/contracts/meeting_contents/base_contract.rb +++ b/modules/meeting/app/contracts/meeting_contents/base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/contracts/meeting_contents/update_contract.rb b/modules/meeting/app/contracts/meeting_contents/update_contract.rb index e34a9505ef..6584f4747c 100644 --- a/modules/meeting/app/contracts/meeting_contents/update_contract.rb +++ b/modules/meeting/app/contracts/meeting_contents/update_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/controllers/meeting_agendas_controller.rb b/modules/meeting/app/controllers/meeting_agendas_controller.rb index 3003061c70..0afe911a5d 100644 --- a/modules/meeting/app/controllers/meeting_agendas_controller.rb +++ b/modules/meeting/app/controllers/meeting_agendas_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/controllers/meeting_contents_controller.rb b/modules/meeting/app/controllers/meeting_contents_controller.rb index 7b321187fa..86c4cfa88b 100644 --- a/modules/meeting/app/controllers/meeting_contents_controller.rb +++ b/modules/meeting/app/controllers/meeting_contents_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/controllers/meeting_minutes_controller.rb b/modules/meeting/app/controllers/meeting_minutes_controller.rb index c7361fa9fc..172b6b2ac1 100644 --- a/modules/meeting/app/controllers/meeting_minutes_controller.rb +++ b/modules/meeting/app/controllers/meeting_minutes_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/controllers/meetings_controller.rb b/modules/meeting/app/controllers/meetings_controller.rb index 261e3ef376..97fc51aa04 100644 --- a/modules/meeting/app/controllers/meetings_controller.rb +++ b/modules/meeting/app/controllers/meetings_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/helpers/meeting_contents_helper.rb b/modules/meeting/app/helpers/meeting_contents_helper.rb index dc96533d5a..19b902fc95 100644 --- a/modules/meeting/app/helpers/meeting_contents_helper.rb +++ b/modules/meeting/app/helpers/meeting_contents_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/helpers/meetings_helper.rb b/modules/meeting/app/helpers/meetings_helper.rb index 42652cbcdc..eabf989aa9 100644 --- a/modules/meeting/app/helpers/meetings_helper.rb +++ b/modules/meeting/app/helpers/meetings_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/mailers/meeting_mailer.rb b/modules/meeting/app/mailers/meeting_mailer.rb index 1b76c37995..52a283b872 100644 --- a/modules/meeting/app/mailers/meeting_mailer.rb +++ b/modules/meeting/app/mailers/meeting_mailer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/activities/meeting_activity_provider.rb b/modules/meeting/app/models/activities/meeting_activity_provider.rb index 861c33ddd2..9c4b0dae08 100644 --- a/modules/meeting/app/models/activities/meeting_activity_provider.rb +++ b/modules/meeting/app/models/activities/meeting_activity_provider.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/journal/meeting_content_journal.rb b/modules/meeting/app/models/journal/meeting_content_journal.rb index d1dd3f0e97..7fb0ab7d4f 100644 --- a/modules/meeting/app/models/journal/meeting_content_journal.rb +++ b/modules/meeting/app/models/journal/meeting_content_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/journal/meeting_journal.rb b/modules/meeting/app/models/journal/meeting_journal.rb index e0682d603d..3ad01f808f 100644 --- a/modules/meeting/app/models/journal/meeting_journal.rb +++ b/modules/meeting/app/models/journal/meeting_journal.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/meeting.rb b/modules/meeting/app/models/meeting.rb index bbb257f1f4..95b9d00385 100644 --- a/modules/meeting/app/models/meeting.rb +++ b/modules/meeting/app/models/meeting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/meeting_agenda.rb b/modules/meeting/app/models/meeting_agenda.rb index 6d3cc55fc4..b15891f76d 100644 --- a/modules/meeting/app/models/meeting_agenda.rb +++ b/modules/meeting/app/models/meeting_agenda.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/meeting_content.rb b/modules/meeting/app/models/meeting_content.rb index 223c259e7b..0df9f13507 100644 --- a/modules/meeting/app/models/meeting_content.rb +++ b/modules/meeting/app/models/meeting_content.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/meeting_minutes.rb b/modules/meeting/app/models/meeting_minutes.rb index 502293cdde..1f84184d54 100644 --- a/modules/meeting/app/models/meeting_minutes.rb +++ b/modules/meeting/app/models/meeting_minutes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/models/meeting_participant.rb b/modules/meeting/app/models/meeting_participant.rb index 0420037424..7412c0ede4 100644 --- a/modules/meeting/app/models/meeting_participant.rb +++ b/modules/meeting/app/models/meeting_participant.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/services/meeting_contents/set_attributes_service.rb b/modules/meeting/app/services/meeting_contents/set_attributes_service.rb index df4a5986dc..728833a447 100644 --- a/modules/meeting/app/services/meeting_contents/set_attributes_service.rb +++ b/modules/meeting/app/services/meeting_contents/set_attributes_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/services/meeting_contents/update_service.rb b/modules/meeting/app/services/meeting_contents/update_service.rb index 273a090ec0..65ba9f59d6 100644 --- a/modules/meeting/app/services/meeting_contents/update_service.rb +++ b/modules/meeting/app/services/meeting_contents/update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_contents/_form.html.erb b/modules/meeting/app/views/meeting_contents/_form.html.erb index fe3fdef3ed..3dd1b99400 100644 --- a/modules/meeting/app/views/meeting_contents/_form.html.erb +++ b/modules/meeting/app/views/meeting_contents/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_contents/_show.html.erb b/modules/meeting/app/views/meeting_contents/_show.html.erb index eaff12880d..e9de4bf610 100644 --- a/modules/meeting/app/views/meeting_contents/_show.html.erb +++ b/modules/meeting/app/views/meeting_contents/_show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_contents/diff.html.erb b/modules/meeting/app/views/meeting_contents/diff.html.erb index 12b2c830d1..615ac50f28 100644 --- a/modules/meeting/app/views/meeting_contents/diff.html.erb +++ b/modules/meeting/app/views/meeting_contents/diff.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_contents/history.html.erb b/modules/meeting/app/views/meeting_contents/history.html.erb index a134a5f58c..e4ca98ceea 100644 --- a/modules/meeting/app/views/meeting_contents/history.html.erb +++ b/modules/meeting/app/views/meeting_contents/history.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_contents/show.html.erb b/modules/meeting/app/views/meeting_contents/show.html.erb index 6275125df9..dc7273be78 100644 --- a/modules/meeting/app/views/meeting_contents/show.html.erb +++ b/modules/meeting/app/views/meeting_contents/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_mailer/content_for_review.html.erb b/modules/meeting/app/views/meeting_mailer/content_for_review.html.erb index aa8c466f0a..71995d1b4d 100644 --- a/modules/meeting/app/views/meeting_mailer/content_for_review.html.erb +++ b/modules/meeting/app/views/meeting_mailer/content_for_review.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meeting_mailer/content_for_review.text.erb b/modules/meeting/app/views/meeting_mailer/content_for_review.text.erb index c1ff83f4de..6410d28921 100644 --- a/modules/meeting/app/views/meeting_mailer/content_for_review.text.erb +++ b/modules/meeting/app/views/meeting_mailer/content_for_review.text.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meetings/_form.html.erb b/modules/meeting/app/views/meetings/_form.html.erb index 746b5c86d2..635b693d95 100644 --- a/modules/meeting/app/views/meetings/_form.html.erb +++ b/modules/meeting/app/views/meetings/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meetings/edit.html.erb b/modules/meeting/app/views/meetings/edit.html.erb index d23a61163d..7716d07731 100644 --- a/modules/meeting/app/views/meetings/edit.html.erb +++ b/modules/meeting/app/views/meetings/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meetings/index.html.erb b/modules/meeting/app/views/meetings/index.html.erb index c2b1922669..fbcb7bad92 100644 --- a/modules/meeting/app/views/meetings/index.html.erb +++ b/modules/meeting/app/views/meetings/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meetings/new.html.erb b/modules/meeting/app/views/meetings/new.html.erb index b2e4d378f0..0314e59303 100644 --- a/modules/meeting/app/views/meetings/new.html.erb +++ b/modules/meeting/app/views/meetings/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/app/views/meetings/show.html.erb b/modules/meeting/app/views/meetings/show.html.erb index f2be8efdb2..5e587e9b52 100644 --- a/modules/meeting/app/views/meetings/show.html.erb +++ b/modules/meeting/app/views/meetings/show.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/config/locales/crowdin/af.yml b/modules/meeting/config/locales/crowdin/af.yml index abe8d68ff7..cadcad9997 100644 --- a/modules/meeting/config/locales/crowdin/af.yml +++ b/modules/meeting/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ar.yml b/modules/meeting/config/locales/crowdin/ar.yml index efa02901ef..b302c3eb7d 100644 --- a/modules/meeting/config/locales/crowdin/ar.yml +++ b/modules/meeting/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/az.yml b/modules/meeting/config/locales/crowdin/az.yml index 44ddf25a01..6b2baad1e9 100644 --- a/modules/meeting/config/locales/crowdin/az.yml +++ b/modules/meeting/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/bg.yml b/modules/meeting/config/locales/crowdin/bg.yml index 6113743e08..6c5bbaf5fc 100644 --- a/modules/meeting/config/locales/crowdin/bg.yml +++ b/modules/meeting/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ca.yml b/modules/meeting/config/locales/crowdin/ca.yml index 62744e24f1..d89ea35a0e 100644 --- a/modules/meeting/config/locales/crowdin/ca.yml +++ b/modules/meeting/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/cs.yml b/modules/meeting/config/locales/crowdin/cs.yml index 729d880629..80addd280a 100644 --- a/modules/meeting/config/locales/crowdin/cs.yml +++ b/modules/meeting/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/da.yml b/modules/meeting/config/locales/crowdin/da.yml index 609272813c..051772b7c6 100644 --- a/modules/meeting/config/locales/crowdin/da.yml +++ b/modules/meeting/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/de.yml b/modules/meeting/config/locales/crowdin/de.yml index 2af1b1555d..cace241baf 100644 --- a/modules/meeting/config/locales/crowdin/de.yml +++ b/modules/meeting/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/el.yml b/modules/meeting/config/locales/crowdin/el.yml index e7739a3401..6db25410d7 100644 --- a/modules/meeting/config/locales/crowdin/el.yml +++ b/modules/meeting/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/eo.yml b/modules/meeting/config/locales/crowdin/eo.yml index b8e8140a9c..1f1215729a 100644 --- a/modules/meeting/config/locales/crowdin/eo.yml +++ b/modules/meeting/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/es.yml b/modules/meeting/config/locales/crowdin/es.yml index a907c064db..2f6c7bbb1f 100644 --- a/modules/meeting/config/locales/crowdin/es.yml +++ b/modules/meeting/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/et.yml b/modules/meeting/config/locales/crowdin/et.yml index 7ec42e7cf7..cb59bfa8f3 100644 --- a/modules/meeting/config/locales/crowdin/et.yml +++ b/modules/meeting/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/fa.yml b/modules/meeting/config/locales/crowdin/fa.yml index b008346720..e9532f0282 100644 --- a/modules/meeting/config/locales/crowdin/fa.yml +++ b/modules/meeting/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/fi.yml b/modules/meeting/config/locales/crowdin/fi.yml index e34b81f76a..6e08410c66 100644 --- a/modules/meeting/config/locales/crowdin/fi.yml +++ b/modules/meeting/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/fil.yml b/modules/meeting/config/locales/crowdin/fil.yml index 9c7d9f5c6b..5670f9026f 100644 --- a/modules/meeting/config/locales/crowdin/fil.yml +++ b/modules/meeting/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/fr.yml b/modules/meeting/config/locales/crowdin/fr.yml index 7e6c662766..b7508145d4 100644 --- a/modules/meeting/config/locales/crowdin/fr.yml +++ b/modules/meeting/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/he.yml b/modules/meeting/config/locales/crowdin/he.yml index 53c7a2eeb9..0b3f78f113 100644 --- a/modules/meeting/config/locales/crowdin/he.yml +++ b/modules/meeting/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/hi.yml b/modules/meeting/config/locales/crowdin/hi.yml index 5f07f7c18c..1d6ba8abdd 100644 --- a/modules/meeting/config/locales/crowdin/hi.yml +++ b/modules/meeting/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/hr.yml b/modules/meeting/config/locales/crowdin/hr.yml index aca40c8617..bbf85ebc60 100644 --- a/modules/meeting/config/locales/crowdin/hr.yml +++ b/modules/meeting/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/hu.yml b/modules/meeting/config/locales/crowdin/hu.yml index af8c15d184..803287c049 100644 --- a/modules/meeting/config/locales/crowdin/hu.yml +++ b/modules/meeting/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/id.yml b/modules/meeting/config/locales/crowdin/id.yml index 5e66b10735..aabc8cf634 100644 --- a/modules/meeting/config/locales/crowdin/id.yml +++ b/modules/meeting/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/it.yml b/modules/meeting/config/locales/crowdin/it.yml index d17d3ad1df..1f8e6f8aef 100644 --- a/modules/meeting/config/locales/crowdin/it.yml +++ b/modules/meeting/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ja.yml b/modules/meeting/config/locales/crowdin/ja.yml index 7c2cb2f129..a27c7302e6 100644 --- a/modules/meeting/config/locales/crowdin/ja.yml +++ b/modules/meeting/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ko.yml b/modules/meeting/config/locales/crowdin/ko.yml index 48e49ba37a..cb7a05807d 100644 --- a/modules/meeting/config/locales/crowdin/ko.yml +++ b/modules/meeting/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/lol.yml b/modules/meeting/config/locales/crowdin/lol.yml index cb54d01dcf..83b5e0f02c 100644 --- a/modules/meeting/config/locales/crowdin/lol.yml +++ b/modules/meeting/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/lt.yml b/modules/meeting/config/locales/crowdin/lt.yml index 5fde6a71bd..a46453a3e5 100644 --- a/modules/meeting/config/locales/crowdin/lt.yml +++ b/modules/meeting/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/lv.yml b/modules/meeting/config/locales/crowdin/lv.yml index 2c2f0d886a..4e336f9ae6 100644 --- a/modules/meeting/config/locales/crowdin/lv.yml +++ b/modules/meeting/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ne.yml b/modules/meeting/config/locales/crowdin/ne.yml index 70435d71df..e4448e420d 100644 --- a/modules/meeting/config/locales/crowdin/ne.yml +++ b/modules/meeting/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/nl.yml b/modules/meeting/config/locales/crowdin/nl.yml index 62df4ed700..4a0f6d8aaf 100644 --- a/modules/meeting/config/locales/crowdin/nl.yml +++ b/modules/meeting/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/no.yml b/modules/meeting/config/locales/crowdin/no.yml index 89dc69eae0..65cb9aaadd 100644 --- a/modules/meeting/config/locales/crowdin/no.yml +++ b/modules/meeting/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/pl.yml b/modules/meeting/config/locales/crowdin/pl.yml index 73aaa8f29c..a74bd9d26e 100644 --- a/modules/meeting/config/locales/crowdin/pl.yml +++ b/modules/meeting/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/pt.yml b/modules/meeting/config/locales/crowdin/pt.yml index ea82008159..825dfd7781 100644 --- a/modules/meeting/config/locales/crowdin/pt.yml +++ b/modules/meeting/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ro.yml b/modules/meeting/config/locales/crowdin/ro.yml index 062addd8c0..5fcb9e3a9b 100644 --- a/modules/meeting/config/locales/crowdin/ro.yml +++ b/modules/meeting/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/ru.yml b/modules/meeting/config/locales/crowdin/ru.yml index 31c6aceb96..b59fe92168 100644 --- a/modules/meeting/config/locales/crowdin/ru.yml +++ b/modules/meeting/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/rw.yml b/modules/meeting/config/locales/crowdin/rw.yml index f311afcbd7..6719c49cad 100644 --- a/modules/meeting/config/locales/crowdin/rw.yml +++ b/modules/meeting/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/si.yml b/modules/meeting/config/locales/crowdin/si.yml index 1ccc1a4e0a..c74d244c8c 100644 --- a/modules/meeting/config/locales/crowdin/si.yml +++ b/modules/meeting/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/sk.yml b/modules/meeting/config/locales/crowdin/sk.yml index 931a645f36..e503798c5c 100644 --- a/modules/meeting/config/locales/crowdin/sk.yml +++ b/modules/meeting/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/sl.yml b/modules/meeting/config/locales/crowdin/sl.yml index 52c1c742a6..7e80e497ad 100644 --- a/modules/meeting/config/locales/crowdin/sl.yml +++ b/modules/meeting/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/sv.yml b/modules/meeting/config/locales/crowdin/sv.yml index eb5bf32ab9..79683723cb 100644 --- a/modules/meeting/config/locales/crowdin/sv.yml +++ b/modules/meeting/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/th.yml b/modules/meeting/config/locales/crowdin/th.yml index 40683bd243..686d8a336f 100644 --- a/modules/meeting/config/locales/crowdin/th.yml +++ b/modules/meeting/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/tr.yml b/modules/meeting/config/locales/crowdin/tr.yml index 6db76b8ac7..68490e0f21 100644 --- a/modules/meeting/config/locales/crowdin/tr.yml +++ b/modules/meeting/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/uk.yml b/modules/meeting/config/locales/crowdin/uk.yml index be1212ea25..ba44cd8663 100644 --- a/modules/meeting/config/locales/crowdin/uk.yml +++ b/modules/meeting/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/vi.yml b/modules/meeting/config/locales/crowdin/vi.yml index d06123f30b..afd1ddf40f 100644 --- a/modules/meeting/config/locales/crowdin/vi.yml +++ b/modules/meeting/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/zh-CN.yml b/modules/meeting/config/locales/crowdin/zh-CN.yml index bad5c18849..c14b18e0b9 100644 --- a/modules/meeting/config/locales/crowdin/zh-CN.yml +++ b/modules/meeting/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/crowdin/zh-TW.yml b/modules/meeting/config/locales/crowdin/zh-TW.yml index 064b84c7a0..6f2d20e0c6 100644 --- a/modules/meeting/config/locales/crowdin/zh-TW.yml +++ b/modules/meeting/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/meeting/config/locales/en.yml b/modules/meeting/config/locales/en.yml index 496036e0c5..3844460fc8 100644 --- a/modules/meeting/config/locales/en.yml +++ b/modules/meeting/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/config/routes.rb b/modules/meeting/config/routes.rb index eef3366454..d8ecf7cbb1 100644 --- a/modules/meeting/config/routes.rb +++ b/modules/meeting/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/db/migrate/20180323135408_to_v710_aggregated_meeting_migrations.rb b/modules/meeting/db/migrate/20180323135408_to_v710_aggregated_meeting_migrations.rb index 530843e249..34f825e0e2 100644 --- a/modules/meeting/db/migrate/20180323135408_to_v710_aggregated_meeting_migrations.rb +++ b/modules/meeting/db/migrate/20180323135408_to_v710_aggregated_meeting_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/api/v3/attachments/attachments_by_meeting_content_api.rb b/modules/meeting/lib/api/v3/attachments/attachments_by_meeting_content_api.rb index 3f163c32d8..0420bc3da7 100644 --- a/modules/meeting/lib/api/v3/attachments/attachments_by_meeting_content_api.rb +++ b/modules/meeting/lib/api/v3/attachments/attachments_by_meeting_content_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/api/v3/meeting_agendas/meeting_agenda_representer.rb b/modules/meeting/lib/api/v3/meeting_agendas/meeting_agenda_representer.rb index b73cc6a4d6..bfa0807479 100644 --- a/modules/meeting/lib/api/v3/meeting_agendas/meeting_agenda_representer.rb +++ b/modules/meeting/lib/api/v3/meeting_agendas/meeting_agenda_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/api/v3/meeting_contents/meeting_content_representer.rb b/modules/meeting/lib/api/v3/meeting_contents/meeting_content_representer.rb index 1d44cd897c..7f55529f33 100644 --- a/modules/meeting/lib/api/v3/meeting_contents/meeting_content_representer.rb +++ b/modules/meeting/lib/api/v3/meeting_contents/meeting_content_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/api/v3/meeting_minutes/meeting_minutes_representer.rb b/modules/meeting/lib/api/v3/meeting_minutes/meeting_minutes_representer.rb index 8ca1872570..301b05a79b 100644 --- a/modules/meeting/lib/api/v3/meeting_minutes/meeting_minutes_representer.rb +++ b/modules/meeting/lib/api/v3/meeting_minutes/meeting_minutes_representer.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/api/v3/meetings/meeting_contents_api.rb b/modules/meeting/lib/api/v3/meetings/meeting_contents_api.rb index 6d8148a46c..8191d842dd 100644 --- a/modules/meeting/lib/api/v3/meetings/meeting_contents_api.rb +++ b/modules/meeting/lib/api/v3/meetings/meeting_contents_api.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting.rb b/modules/meeting/lib/open_project/meeting.rb index 2da9008f3d..2a9863089a 100644 --- a/modules/meeting/lib/open_project/meeting.rb +++ b/modules/meeting/lib/open_project/meeting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting/engine.rb b/modules/meeting/lib/open_project/meeting/engine.rb index 031223a56f..01a406ccf5 100644 --- a/modules/meeting/lib/open_project/meeting/engine.rb +++ b/modules/meeting/lib/open_project/meeting/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting/patches/project_patch.rb b/modules/meeting/lib/open_project/meeting/patches/project_patch.rb index f7ab51f9e9..42035cc8ed 100644 --- a/modules/meeting/lib/open_project/meeting/patches/project_patch.rb +++ b/modules/meeting/lib/open_project/meeting/patches/project_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting/patches/role_seeder_patch.rb b/modules/meeting/lib/open_project/meeting/patches/role_seeder_patch.rb index 6ec4343107..3fcf4797bc 100644 --- a/modules/meeting/lib/open_project/meeting/patches/role_seeder_patch.rb +++ b/modules/meeting/lib/open_project/meeting/patches/role_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting/patches/setting_seeder_patch.rb b/modules/meeting/lib/open_project/meeting/patches/setting_seeder_patch.rb index 164e92516e..8f656f7751 100644 --- a/modules/meeting/lib/open_project/meeting/patches/setting_seeder_patch.rb +++ b/modules/meeting/lib/open_project/meeting/patches/setting_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/open_project/meeting/patches/textile_converter_patch.rb b/modules/meeting/lib/open_project/meeting/patches/textile_converter_patch.rb index f7dfe746b7..4c01d4a4ce 100644 --- a/modules/meeting/lib/open_project/meeting/patches/textile_converter_patch.rb +++ b/modules/meeting/lib/open_project/meeting/patches/textile_converter_patch.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/lib/openproject-meeting.rb b/modules/meeting/lib/openproject-meeting.rb index 68a51cd00c..5e2b8addb2 100644 --- a/modules/meeting/lib/openproject-meeting.rb +++ b/modules/meeting/lib/openproject-meeting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/contracts/meeting_contents/update_contract_spec.rb b/modules/meeting/spec/contracts/meeting_contents/update_contract_spec.rb index bb067ac6ab..8bda5315e4 100644 --- a/modules/meeting/spec/contracts/meeting_contents/update_contract_spec.rb +++ b/modules/meeting/spec/contracts/meeting_contents/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/controllers/meeting_contents_controller_spec.rb b/modules/meeting/spec/controllers/meeting_contents_controller_spec.rb index 085d84326c..f989d5684e 100644 --- a/modules/meeting/spec/controllers/meeting_contents_controller_spec.rb +++ b/modules/meeting/spec/controllers/meeting_contents_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/controllers/meetings_controller_spec.rb b/modules/meeting/spec/controllers/meetings_controller_spec.rb index 22a834311b..e9e56b0587 100644 --- a/modules/meeting/spec/controllers/meetings_controller_spec.rb +++ b/modules/meeting/spec/controllers/meetings_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_agenda_factory.rb b/modules/meeting/spec/factories/meeting_agenda_factory.rb index 26e78c91de..56d4a5f75e 100644 --- a/modules/meeting/spec/factories/meeting_agenda_factory.rb +++ b/modules/meeting/spec/factories/meeting_agenda_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_content_journal_factory.rb b/modules/meeting/spec/factories/meeting_content_journal_factory.rb index ce28fd95f0..5630f5e54d 100644 --- a/modules/meeting/spec/factories/meeting_content_journal_factory.rb +++ b/modules/meeting/spec/factories/meeting_content_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_factory.rb b/modules/meeting/spec/factories/meeting_factory.rb index 3ee78e396f..0ec2b1939c 100644 --- a/modules/meeting/spec/factories/meeting_factory.rb +++ b/modules/meeting/spec/factories/meeting_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_journal_factory.rb b/modules/meeting/spec/factories/meeting_journal_factory.rb index d76869e545..ea863c6995 100644 --- a/modules/meeting/spec/factories/meeting_journal_factory.rb +++ b/modules/meeting/spec/factories/meeting_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_minutes_factory.rb b/modules/meeting/spec/factories/meeting_minutes_factory.rb index c19e94d71f..9a6756c01f 100644 --- a/modules/meeting/spec/factories/meeting_minutes_factory.rb +++ b/modules/meeting/spec/factories/meeting_minutes_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/factories/meeting_participant_factory.rb b/modules/meeting/spec/factories/meeting_participant_factory.rb index e56706b3da..27ad6764f0 100644 --- a/modules/meeting/spec/factories/meeting_participant_factory.rb +++ b/modules/meeting/spec/factories/meeting_participant_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_activity_spec.rb b/modules/meeting/spec/features/meetings_activity_spec.rb index b3d6b66d80..c489445bd2 100644 --- a/modules/meeting/spec/features/meetings_activity_spec.rb +++ b/modules/meeting/spec/features/meetings_activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_close_spec.rb b/modules/meeting/spec/features/meetings_close_spec.rb index 751c13d653..7b3bd17200 100644 --- a/modules/meeting/spec/features/meetings_close_spec.rb +++ b/modules/meeting/spec/features/meetings_close_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_copy_spec.rb b/modules/meeting/spec/features/meetings_copy_spec.rb index e1d44ab599..12abe442a0 100644 --- a/modules/meeting/spec/features/meetings_copy_spec.rb +++ b/modules/meeting/spec/features/meetings_copy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_delete_spec.rb b/modules/meeting/spec/features/meetings_delete_spec.rb index 71c280fa7b..d90078f5bc 100644 --- a/modules/meeting/spec/features/meetings_delete_spec.rb +++ b/modules/meeting/spec/features/meetings_delete_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_index_spec.rb b/modules/meeting/spec/features/meetings_index_spec.rb index ac0951ca60..f13789e590 100644 --- a/modules/meeting/spec/features/meetings_index_spec.rb +++ b/modules/meeting/spec/features/meetings_index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_locking_spec.rb b/modules/meeting/spec/features/meetings_locking_spec.rb index 43ff1d4378..65f30b6c45 100644 --- a/modules/meeting/spec/features/meetings_locking_spec.rb +++ b/modules/meeting/spec/features/meetings_locking_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_new_spec.rb b/modules/meeting/spec/features/meetings_new_spec.rb index 1ac5d1e2e8..f3bbac77bf 100644 --- a/modules/meeting/spec/features/meetings_new_spec.rb +++ b/modules/meeting/spec/features/meetings_new_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_participants_spec.rb b/modules/meeting/spec/features/meetings_participants_spec.rb index 4927d7bef6..40528d0cd4 100644 --- a/modules/meeting/spec/features/meetings_participants_spec.rb +++ b/modules/meeting/spec/features/meetings_participants_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_search_spec.rb b/modules/meeting/spec/features/meetings_search_spec.rb index 2b319994f0..4362ca27b7 100644 --- a/modules/meeting/spec/features/meetings_search_spec.rb +++ b/modules/meeting/spec/features/meetings_search_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/features/meetings_show_spec.rb b/modules/meeting/spec/features/meetings_show_spec.rb index a9e4bf91a4..0b30792687 100644 --- a/modules/meeting/spec/features/meetings_show_spec.rb +++ b/modules/meeting/spec/features/meetings_show_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/lib/open_project/markdown_formatting_spec.rb b/modules/meeting/spec/lib/open_project/markdown_formatting_spec.rb index 282b1e86c2..679563aca4 100644 --- a/modules/meeting/spec/lib/open_project/markdown_formatting_spec.rb +++ b/modules/meeting/spec/lib/open_project/markdown_formatting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/lib/open_project/meeting/default_data_spec.rb b/modules/meeting/spec/lib/open_project/meeting/default_data_spec.rb index 4c63e4095f..a99f4ab6e2 100644 --- a/modules/meeting/spec/lib/open_project/meeting/default_data_spec.rb +++ b/modules/meeting/spec/lib/open_project/meeting/default_data_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/mailers/meeting_mailer_spec.rb b/modules/meeting/spec/mailers/meeting_mailer_spec.rb index f49c9c732d..108bd0303e 100644 --- a/modules/meeting/spec/mailers/meeting_mailer_spec.rb +++ b/modules/meeting/spec/mailers/meeting_mailer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/models/meeting_agenda_spec.rb b/modules/meeting/spec/models/meeting_agenda_spec.rb index 420b7ca06e..95292e49ff 100644 --- a/modules/meeting/spec/models/meeting_agenda_spec.rb +++ b/modules/meeting/spec/models/meeting_agenda_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/models/meeting_minutes_spec.rb b/modules/meeting/spec/models/meeting_minutes_spec.rb index a28a32d68e..6cb9534ae9 100644 --- a/modules/meeting/spec/models/meeting_minutes_spec.rb +++ b/modules/meeting/spec/models/meeting_minutes_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/models/meeting_spec.rb b/modules/meeting/spec/models/meeting_spec.rb index c4a71e3302..cce351b229 100644 --- a/modules/meeting/spec/models/meeting_spec.rb +++ b/modules/meeting/spec/models/meeting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/models/permitted_params_spec.rb b/modules/meeting/spec/models/permitted_params_spec.rb index 9044de4f80..39b3b7651d 100644 --- a/modules/meeting/spec/models/permitted_params_spec.rb +++ b/modules/meeting/spec/models/permitted_params_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/models/project/activity_spec.rb b/modules/meeting/spec/models/project/activity_spec.rb index 9f6d24d05b..f5813e4f58 100644 --- a/modules/meeting/spec/models/project/activity_spec.rb +++ b/modules/meeting/spec/models/project/activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/requests/api/v3/attachments/meeting_agenda_spec.rb b/modules/meeting/spec/requests/api/v3/attachments/meeting_agenda_spec.rb index d5c7372b80..c098b330a5 100644 --- a/modules/meeting/spec/requests/api/v3/attachments/meeting_agenda_spec.rb +++ b/modules/meeting/spec/requests/api/v3/attachments/meeting_agenda_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/requests/api/v3/attachments/meeting_minutes_spec.rb b/modules/meeting/spec/requests/api/v3/attachments/meeting_minutes_spec.rb index 844a25402d..e782b3e995 100644 --- a/modules/meeting/spec/requests/api/v3/attachments/meeting_minutes_spec.rb +++ b/modules/meeting/spec/requests/api/v3/attachments/meeting_minutes_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/routing/previews_routing_spec.rb b/modules/meeting/spec/routing/previews_routing_spec.rb index dff2178518..48e52f0713 100644 --- a/modules/meeting/spec/routing/previews_routing_spec.rb +++ b/modules/meeting/spec/routing/previews_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/services/meeting_contents/update_service_spec.rb b/modules/meeting/spec/services/meeting_contents/update_service_spec.rb index 946a5a224e..deb6c90927 100644 --- a/modules/meeting/spec/services/meeting_contents/update_service_spec.rb +++ b/modules/meeting/spec/services/meeting_contents/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/spec_helper.rb b/modules/meeting/spec/spec_helper.rb index d61f498435..86615a3259 100644 --- a/modules/meeting/spec/spec_helper.rb +++ b/modules/meeting/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/support/pages/meetings/base.rb b/modules/meeting/spec/support/pages/meetings/base.rb index 09a374eb05..077039ab1c 100644 --- a/modules/meeting/spec/support/pages/meetings/base.rb +++ b/modules/meeting/spec/support/pages/meetings/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/support/pages/meetings/edit.rb b/modules/meeting/spec/support/pages/meetings/edit.rb index 5c5f364f61..cecb942fc9 100644 --- a/modules/meeting/spec/support/pages/meetings/edit.rb +++ b/modules/meeting/spec/support/pages/meetings/edit.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/support/pages/meetings/index.rb b/modules/meeting/spec/support/pages/meetings/index.rb index bdc39e64e4..53f7587d56 100644 --- a/modules/meeting/spec/support/pages/meetings/index.rb +++ b/modules/meeting/spec/support/pages/meetings/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/support/pages/meetings/new.rb b/modules/meeting/spec/support/pages/meetings/new.rb index a6c21d6efb..4b6d0352c5 100644 --- a/modules/meeting/spec/support/pages/meetings/new.rb +++ b/modules/meeting/spec/support/pages/meetings/new.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/meeting/spec/support/pages/meetings/show.rb b/modules/meeting/spec/support/pages/meetings/show.rb index 35e7d6dd07..27d85702df 100644 --- a/modules/meeting/spec/support/pages/meetings/show.rb +++ b/modules/meeting/spec/support/pages/meetings/show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/app/models/grids/my_page.rb b/modules/my_page/app/models/grids/my_page.rb index 66f570c4b4..c3e99d2b0b 100644 --- a/modules/my_page/app/models/grids/my_page.rb +++ b/modules/my_page/app/models/grids/my_page.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/config/routes.rb b/modules/my_page/config/routes.rb index 9eaef98936..f41b669853 100644 --- a/modules/my_page/config/routes.rb +++ b/modules/my_page/config/routes.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/contracts/grids/create_contract_spec.rb b/modules/my_page/spec/contracts/grids/create_contract_spec.rb index b479ecd703..de5bd37b84 100644 --- a/modules/my_page/spec/contracts/grids/create_contract_spec.rb +++ b/modules/my_page/spec/contracts/grids/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/contracts/grids/shared_examples.rb b/modules/my_page/spec/contracts/grids/shared_examples.rb index b238fc54ef..e3abb9dcf5 100644 --- a/modules/my_page/spec/contracts/grids/shared_examples.rb +++ b/modules/my_page/spec/contracts/grids/shared_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/contracts/grids/update_contract_spec.rb b/modules/my_page/spec/contracts/grids/update_contract_spec.rb index 363c64d6a7..20e35c14c9 100644 --- a/modules/my_page/spec/contracts/grids/update_contract_spec.rb +++ b/modules/my_page/spec/contracts/grids/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/accountable_spec.rb b/modules/my_page/spec/features/my/accountable_spec.rb index f57b9142e5..58a9c4b735 100644 --- a/modules/my_page/spec/features/my/accountable_spec.rb +++ b/modules/my_page/spec/features/my/accountable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/assigned_to_me_spec.rb b/modules/my_page/spec/features/my/assigned_to_me_spec.rb index fb8647f86e..5133f570e0 100644 --- a/modules/my_page/spec/features/my/assigned_to_me_spec.rb +++ b/modules/my_page/spec/features/my/assigned_to_me_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/custom_text_spec.rb b/modules/my_page/spec/features/my/custom_text_spec.rb index 8da0ddd0e7..703d01247b 100644 --- a/modules/my_page/spec/features/my/custom_text_spec.rb +++ b/modules/my_page/spec/features/my/custom_text_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/documents_spec.rb b/modules/my_page/spec/features/my/documents_spec.rb index 39ebf1f550..43d8aa895a 100644 --- a/modules/my_page/spec/features/my/documents_spec.rb +++ b/modules/my_page/spec/features/my/documents_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/my_page_spec.rb b/modules/my_page/spec/features/my/my_page_spec.rb index abfe107dac..e788cd557b 100644 --- a/modules/my_page/spec/features/my/my_page_spec.rb +++ b/modules/my_page/spec/features/my/my_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/news_spec.rb b/modules/my_page/spec/features/my/news_spec.rb index 53e45a285b..29f090ffd8 100644 --- a/modules/my_page/spec/features/my/news_spec.rb +++ b/modules/my_page/spec/features/my/news_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/time_entries_current_user_spec.rb b/modules/my_page/spec/features/my/time_entries_current_user_spec.rb index 4f37a9ee75..6ff5cf8ee4 100644 --- a/modules/my_page/spec/features/my/time_entries_current_user_spec.rb +++ b/modules/my_page/spec/features/my/time_entries_current_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/features/my/work_package_table_spec.rb b/modules/my_page/spec/features/my/work_package_table_spec.rb index 863b1fc3b8..86eb004c8c 100644 --- a/modules/my_page/spec/features/my/work_package_table_spec.rb +++ b/modules/my_page/spec/features/my/work_package_table_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/models/grids/my_page_spec.rb b/modules/my_page/spec/models/grids/my_page_spec.rb index 3a63951329..cce3761d26 100644 --- a/modules/my_page/spec/models/grids/my_page_spec.rb +++ b/modules/my_page/spec/models/grids/my_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/models/grids/shared_model.rb b/modules/my_page/spec/models/grids/shared_model.rb index cc84da2d79..7f1e25fb7e 100644 --- a/modules/my_page/spec/models/grids/shared_model.rb +++ b/modules/my_page/spec/models/grids/shared_model.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/queries/grids/filters/scope_filter_spec.rb b/modules/my_page/spec/queries/grids/filters/scope_filter_spec.rb index e5b46bf6e2..007c790d39 100644 --- a/modules/my_page/spec/queries/grids/filters/scope_filter_spec.rb +++ b/modules/my_page/spec/queries/grids/filters/scope_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/queries/grids/query_integration_spec.rb b/modules/my_page/spec/queries/grids/query_integration_spec.rb index 7da5c60cfc..0752de212a 100644 --- a/modules/my_page/spec/queries/grids/query_integration_spec.rb +++ b/modules/my_page/spec/queries/grids/query_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb b/modules/my_page/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb index cf63dbca68..d03c3245ae 100644 --- a/modules/my_page/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb +++ b/modules/my_page/spec/requests/api/v3/grids/grids_create_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/requests/api/v3/grids/grids_resource_spec.rb b/modules/my_page/spec/requests/api/v3/grids/grids_resource_spec.rb index 1a6d393494..96278afc9e 100644 --- a/modules/my_page/spec/requests/api/v3/grids/grids_resource_spec.rb +++ b/modules/my_page/spec/requests/api/v3/grids/grids_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb b/modules/my_page/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb index 955a159e9b..0df0c7cd4d 100644 --- a/modules/my_page/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb +++ b/modules/my_page/spec/requests/api/v3/grids/grids_update_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/my_page/spec/support/pages/my/page.rb b/modules/my_page/spec/support/pages/my/page.rb index a1d44e8eff..ce034baaa1 100644 --- a/modules/my_page/spec/support/pages/my/page.rb +++ b/modules/my_page/spec/support/pages/my/page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/openid_connect/spec/controllers/providers_controller_spec.rb b/modules/openid_connect/spec/controllers/providers_controller_spec.rb index 75ec56a8f8..e9f7439ecb 100644 --- a/modules/openid_connect/spec/controllers/providers_controller_spec.rb +++ b/modules/openid_connect/spec/controllers/providers_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/openid_connect/spec/requests/openid_connect_spec.rb b/modules/openid_connect/spec/requests/openid_connect_spec.rb index cadb2b5004..a06188915e 100644 --- a/modules/openid_connect/spec/requests/openid_connect_spec.rb +++ b/modules/openid_connect/spec/requests/openid_connect_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/openid_connect/spec/routing/openid_connect/providers_controller_spec.rb b/modules/openid_connect/spec/routing/openid_connect/providers_controller_spec.rb index 665efb92f3..533ffcd2a3 100644 --- a/modules/openid_connect/spec/routing/openid_connect/providers_controller_spec.rb +++ b/modules/openid_connect/spec/routing/openid_connect/providers_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/app/models/grids/overview.rb b/modules/overviews/app/models/grids/overview.rb index d9b3c5ca3b..3fbe00719b 100644 --- a/modules/overviews/app/models/grids/overview.rb +++ b/modules/overviews/app/models/grids/overview.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/app/services/overviews/copy/widgets_dependent_service.rb b/modules/overviews/app/services/overviews/copy/widgets_dependent_service.rb index 421e3af756..bc9efcc6db 100644 --- a/modules/overviews/app/services/overviews/copy/widgets_dependent_service.rb +++ b/modules/overviews/app/services/overviews/copy/widgets_dependent_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/app/services/overviews/copy_service.rb b/modules/overviews/app/services/overviews/copy_service.rb index ed673530d2..71a1d11d25 100644 --- a/modules/overviews/app/services/overviews/copy_service.rb +++ b/modules/overviews/app/services/overviews/copy_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/config/locales/en.seeders.bim.yml b/modules/overviews/config/locales/en.seeders.bim.yml index bf61045045..a25b54775a 100644 --- a/modules/overviews/config/locales/en.seeders.bim.yml +++ b/modules/overviews/config/locales/en.seeders.bim.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/config/locales/en.seeders.standard.yml b/modules/overviews/config/locales/en.seeders.standard.yml index e2484da105..7377d1b847 100644 --- a/modules/overviews/config/locales/en.seeders.standard.yml +++ b/modules/overviews/config/locales/en.seeders.standard.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/contracts/grids/create_contract_spec.rb b/modules/overviews/spec/contracts/grids/create_contract_spec.rb index 439b791ea3..ed423be5f1 100644 --- a/modules/overviews/spec/contracts/grids/create_contract_spec.rb +++ b/modules/overviews/spec/contracts/grids/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/controllers/overviews/overviews_controller_spec.rb b/modules/overviews/spec/controllers/overviews/overviews_controller_spec.rb index 11ed7415a9..98feb04ed6 100644 --- a/modules/overviews/spec/controllers/overviews/overviews_controller_spec.rb +++ b/modules/overviews/spec/controllers/overviews/overviews_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/features/low_permissions_page_creation_spec.rb b/modules/overviews/spec/features/low_permissions_page_creation_spec.rb index 52483735d9..b8b37c9a42 100644 --- a/modules/overviews/spec/features/low_permissions_page_creation_spec.rb +++ b/modules/overviews/spec/features/low_permissions_page_creation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/features/managing_overview_page_spec.rb b/modules/overviews/spec/features/managing_overview_page_spec.rb index d652299094..b3f19af142 100644 --- a/modules/overviews/spec/features/managing_overview_page_spec.rb +++ b/modules/overviews/spec/features/managing_overview_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/features/navigation_spec.rb b/modules/overviews/spec/features/navigation_spec.rb index b074d5debc..fca426d247 100644 --- a/modules/overviews/spec/features/navigation_spec.rb +++ b/modules/overviews/spec/features/navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/requests/api/v3/grids/grids_resource_spec.rb b/modules/overviews/spec/requests/api/v3/grids/grids_resource_spec.rb index e90e761ba5..0a84770a61 100644 --- a/modules/overviews/spec/requests/api/v3/grids/grids_resource_spec.rb +++ b/modules/overviews/spec/requests/api/v3/grids/grids_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/services/copy_service_integration_spec.rb b/modules/overviews/spec/services/copy_service_integration_spec.rb index a613906799..45e072d21e 100644 --- a/modules/overviews/spec/services/copy_service_integration_spec.rb +++ b/modules/overviews/spec/services/copy_service_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/overviews/spec/support/pages/overview.rb b/modules/overviews/spec/support/pages/overview.rb index 468ae62073..0e64b6df58 100644 --- a/modules/overviews/spec/support/pages/overview.rb +++ b/modules/overviews/spec/support/pages/overview.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/controllers/export_card_configurations_controller.rb b/modules/pdf_export/app/controllers/export_card_configurations_controller.rb index 5e3f11dd9c..d6f32a605d 100644 --- a/modules/pdf_export/app/controllers/export_card_configurations_controller.rb +++ b/modules/pdf_export/app/controllers/export_card_configurations_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/models/export_card_configuration.rb b/modules/pdf_export/app/models/export_card_configuration.rb index 370cbfa1a7..fbb734b363 100644 --- a/modules/pdf_export/app/models/export_card_configuration.rb +++ b/modules/pdf_export/app/models/export_card_configuration.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/views/export_card_configurations/_form.html.erb b/modules/pdf_export/app/views/export_card_configurations/_form.html.erb index ea55d048fd..dc5685b1e8 100644 --- a/modules/pdf_export/app/views/export_card_configurations/_form.html.erb +++ b/modules/pdf_export/app/views/export_card_configurations/_form.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/views/export_card_configurations/edit.html.erb b/modules/pdf_export/app/views/export_card_configurations/edit.html.erb index 3805f8adba..3ee91db5d3 100644 --- a/modules/pdf_export/app/views/export_card_configurations/edit.html.erb +++ b/modules/pdf_export/app/views/export_card_configurations/edit.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/views/export_card_configurations/index.html.erb b/modules/pdf_export/app/views/export_card_configurations/index.html.erb index 839773bce9..1c1550d5db 100644 --- a/modules/pdf_export/app/views/export_card_configurations/index.html.erb +++ b/modules/pdf_export/app/views/export_card_configurations/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/app/views/export_card_configurations/new.html.erb b/modules/pdf_export/app/views/export_card_configurations/new.html.erb index 21ec9f10ec..6d68d5c50a 100644 --- a/modules/pdf_export/app/views/export_card_configurations/new.html.erb +++ b/modules/pdf_export/app/views/export_card_configurations/new.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/config/locales/crowdin/af.yml b/modules/pdf_export/config/locales/crowdin/af.yml index 2f9f9e3bee..7e7ae94280 100644 --- a/modules/pdf_export/config/locales/crowdin/af.yml +++ b/modules/pdf_export/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ar.yml b/modules/pdf_export/config/locales/crowdin/ar.yml index 966f8db974..d135a4fd8c 100644 --- a/modules/pdf_export/config/locales/crowdin/ar.yml +++ b/modules/pdf_export/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/az.yml b/modules/pdf_export/config/locales/crowdin/az.yml index a2c83f03bb..fff3b01935 100644 --- a/modules/pdf_export/config/locales/crowdin/az.yml +++ b/modules/pdf_export/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/bg.yml b/modules/pdf_export/config/locales/crowdin/bg.yml index 26bf1b78e0..1f247738be 100644 --- a/modules/pdf_export/config/locales/crowdin/bg.yml +++ b/modules/pdf_export/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ca.yml b/modules/pdf_export/config/locales/crowdin/ca.yml index 7589bee707..03ca0c49d0 100644 --- a/modules/pdf_export/config/locales/crowdin/ca.yml +++ b/modules/pdf_export/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/cs.yml b/modules/pdf_export/config/locales/crowdin/cs.yml index 06a6074e97..5a33959a05 100644 --- a/modules/pdf_export/config/locales/crowdin/cs.yml +++ b/modules/pdf_export/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/da.yml b/modules/pdf_export/config/locales/crowdin/da.yml index 0d54776329..9184e95e8c 100644 --- a/modules/pdf_export/config/locales/crowdin/da.yml +++ b/modules/pdf_export/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/de.yml b/modules/pdf_export/config/locales/crowdin/de.yml index 3cc840fe1c..4aae19bd11 100644 --- a/modules/pdf_export/config/locales/crowdin/de.yml +++ b/modules/pdf_export/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/el.yml b/modules/pdf_export/config/locales/crowdin/el.yml index 7998014ff5..50512ba724 100644 --- a/modules/pdf_export/config/locales/crowdin/el.yml +++ b/modules/pdf_export/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/eo.yml b/modules/pdf_export/config/locales/crowdin/eo.yml index 74f08b1922..209acb6079 100644 --- a/modules/pdf_export/config/locales/crowdin/eo.yml +++ b/modules/pdf_export/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/es.yml b/modules/pdf_export/config/locales/crowdin/es.yml index 1431e08118..148533eb10 100644 --- a/modules/pdf_export/config/locales/crowdin/es.yml +++ b/modules/pdf_export/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/et.yml b/modules/pdf_export/config/locales/crowdin/et.yml index 1352908753..1359bf519c 100644 --- a/modules/pdf_export/config/locales/crowdin/et.yml +++ b/modules/pdf_export/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/fa.yml b/modules/pdf_export/config/locales/crowdin/fa.yml index bc7cfe7cdb..1c5ce98452 100644 --- a/modules/pdf_export/config/locales/crowdin/fa.yml +++ b/modules/pdf_export/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/fi.yml b/modules/pdf_export/config/locales/crowdin/fi.yml index 3a492fb5fb..f07262e9a2 100644 --- a/modules/pdf_export/config/locales/crowdin/fi.yml +++ b/modules/pdf_export/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/fil.yml b/modules/pdf_export/config/locales/crowdin/fil.yml index 06ba426471..842bf3380d 100644 --- a/modules/pdf_export/config/locales/crowdin/fil.yml +++ b/modules/pdf_export/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/fr.yml b/modules/pdf_export/config/locales/crowdin/fr.yml index de5289f24a..b120db7b2f 100644 --- a/modules/pdf_export/config/locales/crowdin/fr.yml +++ b/modules/pdf_export/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/he.yml b/modules/pdf_export/config/locales/crowdin/he.yml index b6f9bf9211..38af4be125 100644 --- a/modules/pdf_export/config/locales/crowdin/he.yml +++ b/modules/pdf_export/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/hi.yml b/modules/pdf_export/config/locales/crowdin/hi.yml index d381d961a9..e3f3ec70b7 100644 --- a/modules/pdf_export/config/locales/crowdin/hi.yml +++ b/modules/pdf_export/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/hr.yml b/modules/pdf_export/config/locales/crowdin/hr.yml index 227810dfba..6c61416c2d 100644 --- a/modules/pdf_export/config/locales/crowdin/hr.yml +++ b/modules/pdf_export/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/hu.yml b/modules/pdf_export/config/locales/crowdin/hu.yml index 0ef9987238..ba45343796 100644 --- a/modules/pdf_export/config/locales/crowdin/hu.yml +++ b/modules/pdf_export/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/id.yml b/modules/pdf_export/config/locales/crowdin/id.yml index d63e700e7a..876dde8a16 100644 --- a/modules/pdf_export/config/locales/crowdin/id.yml +++ b/modules/pdf_export/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/it.yml b/modules/pdf_export/config/locales/crowdin/it.yml index 0cd9c23b77..86c790816d 100644 --- a/modules/pdf_export/config/locales/crowdin/it.yml +++ b/modules/pdf_export/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ja.yml b/modules/pdf_export/config/locales/crowdin/ja.yml index 9543f6e85e..41235dab60 100644 --- a/modules/pdf_export/config/locales/crowdin/ja.yml +++ b/modules/pdf_export/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ko.yml b/modules/pdf_export/config/locales/crowdin/ko.yml index b10af015d4..6c8b7c1448 100644 --- a/modules/pdf_export/config/locales/crowdin/ko.yml +++ b/modules/pdf_export/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/lol.yml b/modules/pdf_export/config/locales/crowdin/lol.yml index 1ea64f740d..a89a2b2695 100644 --- a/modules/pdf_export/config/locales/crowdin/lol.yml +++ b/modules/pdf_export/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/lt.yml b/modules/pdf_export/config/locales/crowdin/lt.yml index 248d3a8b3b..c4d0f5c03f 100644 --- a/modules/pdf_export/config/locales/crowdin/lt.yml +++ b/modules/pdf_export/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/lv.yml b/modules/pdf_export/config/locales/crowdin/lv.yml index 35719d7534..292a5d987c 100644 --- a/modules/pdf_export/config/locales/crowdin/lv.yml +++ b/modules/pdf_export/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ne.yml b/modules/pdf_export/config/locales/crowdin/ne.yml index afe9279000..9b7bed436d 100644 --- a/modules/pdf_export/config/locales/crowdin/ne.yml +++ b/modules/pdf_export/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/nl.yml b/modules/pdf_export/config/locales/crowdin/nl.yml index 9c92dfc1e8..9a452c6b36 100644 --- a/modules/pdf_export/config/locales/crowdin/nl.yml +++ b/modules/pdf_export/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/no.yml b/modules/pdf_export/config/locales/crowdin/no.yml index daf6a63a79..d2ba705dbd 100644 --- a/modules/pdf_export/config/locales/crowdin/no.yml +++ b/modules/pdf_export/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/pl.yml b/modules/pdf_export/config/locales/crowdin/pl.yml index dd618aa77e..fcaa4c58d2 100644 --- a/modules/pdf_export/config/locales/crowdin/pl.yml +++ b/modules/pdf_export/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/pt.yml b/modules/pdf_export/config/locales/crowdin/pt.yml index 2d68ff8fe7..f1834ddf74 100644 --- a/modules/pdf_export/config/locales/crowdin/pt.yml +++ b/modules/pdf_export/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ro.yml b/modules/pdf_export/config/locales/crowdin/ro.yml index df6e9ed858..5dacf3023a 100644 --- a/modules/pdf_export/config/locales/crowdin/ro.yml +++ b/modules/pdf_export/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/ru.yml b/modules/pdf_export/config/locales/crowdin/ru.yml index c54533c9d7..52377b4fa8 100644 --- a/modules/pdf_export/config/locales/crowdin/ru.yml +++ b/modules/pdf_export/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/rw.yml b/modules/pdf_export/config/locales/crowdin/rw.yml index c97ae6b597..8f7fe843f6 100644 --- a/modules/pdf_export/config/locales/crowdin/rw.yml +++ b/modules/pdf_export/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/si.yml b/modules/pdf_export/config/locales/crowdin/si.yml index bba05fb138..4b3532eef9 100644 --- a/modules/pdf_export/config/locales/crowdin/si.yml +++ b/modules/pdf_export/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/sk.yml b/modules/pdf_export/config/locales/crowdin/sk.yml index 910d09856a..24caac27fd 100644 --- a/modules/pdf_export/config/locales/crowdin/sk.yml +++ b/modules/pdf_export/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/sl.yml b/modules/pdf_export/config/locales/crowdin/sl.yml index 2c3878baba..438b985f95 100644 --- a/modules/pdf_export/config/locales/crowdin/sl.yml +++ b/modules/pdf_export/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/sv.yml b/modules/pdf_export/config/locales/crowdin/sv.yml index 7d3f5c980d..bbd6b41d68 100644 --- a/modules/pdf_export/config/locales/crowdin/sv.yml +++ b/modules/pdf_export/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/th.yml b/modules/pdf_export/config/locales/crowdin/th.yml index 9bb37d5b84..45866cd662 100644 --- a/modules/pdf_export/config/locales/crowdin/th.yml +++ b/modules/pdf_export/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/tr.yml b/modules/pdf_export/config/locales/crowdin/tr.yml index 33f48691f1..0da8077e4c 100644 --- a/modules/pdf_export/config/locales/crowdin/tr.yml +++ b/modules/pdf_export/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/uk.yml b/modules/pdf_export/config/locales/crowdin/uk.yml index 11ee3c1035..0d3adbd42a 100644 --- a/modules/pdf_export/config/locales/crowdin/uk.yml +++ b/modules/pdf_export/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/vi.yml b/modules/pdf_export/config/locales/crowdin/vi.yml index ffd9649ad7..5ae54980da 100644 --- a/modules/pdf_export/config/locales/crowdin/vi.yml +++ b/modules/pdf_export/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/zh-CN.yml b/modules/pdf_export/config/locales/crowdin/zh-CN.yml index 6d5ad89c78..e8d4b141bf 100644 --- a/modules/pdf_export/config/locales/crowdin/zh-CN.yml +++ b/modules/pdf_export/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/crowdin/zh-TW.yml b/modules/pdf_export/config/locales/crowdin/zh-TW.yml index eaa75e0693..80bffdcf9f 100644 --- a/modules/pdf_export/config/locales/crowdin/zh-TW.yml +++ b/modules/pdf_export/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/pdf_export/config/locales/en.yml b/modules/pdf_export/config/locales/en.yml index bb33769dae..125085bb34 100644 --- a/modules/pdf_export/config/locales/en.yml +++ b/modules/pdf_export/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/config/routes.rb b/modules/pdf_export/config/routes.rb index 42d6140e27..fbd7a82a70 100644 --- a/modules/pdf_export/config/routes.rb +++ b/modules/pdf_export/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/db/migrate/20140113132617_create_export_card_configuration.rb b/modules/pdf_export/db/migrate/20140113132617_create_export_card_configuration.rb index 812ad79df7..f442ce41e0 100644 --- a/modules/pdf_export/db/migrate/20140113132617_create_export_card_configuration.rb +++ b/modules/pdf_export/db/migrate/20140113132617_create_export_card_configuration.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/db/migrate/20140129103924_add_active_to_export_card_configurations.rb b/modules/pdf_export/db/migrate/20140129103924_add_active_to_export_card_configurations.rb index d7463c9582..973a40edbf 100644 --- a/modules/pdf_export/db/migrate/20140129103924_add_active_to_export_card_configurations.rb +++ b/modules/pdf_export/db/migrate/20140129103924_add_active_to_export_card_configurations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/db/migrate/20140207134248_add_description_to_export_card_configurations.rb b/modules/pdf_export/db/migrate/20140207134248_add_description_to_export_card_configurations.rb index 9c0d4c39db..81634a988e 100644 --- a/modules/pdf_export/db/migrate/20140207134248_add_description_to_export_card_configurations.rb +++ b/modules/pdf_export/db/migrate/20140207134248_add_description_to_export_card_configurations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/db/seeds/export_card_configurations.rb b/modules/pdf_export/db/seeds/export_card_configurations.rb index 8200c4a411..7ed066530a 100644 --- a/modules/pdf_export/db/seeds/export_card_configurations.rb +++ b/modules/pdf_export/db/seeds/export_card_configurations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export.rb b/modules/pdf_export/lib/open_project/pdf_export.rb index 3dcc99750f..4d7b348c8d 100644 --- a/modules/pdf_export/lib/open_project/pdf_export.rb +++ b/modules/pdf_export/lib/open_project/pdf_export.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/engine.rb b/modules/pdf_export/lib/open_project/pdf_export/engine.rb index eb93d73043..fe56550db9 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/engine.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/exceptions.rb b/modules/pdf_export/lib/open_project/pdf_export/exceptions.rb index fd98d24c9c..cb22bdcc8c 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/exceptions.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/exceptions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/export_card/card_element.rb b/modules/pdf_export/lib/open_project/pdf_export/export_card/card_element.rb index 6ec27e8ca7..ddab752f04 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/export_card/card_element.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/export_card/card_element.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/export_card/column_element.rb b/modules/pdf_export/lib/open_project/pdf_export/export_card/column_element.rb index d78ad7fa31..90e05bf317 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/export_card/column_element.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/export_card/column_element.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/export_card/document_generator.rb b/modules/pdf_export/lib/open_project/pdf_export/export_card/document_generator.rb index 8062b4b8b2..b90675ce9c 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/export_card/document_generator.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/export_card/document_generator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/export_card/group_element.rb b/modules/pdf_export/lib/open_project/pdf_export/export_card/group_element.rb index 5c21681318..83f7b6826b 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/export_card/group_element.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/export_card/group_element.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/open_project/pdf_export/export_card/row_element.rb b/modules/pdf_export/lib/open_project/pdf_export/export_card/row_element.rb index 5b422bf280..2b7968f628 100644 --- a/modules/pdf_export/lib/open_project/pdf_export/export_card/row_element.rb +++ b/modules/pdf_export/lib/open_project/pdf_export/export_card/row_element.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/lib/openproject-pdf_export.rb b/modules/pdf_export/lib/openproject-pdf_export.rb index 6497edc540..d6c734f69c 100644 --- a/modules/pdf_export/lib/openproject-pdf_export.rb +++ b/modules/pdf_export/lib/openproject-pdf_export.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/controllers/export_card_configurations_controller_spec.rb b/modules/pdf_export/spec/controllers/export_card_configurations_controller_spec.rb index 8fc16a0ce5..0fdf8aa6bc 100644 --- a/modules/pdf_export/spec/controllers/export_card_configurations_controller_spec.rb +++ b/modules/pdf_export/spec/controllers/export_card_configurations_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/export_card/document_generator_spec.rb b/modules/pdf_export/spec/export_card/document_generator_spec.rb index cb0ca7a5bc..9d0fbdb924 100644 --- a/modules/pdf_export/spec/export_card/document_generator_spec.rb +++ b/modules/pdf_export/spec/export_card/document_generator_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/factories/export_card_configuration_factory.rb b/modules/pdf_export/spec/factories/export_card_configuration_factory.rb index 9494db19ed..00c26888bf 100644 --- a/modules/pdf_export/spec/factories/export_card_configuration_factory.rb +++ b/modules/pdf_export/spec/factories/export_card_configuration_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/features/export_card_configurations_admin_spec.rb b/modules/pdf_export/spec/features/export_card_configurations_admin_spec.rb index 30c755edf3..e5f15faee1 100644 --- a/modules/pdf_export/spec/features/export_card_configurations_admin_spec.rb +++ b/modules/pdf_export/spec/features/export_card_configurations_admin_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/spec_helper.rb b/modules/pdf_export/spec/spec_helper.rb index 58048135fb..0a50fbb1d7 100644 --- a/modules/pdf_export/spec/spec_helper.rb +++ b/modules/pdf_export/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/views/edit.html.erb_spec.rb b/modules/pdf_export/spec/views/edit.html.erb_spec.rb index 19dd88fd85..2d6433b775 100644 --- a/modules/pdf_export/spec/views/edit.html.erb_spec.rb +++ b/modules/pdf_export/spec/views/edit.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/views/index.html.erb_spec.rb b/modules/pdf_export/spec/views/index.html.erb_spec.rb index 904b7cd8fa..47e984336d 100644 --- a/modules/pdf_export/spec/views/index.html.erb_spec.rb +++ b/modules/pdf_export/spec/views/index.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/pdf_export/spec/views/new.html.erb_spec.rb b/modules/pdf_export/spec/views/new.html.erb_spec.rb index 6fed252177..72adec20f6 100644 --- a/modules/pdf_export/spec/views/new.html.erb_spec.rb +++ b/modules/pdf_export/spec/views/new.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/controllers/cost_reports_controller.rb b/modules/reporting/app/controllers/cost_reports_controller.rb index f018416188..b8f9777630 100644 --- a/modules/reporting/app/controllers/cost_reports_controller.rb +++ b/modules/reporting/app/controllers/cost_reports_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/controllers/work_package_costlog_controller.rb b/modules/reporting/app/controllers/work_package_costlog_controller.rb index 7d0e1dae90..f0ed231375 100644 --- a/modules/reporting/app/controllers/work_package_costlog_controller.rb +++ b/modules/reporting/app/controllers/work_package_costlog_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/helpers/reporting_helper.rb b/modules/reporting/app/helpers/reporting_helper.rb index 998df5ccec..2768d71399 100644 --- a/modules/reporting/app/helpers/reporting_helper.rb +++ b/modules/reporting/app/helpers/reporting_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query.rb b/modules/reporting/app/models/cost_query.rb index b9cddfe8bb..4c5a6c6677 100644 --- a/modules/reporting/app/models/cost_query.rb +++ b/modules/reporting/app/models/cost_query.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/cache.rb b/modules/reporting/app/models/cost_query/cache.rb index e46689285f..07d5f9e822 100644 --- a/modules/reporting/app/models/cost_query/cache.rb +++ b/modules/reporting/app/models/cost_query/cache.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/custom_field_mixin.rb b/modules/reporting/app/models/cost_query/custom_field_mixin.rb index 7ca4bdd1cd..f88faad2dc 100644 --- a/modules/reporting/app/models/cost_query/custom_field_mixin.rb +++ b/modules/reporting/app/models/cost_query/custom_field_mixin.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter.rb b/modules/reporting/app/models/cost_query/filter.rb index a2dafa1913..eeec3875a0 100644 --- a/modules/reporting/app/models/cost_query/filter.rb +++ b/modules/reporting/app/models/cost_query/filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/activity_id.rb b/modules/reporting/app/models/cost_query/filter/activity_id.rb index ee48f848bf..c33552ae0a 100644 --- a/modules/reporting/app/models/cost_query/filter/activity_id.rb +++ b/modules/reporting/app/models/cost_query/filter/activity_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/assigned_to_id.rb b/modules/reporting/app/models/cost_query/filter/assigned_to_id.rb index 724dab4f23..f695992493 100644 --- a/modules/reporting/app/models/cost_query/filter/assigned_to_id.rb +++ b/modules/reporting/app/models/cost_query/filter/assigned_to_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/author_id.rb b/modules/reporting/app/models/cost_query/filter/author_id.rb index 3fc966354c..b9f926c997 100644 --- a/modules/reporting/app/models/cost_query/filter/author_id.rb +++ b/modules/reporting/app/models/cost_query/filter/author_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/budget_id.rb b/modules/reporting/app/models/cost_query/filter/budget_id.rb index 750c8d55f4..f18fc39b31 100644 --- a/modules/reporting/app/models/cost_query/filter/budget_id.rb +++ b/modules/reporting/app/models/cost_query/filter/budget_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/category_id.rb b/modules/reporting/app/models/cost_query/filter/category_id.rb index 759cf9b8e6..276e1aed42 100644 --- a/modules/reporting/app/models/cost_query/filter/category_id.rb +++ b/modules/reporting/app/models/cost_query/filter/category_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/cost_type_id.rb b/modules/reporting/app/models/cost_query/filter/cost_type_id.rb index a7b53c0fe2..c9b747adaf 100644 --- a/modules/reporting/app/models/cost_query/filter/cost_type_id.rb +++ b/modules/reporting/app/models/cost_query/filter/cost_type_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/created_on.rb b/modules/reporting/app/models/cost_query/filter/created_on.rb index 6a8b370b81..a34afa0292 100644 --- a/modules/reporting/app/models/cost_query/filter/created_on.rb +++ b/modules/reporting/app/models/cost_query/filter/created_on.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/custom_field_entries.rb b/modules/reporting/app/models/cost_query/filter/custom_field_entries.rb index 4e60b83b88..f75bcd5c70 100644 --- a/modules/reporting/app/models/cost_query/filter/custom_field_entries.rb +++ b/modules/reporting/app/models/cost_query/filter/custom_field_entries.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/due_date.rb b/modules/reporting/app/models/cost_query/filter/due_date.rb index 8c8a52d465..a272dd9a51 100644 --- a/modules/reporting/app/models/cost_query/filter/due_date.rb +++ b/modules/reporting/app/models/cost_query/filter/due_date.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/no_filter.rb b/modules/reporting/app/models/cost_query/filter/no_filter.rb index 8198636a69..baaffd2204 100644 --- a/modules/reporting/app/models/cost_query/filter/no_filter.rb +++ b/modules/reporting/app/models/cost_query/filter/no_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/overridden_costs.rb b/modules/reporting/app/models/cost_query/filter/overridden_costs.rb index 2cfc471614..a4b5182a43 100644 --- a/modules/reporting/app/models/cost_query/filter/overridden_costs.rb +++ b/modules/reporting/app/models/cost_query/filter/overridden_costs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/permission_filter.rb b/modules/reporting/app/models/cost_query/filter/permission_filter.rb index 75e1254e6e..642be0d216 100644 --- a/modules/reporting/app/models/cost_query/filter/permission_filter.rb +++ b/modules/reporting/app/models/cost_query/filter/permission_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/priority_id.rb b/modules/reporting/app/models/cost_query/filter/priority_id.rb index 9dc58d9c9d..478d208561 100644 --- a/modules/reporting/app/models/cost_query/filter/priority_id.rb +++ b/modules/reporting/app/models/cost_query/filter/priority_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/project_id.rb b/modules/reporting/app/models/cost_query/filter/project_id.rb index 3c91dd6097..0aeea8a4f3 100644 --- a/modules/reporting/app/models/cost_query/filter/project_id.rb +++ b/modules/reporting/app/models/cost_query/filter/project_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/responsible_id.rb b/modules/reporting/app/models/cost_query/filter/responsible_id.rb index 06514764df..677ad2192d 100644 --- a/modules/reporting/app/models/cost_query/filter/responsible_id.rb +++ b/modules/reporting/app/models/cost_query/filter/responsible_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/spent_on.rb b/modules/reporting/app/models/cost_query/filter/spent_on.rb index b94a38c90e..a4c79ae88e 100644 --- a/modules/reporting/app/models/cost_query/filter/spent_on.rb +++ b/modules/reporting/app/models/cost_query/filter/spent_on.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/start_date.rb b/modules/reporting/app/models/cost_query/filter/start_date.rb index 641f78fc33..ed63f8c07a 100644 --- a/modules/reporting/app/models/cost_query/filter/start_date.rb +++ b/modules/reporting/app/models/cost_query/filter/start_date.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/status_id.rb b/modules/reporting/app/models/cost_query/filter/status_id.rb index a45d3b0e5d..7826578f13 100644 --- a/modules/reporting/app/models/cost_query/filter/status_id.rb +++ b/modules/reporting/app/models/cost_query/filter/status_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/subject.rb b/modules/reporting/app/models/cost_query/filter/subject.rb index 2dc39ea040..646f8e4d27 100644 --- a/modules/reporting/app/models/cost_query/filter/subject.rb +++ b/modules/reporting/app/models/cost_query/filter/subject.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/tmonth.rb b/modules/reporting/app/models/cost_query/filter/tmonth.rb index c3e3b8fbe3..b4a20c7ac9 100644 --- a/modules/reporting/app/models/cost_query/filter/tmonth.rb +++ b/modules/reporting/app/models/cost_query/filter/tmonth.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/tweek.rb b/modules/reporting/app/models/cost_query/filter/tweek.rb index 566be41ddf..8822d8becf 100644 --- a/modules/reporting/app/models/cost_query/filter/tweek.rb +++ b/modules/reporting/app/models/cost_query/filter/tweek.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/tyear.rb b/modules/reporting/app/models/cost_query/filter/tyear.rb index 2dfee07df4..58d4f1da74 100644 --- a/modules/reporting/app/models/cost_query/filter/tyear.rb +++ b/modules/reporting/app/models/cost_query/filter/tyear.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/type_id.rb b/modules/reporting/app/models/cost_query/filter/type_id.rb index cdf7d65081..acdfcd3b9b 100644 --- a/modules/reporting/app/models/cost_query/filter/type_id.rb +++ b/modules/reporting/app/models/cost_query/filter/type_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/updated_on.rb b/modules/reporting/app/models/cost_query/filter/updated_on.rb index 2d7851b555..e079332366 100644 --- a/modules/reporting/app/models/cost_query/filter/updated_on.rb +++ b/modules/reporting/app/models/cost_query/filter/updated_on.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/user_id.rb b/modules/reporting/app/models/cost_query/filter/user_id.rb index 3c1a3e49dc..2ee6236314 100644 --- a/modules/reporting/app/models/cost_query/filter/user_id.rb +++ b/modules/reporting/app/models/cost_query/filter/user_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/version_id.rb b/modules/reporting/app/models/cost_query/filter/version_id.rb index 61aca13037..5ec7f11913 100644 --- a/modules/reporting/app/models/cost_query/filter/version_id.rb +++ b/modules/reporting/app/models/cost_query/filter/version_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/filter/work_package_id.rb b/modules/reporting/app/models/cost_query/filter/work_package_id.rb index 9f4b27dedf..8afaf2a10c 100644 --- a/modules/reporting/app/models/cost_query/filter/work_package_id.rb +++ b/modules/reporting/app/models/cost_query/filter/work_package_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by.rb b/modules/reporting/app/models/cost_query/group_by.rb index 71e9385552..70bce4c657 100644 --- a/modules/reporting/app/models/cost_query/group_by.rb +++ b/modules/reporting/app/models/cost_query/group_by.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/activity_id.rb b/modules/reporting/app/models/cost_query/group_by/activity_id.rb index 774dc5661e..e6b4904797 100644 --- a/modules/reporting/app/models/cost_query/group_by/activity_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/activity_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/assigned_to_id.rb b/modules/reporting/app/models/cost_query/group_by/assigned_to_id.rb index e96deffbb2..3f87671209 100644 --- a/modules/reporting/app/models/cost_query/group_by/assigned_to_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/assigned_to_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/author_id.rb b/modules/reporting/app/models/cost_query/group_by/author_id.rb index 0f9522c5d3..23c7971be9 100644 --- a/modules/reporting/app/models/cost_query/group_by/author_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/author_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/base.rb b/modules/reporting/app/models/cost_query/group_by/base.rb index 06df26050e..923a525e1c 100644 --- a/modules/reporting/app/models/cost_query/group_by/base.rb +++ b/modules/reporting/app/models/cost_query/group_by/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/budget_id.rb b/modules/reporting/app/models/cost_query/group_by/budget_id.rb index 48389688cd..b0b5d4cc91 100644 --- a/modules/reporting/app/models/cost_query/group_by/budget_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/budget_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/category_id.rb b/modules/reporting/app/models/cost_query/group_by/category_id.rb index 0eb332f815..c5722e14b0 100644 --- a/modules/reporting/app/models/cost_query/group_by/category_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/category_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/cost_type_id.rb b/modules/reporting/app/models/cost_query/group_by/cost_type_id.rb index 3a6b2a809e..957c46ce4d 100644 --- a/modules/reporting/app/models/cost_query/group_by/cost_type_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/cost_type_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/custom_field_entries.rb b/modules/reporting/app/models/cost_query/group_by/custom_field_entries.rb index ca10a9df29..45390958bf 100644 --- a/modules/reporting/app/models/cost_query/group_by/custom_field_entries.rb +++ b/modules/reporting/app/models/cost_query/group_by/custom_field_entries.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/priority_id.rb b/modules/reporting/app/models/cost_query/group_by/priority_id.rb index 47a1e1e2f5..d65f96c95c 100644 --- a/modules/reporting/app/models/cost_query/group_by/priority_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/priority_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/project_id.rb b/modules/reporting/app/models/cost_query/group_by/project_id.rb index b76a013b52..2974d25b1d 100644 --- a/modules/reporting/app/models/cost_query/group_by/project_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/project_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/ruby_aggregation.rb b/modules/reporting/app/models/cost_query/group_by/ruby_aggregation.rb index 6fdbc1e49a..07bd85d020 100644 --- a/modules/reporting/app/models/cost_query/group_by/ruby_aggregation.rb +++ b/modules/reporting/app/models/cost_query/group_by/ruby_aggregation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/singleton_value.rb b/modules/reporting/app/models/cost_query/group_by/singleton_value.rb index 54b67e3435..991025acff 100644 --- a/modules/reporting/app/models/cost_query/group_by/singleton_value.rb +++ b/modules/reporting/app/models/cost_query/group_by/singleton_value.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/spent_on.rb b/modules/reporting/app/models/cost_query/group_by/spent_on.rb index 74373f491e..2054985457 100644 --- a/modules/reporting/app/models/cost_query/group_by/spent_on.rb +++ b/modules/reporting/app/models/cost_query/group_by/spent_on.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/sql_aggregation.rb b/modules/reporting/app/models/cost_query/group_by/sql_aggregation.rb index 968385b20e..784ba23298 100644 --- a/modules/reporting/app/models/cost_query/group_by/sql_aggregation.rb +++ b/modules/reporting/app/models/cost_query/group_by/sql_aggregation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/status_id.rb b/modules/reporting/app/models/cost_query/group_by/status_id.rb index e01d7bc20f..e602cd535f 100644 --- a/modules/reporting/app/models/cost_query/group_by/status_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/status_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/tmonth.rb b/modules/reporting/app/models/cost_query/group_by/tmonth.rb index a669cc0b28..e01747ba63 100644 --- a/modules/reporting/app/models/cost_query/group_by/tmonth.rb +++ b/modules/reporting/app/models/cost_query/group_by/tmonth.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/tweek.rb b/modules/reporting/app/models/cost_query/group_by/tweek.rb index 69e7858f69..c2e3cd12ff 100644 --- a/modules/reporting/app/models/cost_query/group_by/tweek.rb +++ b/modules/reporting/app/models/cost_query/group_by/tweek.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/tyear.rb b/modules/reporting/app/models/cost_query/group_by/tyear.rb index 5995d16ac1..98800fb6b8 100644 --- a/modules/reporting/app/models/cost_query/group_by/tyear.rb +++ b/modules/reporting/app/models/cost_query/group_by/tyear.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/type_id.rb b/modules/reporting/app/models/cost_query/group_by/type_id.rb index c7bd247d53..a4acfd27df 100644 --- a/modules/reporting/app/models/cost_query/group_by/type_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/type_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/user_id.rb b/modules/reporting/app/models/cost_query/group_by/user_id.rb index 804617647e..b3e3602f30 100644 --- a/modules/reporting/app/models/cost_query/group_by/user_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/user_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/version_id.rb b/modules/reporting/app/models/cost_query/group_by/version_id.rb index 58a36b5057..39a0d9350c 100644 --- a/modules/reporting/app/models/cost_query/group_by/version_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/version_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/week.rb b/modules/reporting/app/models/cost_query/group_by/week.rb index fe9a95c3f8..1a5347d8fe 100644 --- a/modules/reporting/app/models/cost_query/group_by/week.rb +++ b/modules/reporting/app/models/cost_query/group_by/week.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/group_by/work_package_id.rb b/modules/reporting/app/models/cost_query/group_by/work_package_id.rb index c878c5d7d4..24665c84c7 100644 --- a/modules/reporting/app/models/cost_query/group_by/work_package_id.rb +++ b/modules/reporting/app/models/cost_query/group_by/work_package_id.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/operator.rb b/modules/reporting/app/models/cost_query/operator.rb index ac7d068d39..4333a808b8 100644 --- a/modules/reporting/app/models/cost_query/operator.rb +++ b/modules/reporting/app/models/cost_query/operator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/result.rb b/modules/reporting/app/models/cost_query/result.rb index b9f33604e5..f2126fb0df 100644 --- a/modules/reporting/app/models/cost_query/result.rb +++ b/modules/reporting/app/models/cost_query/result.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/sql_statement.rb b/modules/reporting/app/models/cost_query/sql_statement.rb index aeee7cf7ec..bd6b2120c8 100644 --- a/modules/reporting/app/models/cost_query/sql_statement.rb +++ b/modules/reporting/app/models/cost_query/sql_statement.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/cost_query/table.rb b/modules/reporting/app/models/cost_query/table.rb index 2358f20aab..f40d22643d 100644 --- a/modules/reporting/app/models/cost_query/table.rb +++ b/modules/reporting/app/models/cost_query/table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/models/entry.rb b/modules/reporting/app/models/entry.rb index 7a4eabd79c..250ec022aa 100644 --- a/modules/reporting/app/models/entry.rb +++ b/modules/reporting/app/models/entry.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/views/cost_reports/_report_list.html.erb b/modules/reporting/app/views/cost_reports/_report_list.html.erb index e4c9be33a9..cf722b97e7 100644 --- a/modules/reporting/app/views/cost_reports/_report_list.html.erb +++ b/modules/reporting/app/views/cost_reports/_report_list.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/views/cost_reports/_report_menu.html.erb b/modules/reporting/app/views/cost_reports/_report_menu.html.erb index 96088d6776..859dee2c52 100644 --- a/modules/reporting/app/views/cost_reports/_report_menu.html.erb +++ b/modules/reporting/app/views/cost_reports/_report_menu.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/app/views/cost_reports/index.html.erb b/modules/reporting/app/views/cost_reports/index.html.erb index 2c9091de28..95847503ff 100644 --- a/modules/reporting/app/views/cost_reports/index.html.erb +++ b/modules/reporting/app/views/cost_reports/index.html.erb @@ -1,6 +1,6 @@ <%#-- copyright OpenProject is an open source project management software. -Copyright (C) 2012-2021 the OpenProject GmbH +Copyright (C) 2012-2022 the OpenProject GmbH This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/config/locales/crowdin/af.yml b/modules/reporting/config/locales/crowdin/af.yml index d7061ba61f..c904bf176e 100644 --- a/modules/reporting/config/locales/crowdin/af.yml +++ b/modules/reporting/config/locales/crowdin/af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ar.yml b/modules/reporting/config/locales/crowdin/ar.yml index 6396a72e69..59d3e333e6 100644 --- a/modules/reporting/config/locales/crowdin/ar.yml +++ b/modules/reporting/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/az.yml b/modules/reporting/config/locales/crowdin/az.yml index 994f93ba8b..fd30545f6d 100644 --- a/modules/reporting/config/locales/crowdin/az.yml +++ b/modules/reporting/config/locales/crowdin/az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/bg.yml b/modules/reporting/config/locales/crowdin/bg.yml index b133931853..b01b492e8c 100644 --- a/modules/reporting/config/locales/crowdin/bg.yml +++ b/modules/reporting/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ca.yml b/modules/reporting/config/locales/crowdin/ca.yml index 4c1b566fe3..418f69c7f5 100644 --- a/modules/reporting/config/locales/crowdin/ca.yml +++ b/modules/reporting/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/cs.yml b/modules/reporting/config/locales/crowdin/cs.yml index 3f68ef1ea1..fd2f5a2ba2 100644 --- a/modules/reporting/config/locales/crowdin/cs.yml +++ b/modules/reporting/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/da.yml b/modules/reporting/config/locales/crowdin/da.yml index c5d9f55f97..bbbb2aeb57 100644 --- a/modules/reporting/config/locales/crowdin/da.yml +++ b/modules/reporting/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/de.yml b/modules/reporting/config/locales/crowdin/de.yml index 85c5d41a4f..7a0d2de90d 100644 --- a/modules/reporting/config/locales/crowdin/de.yml +++ b/modules/reporting/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/el.yml b/modules/reporting/config/locales/crowdin/el.yml index f4c10ef6d4..51a0220c2a 100644 --- a/modules/reporting/config/locales/crowdin/el.yml +++ b/modules/reporting/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/eo.yml b/modules/reporting/config/locales/crowdin/eo.yml index d35e12cb60..5248b60716 100644 --- a/modules/reporting/config/locales/crowdin/eo.yml +++ b/modules/reporting/config/locales/crowdin/eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/es.yml b/modules/reporting/config/locales/crowdin/es.yml index 140518710e..fb736827da 100644 --- a/modules/reporting/config/locales/crowdin/es.yml +++ b/modules/reporting/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/et.yml b/modules/reporting/config/locales/crowdin/et.yml index 437d6812e6..74e2487422 100644 --- a/modules/reporting/config/locales/crowdin/et.yml +++ b/modules/reporting/config/locales/crowdin/et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/fa.yml b/modules/reporting/config/locales/crowdin/fa.yml index 089b206bb7..cf504ac9e3 100644 --- a/modules/reporting/config/locales/crowdin/fa.yml +++ b/modules/reporting/config/locales/crowdin/fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/fi.yml b/modules/reporting/config/locales/crowdin/fi.yml index dac3d4848e..ec849918f9 100644 --- a/modules/reporting/config/locales/crowdin/fi.yml +++ b/modules/reporting/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/fil.yml b/modules/reporting/config/locales/crowdin/fil.yml index b3b7cff525..96c74cdee0 100644 --- a/modules/reporting/config/locales/crowdin/fil.yml +++ b/modules/reporting/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/fr.yml b/modules/reporting/config/locales/crowdin/fr.yml index c60198bcc3..8cc5f99d14 100644 --- a/modules/reporting/config/locales/crowdin/fr.yml +++ b/modules/reporting/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/he.yml b/modules/reporting/config/locales/crowdin/he.yml index 3604963d27..eda8fb44ff 100644 --- a/modules/reporting/config/locales/crowdin/he.yml +++ b/modules/reporting/config/locales/crowdin/he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/hi.yml b/modules/reporting/config/locales/crowdin/hi.yml index 1dd295f748..5223e40884 100644 --- a/modules/reporting/config/locales/crowdin/hi.yml +++ b/modules/reporting/config/locales/crowdin/hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/hr.yml b/modules/reporting/config/locales/crowdin/hr.yml index 2b075bcf9d..8f9d2e294b 100644 --- a/modules/reporting/config/locales/crowdin/hr.yml +++ b/modules/reporting/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/hu.yml b/modules/reporting/config/locales/crowdin/hu.yml index b0477d8e8c..3acf695418 100644 --- a/modules/reporting/config/locales/crowdin/hu.yml +++ b/modules/reporting/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/id.yml b/modules/reporting/config/locales/crowdin/id.yml index f2a987a9c7..73f98cef53 100644 --- a/modules/reporting/config/locales/crowdin/id.yml +++ b/modules/reporting/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/it.yml b/modules/reporting/config/locales/crowdin/it.yml index 324f8a5b15..83edbec48b 100644 --- a/modules/reporting/config/locales/crowdin/it.yml +++ b/modules/reporting/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ja.yml b/modules/reporting/config/locales/crowdin/ja.yml index 17a01ea2ed..5a53a05b18 100644 --- a/modules/reporting/config/locales/crowdin/ja.yml +++ b/modules/reporting/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-af.yml b/modules/reporting/config/locales/crowdin/js-af.yml index 9f2aaa8bb2..75f0b6b826 100644 --- a/modules/reporting/config/locales/crowdin/js-af.yml +++ b/modules/reporting/config/locales/crowdin/js-af.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ar.yml b/modules/reporting/config/locales/crowdin/js-ar.yml index b7079fbf4b..19c6521aa3 100644 --- a/modules/reporting/config/locales/crowdin/js-ar.yml +++ b/modules/reporting/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-az.yml b/modules/reporting/config/locales/crowdin/js-az.yml index f495d6ea46..95e720723f 100644 --- a/modules/reporting/config/locales/crowdin/js-az.yml +++ b/modules/reporting/config/locales/crowdin/js-az.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-bg.yml b/modules/reporting/config/locales/crowdin/js-bg.yml index 45bdb3470e..644a4c9c51 100644 --- a/modules/reporting/config/locales/crowdin/js-bg.yml +++ b/modules/reporting/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ca.yml b/modules/reporting/config/locales/crowdin/js-ca.yml index 2b53d0d62a..e1f2de00ab 100644 --- a/modules/reporting/config/locales/crowdin/js-ca.yml +++ b/modules/reporting/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-cs.yml b/modules/reporting/config/locales/crowdin/js-cs.yml index 3a41148dfd..002fc5e496 100644 --- a/modules/reporting/config/locales/crowdin/js-cs.yml +++ b/modules/reporting/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-da.yml b/modules/reporting/config/locales/crowdin/js-da.yml index 13fdd3af68..de008b11bb 100644 --- a/modules/reporting/config/locales/crowdin/js-da.yml +++ b/modules/reporting/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-de.yml b/modules/reporting/config/locales/crowdin/js-de.yml index 34a0e93a35..ab043f8ec4 100644 --- a/modules/reporting/config/locales/crowdin/js-de.yml +++ b/modules/reporting/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-el.yml b/modules/reporting/config/locales/crowdin/js-el.yml index 600f3bd6eb..e2f156d822 100644 --- a/modules/reporting/config/locales/crowdin/js-el.yml +++ b/modules/reporting/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-eo.yml b/modules/reporting/config/locales/crowdin/js-eo.yml index b183309c0a..952b0e9963 100644 --- a/modules/reporting/config/locales/crowdin/js-eo.yml +++ b/modules/reporting/config/locales/crowdin/js-eo.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-es.yml b/modules/reporting/config/locales/crowdin/js-es.yml index 8095eb6657..3caf7c5d07 100644 --- a/modules/reporting/config/locales/crowdin/js-es.yml +++ b/modules/reporting/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-et.yml b/modules/reporting/config/locales/crowdin/js-et.yml index 9e2920e17e..7817f165e5 100644 --- a/modules/reporting/config/locales/crowdin/js-et.yml +++ b/modules/reporting/config/locales/crowdin/js-et.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-fa.yml b/modules/reporting/config/locales/crowdin/js-fa.yml index 574f1a0625..7aca2296c8 100644 --- a/modules/reporting/config/locales/crowdin/js-fa.yml +++ b/modules/reporting/config/locales/crowdin/js-fa.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-fi.yml b/modules/reporting/config/locales/crowdin/js-fi.yml index 7126c87ae8..e17ae24012 100644 --- a/modules/reporting/config/locales/crowdin/js-fi.yml +++ b/modules/reporting/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-fil.yml b/modules/reporting/config/locales/crowdin/js-fil.yml index eb9a6f344e..acf72d53a0 100644 --- a/modules/reporting/config/locales/crowdin/js-fil.yml +++ b/modules/reporting/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-fr.yml b/modules/reporting/config/locales/crowdin/js-fr.yml index f23f930b5a..1870c2b894 100644 --- a/modules/reporting/config/locales/crowdin/js-fr.yml +++ b/modules/reporting/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-he.yml b/modules/reporting/config/locales/crowdin/js-he.yml index b680bf40da..23f0d08b9b 100644 --- a/modules/reporting/config/locales/crowdin/js-he.yml +++ b/modules/reporting/config/locales/crowdin/js-he.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-hi.yml b/modules/reporting/config/locales/crowdin/js-hi.yml index 2b74bf54d4..c5f0d4dc5e 100644 --- a/modules/reporting/config/locales/crowdin/js-hi.yml +++ b/modules/reporting/config/locales/crowdin/js-hi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-hr.yml b/modules/reporting/config/locales/crowdin/js-hr.yml index 93f982a0f2..f8d7fb1474 100644 --- a/modules/reporting/config/locales/crowdin/js-hr.yml +++ b/modules/reporting/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-hu.yml b/modules/reporting/config/locales/crowdin/js-hu.yml index 1ca8fdb2fa..59afe3c072 100644 --- a/modules/reporting/config/locales/crowdin/js-hu.yml +++ b/modules/reporting/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-id.yml b/modules/reporting/config/locales/crowdin/js-id.yml index c090687a01..24357408ee 100644 --- a/modules/reporting/config/locales/crowdin/js-id.yml +++ b/modules/reporting/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-it.yml b/modules/reporting/config/locales/crowdin/js-it.yml index 92e307098d..daeac9ce12 100644 --- a/modules/reporting/config/locales/crowdin/js-it.yml +++ b/modules/reporting/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ja.yml b/modules/reporting/config/locales/crowdin/js-ja.yml index fc2cecd82c..039bcdfdd6 100644 --- a/modules/reporting/config/locales/crowdin/js-ja.yml +++ b/modules/reporting/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ko.yml b/modules/reporting/config/locales/crowdin/js-ko.yml index 367a820981..7a1deba9d3 100644 --- a/modules/reporting/config/locales/crowdin/js-ko.yml +++ b/modules/reporting/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-lol.yml b/modules/reporting/config/locales/crowdin/js-lol.yml index c7400dcfdf..c2d6f8d2fc 100644 --- a/modules/reporting/config/locales/crowdin/js-lol.yml +++ b/modules/reporting/config/locales/crowdin/js-lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-lt.yml b/modules/reporting/config/locales/crowdin/js-lt.yml index 9dd4f14e4b..4d1206b8f8 100644 --- a/modules/reporting/config/locales/crowdin/js-lt.yml +++ b/modules/reporting/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-lv.yml b/modules/reporting/config/locales/crowdin/js-lv.yml index 93ca9aabf8..24db03ed03 100644 --- a/modules/reporting/config/locales/crowdin/js-lv.yml +++ b/modules/reporting/config/locales/crowdin/js-lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ne.yml b/modules/reporting/config/locales/crowdin/js-ne.yml index 97edab9e0b..5cc6178336 100644 --- a/modules/reporting/config/locales/crowdin/js-ne.yml +++ b/modules/reporting/config/locales/crowdin/js-ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-nl.yml b/modules/reporting/config/locales/crowdin/js-nl.yml index 74585d7f5b..b384cc6012 100644 --- a/modules/reporting/config/locales/crowdin/js-nl.yml +++ b/modules/reporting/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-no.yml b/modules/reporting/config/locales/crowdin/js-no.yml index 9b4e420f82..b8ebe4add5 100644 --- a/modules/reporting/config/locales/crowdin/js-no.yml +++ b/modules/reporting/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-pl.yml b/modules/reporting/config/locales/crowdin/js-pl.yml index 6db8271c7d..96f36c82b8 100644 --- a/modules/reporting/config/locales/crowdin/js-pl.yml +++ b/modules/reporting/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-pt.yml b/modules/reporting/config/locales/crowdin/js-pt.yml index 2b11e65ccf..c24a748cec 100644 --- a/modules/reporting/config/locales/crowdin/js-pt.yml +++ b/modules/reporting/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ro.yml b/modules/reporting/config/locales/crowdin/js-ro.yml index 7604200a41..66ecf91597 100644 --- a/modules/reporting/config/locales/crowdin/js-ro.yml +++ b/modules/reporting/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-ru.yml b/modules/reporting/config/locales/crowdin/js-ru.yml index f3e04a28b1..28dccc9356 100644 --- a/modules/reporting/config/locales/crowdin/js-ru.yml +++ b/modules/reporting/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-rw.yml b/modules/reporting/config/locales/crowdin/js-rw.yml index 50048580e5..f542a29386 100644 --- a/modules/reporting/config/locales/crowdin/js-rw.yml +++ b/modules/reporting/config/locales/crowdin/js-rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-si.yml b/modules/reporting/config/locales/crowdin/js-si.yml index c0de5e205f..84b7112c12 100644 --- a/modules/reporting/config/locales/crowdin/js-si.yml +++ b/modules/reporting/config/locales/crowdin/js-si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-sk.yml b/modules/reporting/config/locales/crowdin/js-sk.yml index 0dda0d975c..d41d956784 100644 --- a/modules/reporting/config/locales/crowdin/js-sk.yml +++ b/modules/reporting/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-sl.yml b/modules/reporting/config/locales/crowdin/js-sl.yml index d2cd7e4a03..5cbce1016a 100644 --- a/modules/reporting/config/locales/crowdin/js-sl.yml +++ b/modules/reporting/config/locales/crowdin/js-sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-sv.yml b/modules/reporting/config/locales/crowdin/js-sv.yml index 28594356ad..d6d6ac6c11 100644 --- a/modules/reporting/config/locales/crowdin/js-sv.yml +++ b/modules/reporting/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-th.yml b/modules/reporting/config/locales/crowdin/js-th.yml index 2a206e709d..e581ac3899 100644 --- a/modules/reporting/config/locales/crowdin/js-th.yml +++ b/modules/reporting/config/locales/crowdin/js-th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-tr.yml b/modules/reporting/config/locales/crowdin/js-tr.yml index e3d5a86c6a..920776305d 100644 --- a/modules/reporting/config/locales/crowdin/js-tr.yml +++ b/modules/reporting/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-uk.yml b/modules/reporting/config/locales/crowdin/js-uk.yml index 7f21b6c6e9..8fff6d91bc 100644 --- a/modules/reporting/config/locales/crowdin/js-uk.yml +++ b/modules/reporting/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-vi.yml b/modules/reporting/config/locales/crowdin/js-vi.yml index e08e5d437d..2e09703ffd 100644 --- a/modules/reporting/config/locales/crowdin/js-vi.yml +++ b/modules/reporting/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-zh-CN.yml b/modules/reporting/config/locales/crowdin/js-zh-CN.yml index 721048fc8c..fe2ee2e1f7 100644 --- a/modules/reporting/config/locales/crowdin/js-zh-CN.yml +++ b/modules/reporting/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/js-zh-TW.yml b/modules/reporting/config/locales/crowdin/js-zh-TW.yml index b9a2e1652f..be12752704 100644 --- a/modules/reporting/config/locales/crowdin/js-zh-TW.yml +++ b/modules/reporting/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ko.yml b/modules/reporting/config/locales/crowdin/ko.yml index bc2c5fa125..36fde9d2fa 100644 --- a/modules/reporting/config/locales/crowdin/ko.yml +++ b/modules/reporting/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/lol.yml b/modules/reporting/config/locales/crowdin/lol.yml index 52769b4681..1032b48bd4 100644 --- a/modules/reporting/config/locales/crowdin/lol.yml +++ b/modules/reporting/config/locales/crowdin/lol.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/lt.yml b/modules/reporting/config/locales/crowdin/lt.yml index 521b124359..301b559181 100644 --- a/modules/reporting/config/locales/crowdin/lt.yml +++ b/modules/reporting/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/lv.yml b/modules/reporting/config/locales/crowdin/lv.yml index c3b31ab80e..e4a05a51e5 100644 --- a/modules/reporting/config/locales/crowdin/lv.yml +++ b/modules/reporting/config/locales/crowdin/lv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ne.yml b/modules/reporting/config/locales/crowdin/ne.yml index ce83a6fefa..73d98ad371 100644 --- a/modules/reporting/config/locales/crowdin/ne.yml +++ b/modules/reporting/config/locales/crowdin/ne.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/nl.yml b/modules/reporting/config/locales/crowdin/nl.yml index a35c5e5861..5ce696925d 100644 --- a/modules/reporting/config/locales/crowdin/nl.yml +++ b/modules/reporting/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/no.yml b/modules/reporting/config/locales/crowdin/no.yml index 7122c1a5fd..31b29a76a5 100644 --- a/modules/reporting/config/locales/crowdin/no.yml +++ b/modules/reporting/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/pl.yml b/modules/reporting/config/locales/crowdin/pl.yml index 9ed918618e..ef6867c7d8 100644 --- a/modules/reporting/config/locales/crowdin/pl.yml +++ b/modules/reporting/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/pt.yml b/modules/reporting/config/locales/crowdin/pt.yml index 0cea35022a..9678c16d1f 100644 --- a/modules/reporting/config/locales/crowdin/pt.yml +++ b/modules/reporting/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ro.yml b/modules/reporting/config/locales/crowdin/ro.yml index 3c404bd5f7..1fc0406425 100644 --- a/modules/reporting/config/locales/crowdin/ro.yml +++ b/modules/reporting/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/ru.yml b/modules/reporting/config/locales/crowdin/ru.yml index 8f83441a5e..8a2bd07cd8 100644 --- a/modules/reporting/config/locales/crowdin/ru.yml +++ b/modules/reporting/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/rw.yml b/modules/reporting/config/locales/crowdin/rw.yml index 31668c5b11..aa761d2188 100644 --- a/modules/reporting/config/locales/crowdin/rw.yml +++ b/modules/reporting/config/locales/crowdin/rw.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/si.yml b/modules/reporting/config/locales/crowdin/si.yml index 9e1b3fb98e..0097e2d060 100644 --- a/modules/reporting/config/locales/crowdin/si.yml +++ b/modules/reporting/config/locales/crowdin/si.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/sk.yml b/modules/reporting/config/locales/crowdin/sk.yml index 86d45668e2..af5cb1fcc7 100644 --- a/modules/reporting/config/locales/crowdin/sk.yml +++ b/modules/reporting/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/sl.yml b/modules/reporting/config/locales/crowdin/sl.yml index f5c8cb5a89..54dc06058e 100644 --- a/modules/reporting/config/locales/crowdin/sl.yml +++ b/modules/reporting/config/locales/crowdin/sl.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/sv.yml b/modules/reporting/config/locales/crowdin/sv.yml index 2fc9262a21..4cceaa0489 100644 --- a/modules/reporting/config/locales/crowdin/sv.yml +++ b/modules/reporting/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/th.yml b/modules/reporting/config/locales/crowdin/th.yml index 05ad2de957..057da24801 100644 --- a/modules/reporting/config/locales/crowdin/th.yml +++ b/modules/reporting/config/locales/crowdin/th.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/tr.yml b/modules/reporting/config/locales/crowdin/tr.yml index 343ac5002c..d50123c70a 100644 --- a/modules/reporting/config/locales/crowdin/tr.yml +++ b/modules/reporting/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/uk.yml b/modules/reporting/config/locales/crowdin/uk.yml index e7044e390b..d62230e3e3 100644 --- a/modules/reporting/config/locales/crowdin/uk.yml +++ b/modules/reporting/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/vi.yml b/modules/reporting/config/locales/crowdin/vi.yml index a4893c38a1..c68a97a078 100644 --- a/modules/reporting/config/locales/crowdin/vi.yml +++ b/modules/reporting/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/zh-CN.yml b/modules/reporting/config/locales/crowdin/zh-CN.yml index ffc7f2970e..e28bae259d 100644 --- a/modules/reporting/config/locales/crowdin/zh-CN.yml +++ b/modules/reporting/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/crowdin/zh-TW.yml b/modules/reporting/config/locales/crowdin/zh-TW.yml index 259bb73901..b239d3ba2f 100644 --- a/modules/reporting/config/locales/crowdin/zh-TW.yml +++ b/modules/reporting/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright #OpenProject is an open source project management software. -#Copyright (C) 2012-2021 the OpenProject GmbH +#Copyright (C) 2012-2022 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/modules/reporting/config/locales/en.yml b/modules/reporting/config/locales/en.yml index fc302496b5..dbcc219b1c 100644 --- a/modules/reporting/config/locales/en.yml +++ b/modules/reporting/config/locales/en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/config/locales/js-en.yml b/modules/reporting/config/locales/js-en.yml index 77c9c32a2f..23a1cf13b8 100644 --- a/modules/reporting/config/locales/js-en.yml +++ b/modules/reporting/config/locales/js-en.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/config/routes.rb b/modules/reporting/config/routes.rb index 86fc1fb764..7b66914b63 100644 --- a/modules/reporting/config/routes.rb +++ b/modules/reporting/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/db/migrate/20180323130704_to_v710_aggregated_reporting_migrations.rb b/modules/reporting/db/migrate/20180323130704_to_v710_aggregated_reporting_migrations.rb index 01fc6c38a2..af6e33f179 100644 --- a/modules/reporting/db/migrate/20180323130704_to_v710_aggregated_reporting_migrations.rb +++ b/modules/reporting/db/migrate/20180323130704_to_v710_aggregated_reporting_migrations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/engine.rb b/modules/reporting/lib/engine.rb index dbf65293ae..b5c566964f 100644 --- a/modules/reporting/lib/engine.rb +++ b/modules/reporting/lib/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting.rb b/modules/reporting/lib/open_project/reporting.rb index 6bccf21780..f67d6f9a3a 100644 --- a/modules/reporting/lib/open_project/reporting.rb +++ b/modules/reporting/lib/open_project/reporting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/engine.rb b/modules/reporting/lib/open_project/reporting/engine.rb index 58b91ea5c8..b0485026d7 100644 --- a/modules/reporting/lib/open_project/reporting/engine.rb +++ b/modules/reporting/lib/open_project/reporting/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/hooks.rb b/modules/reporting/lib/open_project/reporting/hooks.rb index 8130564717..34c9e25fd1 100644 --- a/modules/reporting/lib/open_project/reporting/hooks.rb +++ b/modules/reporting/lib/open_project/reporting/hooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches.rb b/modules/reporting/lib/open_project/reporting/patches.rb index 4af8a02431..fc61b67f45 100644 --- a/modules/reporting/lib/open_project/reporting/patches.rb +++ b/modules/reporting/lib/open_project/reporting/patches.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/big_decimal_patch.rb b/modules/reporting/lib/open_project/reporting/patches/big_decimal_patch.rb index 15edc73208..eef0478ebc 100644 --- a/modules/reporting/lib/open_project/reporting/patches/big_decimal_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/big_decimal_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/custom_fields_controller_patch.rb b/modules/reporting/lib/open_project/reporting/patches/custom_fields_controller_patch.rb index eeec768be3..d52d9b733e 100644 --- a/modules/reporting/lib/open_project/reporting/patches/custom_fields_controller_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/custom_fields_controller_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/open_project/configuration_patch.rb b/modules/reporting/lib/open_project/reporting/patches/open_project/configuration_patch.rb index b586622767..b42f7d6a5a 100644 --- a/modules/reporting/lib/open_project/reporting/patches/open_project/configuration_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/open_project/configuration_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/role_seeder_patch.rb b/modules/reporting/lib/open_project/reporting/patches/role_seeder_patch.rb index 999fa21355..f553b7ade9 100644 --- a/modules/reporting/lib/open_project/reporting/patches/role_seeder_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/role_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/setting_seeder_patch.rb b/modules/reporting/lib/open_project/reporting/patches/setting_seeder_patch.rb index 3a10f2952d..d2df78c404 100644 --- a/modules/reporting/lib/open_project/reporting/patches/setting_seeder_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/setting_seeder_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/open_project/reporting/patches/to_date_patch.rb b/modules/reporting/lib/open_project/reporting/patches/to_date_patch.rb index 02149617dc..7d6d695d00 100644 --- a/modules/reporting/lib/open_project/reporting/patches/to_date_patch.rb +++ b/modules/reporting/lib/open_project/reporting/patches/to_date_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/openproject-reporting.rb b/modules/reporting/lib/openproject-reporting.rb index 94bdb45fae..82ea67ff2f 100644 --- a/modules/reporting/lib/openproject-reporting.rb +++ b/modules/reporting/lib/openproject-reporting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/chainable.rb b/modules/reporting/lib/report/chainable.rb index fc49299c88..0df03afa51 100644 --- a/modules/reporting/lib/report/chainable.rb +++ b/modules/reporting/lib/report/chainable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/filter.rb b/modules/reporting/lib/report/filter.rb index e341b1ef8c..f6539602b9 100644 --- a/modules/reporting/lib/report/filter.rb +++ b/modules/reporting/lib/report/filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/filter/base.rb b/modules/reporting/lib/report/filter/base.rb index 90d57a2ce7..33b8440e9e 100644 --- a/modules/reporting/lib/report/filter/base.rb +++ b/modules/reporting/lib/report/filter/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/filter/multi_choice.rb b/modules/reporting/lib/report/filter/multi_choice.rb index 55f1d2f63e..c145d27742 100644 --- a/modules/reporting/lib/report/filter/multi_choice.rb +++ b/modules/reporting/lib/report/filter/multi_choice.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/filter/no_filter.rb b/modules/reporting/lib/report/filter/no_filter.rb index 204f3c6c6d..c6257dd92d 100644 --- a/modules/reporting/lib/report/filter/no_filter.rb +++ b/modules/reporting/lib/report/filter/no_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/group_by.rb b/modules/reporting/lib/report/group_by.rb index ea598db7d0..6116e07b3b 100644 --- a/modules/reporting/lib/report/group_by.rb +++ b/modules/reporting/lib/report/group_by.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/group_by/base.rb b/modules/reporting/lib/report/group_by/base.rb index 921a427afb..e27c9ea570 100644 --- a/modules/reporting/lib/report/group_by/base.rb +++ b/modules/reporting/lib/report/group_by/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/group_by/ruby_aggregation.rb b/modules/reporting/lib/report/group_by/ruby_aggregation.rb index edff733b97..d37aef43d1 100644 --- a/modules/reporting/lib/report/group_by/ruby_aggregation.rb +++ b/modules/reporting/lib/report/group_by/ruby_aggregation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/group_by/singleton_value.rb b/modules/reporting/lib/report/group_by/singleton_value.rb index a95b4c7d1f..ce5da06f7b 100644 --- a/modules/reporting/lib/report/group_by/singleton_value.rb +++ b/modules/reporting/lib/report/group_by/singleton_value.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/group_by/sql_aggregation.rb b/modules/reporting/lib/report/group_by/sql_aggregation.rb index 04119aa038..9968be0c1f 100644 --- a/modules/reporting/lib/report/group_by/sql_aggregation.rb +++ b/modules/reporting/lib/report/group_by/sql_aggregation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/inherited_attribute.rb b/modules/reporting/lib/report/inherited_attribute.rb index 51bf97905d..b5c08acd7d 100644 --- a/modules/reporting/lib/report/inherited_attribute.rb +++ b/modules/reporting/lib/report/inherited_attribute.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/operator.rb b/modules/reporting/lib/report/operator.rb index 8a8a0e9336..e30e29a948 100644 --- a/modules/reporting/lib/report/operator.rb +++ b/modules/reporting/lib/report/operator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/query_utils.rb b/modules/reporting/lib/report/query_utils.rb index 1c8179712c..2a7dcd31ee 100644 --- a/modules/reporting/lib/report/query_utils.rb +++ b/modules/reporting/lib/report/query_utils.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/result.rb b/modules/reporting/lib/report/result.rb index 1f0a1d4d36..5745770546 100644 --- a/modules/reporting/lib/report/result.rb +++ b/modules/reporting/lib/report/result.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/sql_statement.rb b/modules/reporting/lib/report/sql_statement.rb index 25e53f9afb..2f7ef1de8b 100644 --- a/modules/reporting/lib/report/sql_statement.rb +++ b/modules/reporting/lib/report/sql_statement.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/table.rb b/modules/reporting/lib/report/table.rb index 8c25920406..d22ca19f42 100644 --- a/modules/reporting/lib/report/table.rb +++ b/modules/reporting/lib/report/table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/transformer.rb b/modules/reporting/lib/report/transformer.rb index 80fd3e7474..d1211d9786 100644 --- a/modules/reporting/lib/report/transformer.rb +++ b/modules/reporting/lib/report/transformer.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/validation.rb b/modules/reporting/lib/report/validation.rb index cb5b566990..2ca33aa4c0 100644 --- a/modules/reporting/lib/report/validation.rb +++ b/modules/reporting/lib/report/validation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/validation/dates.rb b/modules/reporting/lib/report/validation/dates.rb index 4f1efdeac3..551b2488f4 100644 --- a/modules/reporting/lib/report/validation/dates.rb +++ b/modules/reporting/lib/report/validation/dates.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/validation/integers.rb b/modules/reporting/lib/report/validation/integers.rb index 1ff1421136..fbb9eaefc4 100644 --- a/modules/reporting/lib/report/validation/integers.rb +++ b/modules/reporting/lib/report/validation/integers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/report/walker.rb b/modules/reporting/lib/report/walker.rb index 1f170d1d43..0558b3b1eb 100644 --- a/modules/reporting/lib/report/walker.rb +++ b/modules/reporting/lib/report/walker.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/base.rb b/modules/reporting/lib/widget/base.rb index c67eb4f360..ffd8bd6efd 100644 --- a/modules/reporting/lib/widget/base.rb +++ b/modules/reporting/lib/widget/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls.rb b/modules/reporting/lib/widget/controls.rb index 4c2d020328..28ae1bdff5 100644 --- a/modules/reporting/lib/widget/controls.rb +++ b/modules/reporting/lib/widget/controls.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/apply.rb b/modules/reporting/lib/widget/controls/apply.rb index 772ff50094..84774c4f62 100644 --- a/modules/reporting/lib/widget/controls/apply.rb +++ b/modules/reporting/lib/widget/controls/apply.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/clear.rb b/modules/reporting/lib/widget/controls/clear.rb index f70577c7f0..31e2058b8a 100644 --- a/modules/reporting/lib/widget/controls/clear.rb +++ b/modules/reporting/lib/widget/controls/clear.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/delete.rb b/modules/reporting/lib/widget/controls/delete.rb index 5705417587..79a77064a4 100644 --- a/modules/reporting/lib/widget/controls/delete.rb +++ b/modules/reporting/lib/widget/controls/delete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/query_name.rb b/modules/reporting/lib/widget/controls/query_name.rb index 54a9fa6f19..43c409b2ce 100644 --- a/modules/reporting/lib/widget/controls/query_name.rb +++ b/modules/reporting/lib/widget/controls/query_name.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/save.rb b/modules/reporting/lib/widget/controls/save.rb index 3720618cb9..8e2b9cd943 100644 --- a/modules/reporting/lib/widget/controls/save.rb +++ b/modules/reporting/lib/widget/controls/save.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/controls/save_as.rb b/modules/reporting/lib/widget/controls/save_as.rb index b89ba1b987..699d90428d 100644 --- a/modules/reporting/lib/widget/controls/save_as.rb +++ b/modules/reporting/lib/widget/controls/save_as.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/cost_types.rb b/modules/reporting/lib/widget/cost_types.rb index 9acfd5799c..7e2d8624f7 100644 --- a/modules/reporting/lib/widget/cost_types.rb +++ b/modules/reporting/lib/widget/cost_types.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters.rb b/modules/reporting/lib/widget/filters.rb index 124b8adc3f..654c33641b 100644 --- a/modules/reporting/lib/widget/filters.rb +++ b/modules/reporting/lib/widget/filters.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/base.rb b/modules/reporting/lib/widget/filters/base.rb index d9e55ab149..d51175826c 100644 --- a/modules/reporting/lib/widget/filters/base.rb +++ b/modules/reporting/lib/widget/filters/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/date.rb b/modules/reporting/lib/widget/filters/date.rb index f93c18841f..9385c23429 100644 --- a/modules/reporting/lib/widget/filters/date.rb +++ b/modules/reporting/lib/widget/filters/date.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/heavy.rb b/modules/reporting/lib/widget/filters/heavy.rb index 020fa5b037..91c1c2fa39 100644 --- a/modules/reporting/lib/widget/filters/heavy.rb +++ b/modules/reporting/lib/widget/filters/heavy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/label.rb b/modules/reporting/lib/widget/filters/label.rb index b9454e6528..d6f5fe83f2 100644 --- a/modules/reporting/lib/widget/filters/label.rb +++ b/modules/reporting/lib/widget/filters/label.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/multi_choice.rb b/modules/reporting/lib/widget/filters/multi_choice.rb index 691bf4e6e0..7b207501cd 100644 --- a/modules/reporting/lib/widget/filters/multi_choice.rb +++ b/modules/reporting/lib/widget/filters/multi_choice.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/multi_values.rb b/modules/reporting/lib/widget/filters/multi_values.rb index 0828c964c6..df028ab732 100644 --- a/modules/reporting/lib/widget/filters/multi_values.rb +++ b/modules/reporting/lib/widget/filters/multi_values.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/operators.rb b/modules/reporting/lib/widget/filters/operators.rb index 65e26d1195..d86a3215a0 100644 --- a/modules/reporting/lib/widget/filters/operators.rb +++ b/modules/reporting/lib/widget/filters/operators.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/option.rb b/modules/reporting/lib/widget/filters/option.rb index 143539c3da..81f14a8652 100644 --- a/modules/reporting/lib/widget/filters/option.rb +++ b/modules/reporting/lib/widget/filters/option.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/remove_button.rb b/modules/reporting/lib/widget/filters/remove_button.rb index f43852bca0..05ac765c20 100644 --- a/modules/reporting/lib/widget/filters/remove_button.rb +++ b/modules/reporting/lib/widget/filters/remove_button.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/filters/text_box.rb b/modules/reporting/lib/widget/filters/text_box.rb index 4cf529c9ac..a51e33bac8 100644 --- a/modules/reporting/lib/widget/filters/text_box.rb +++ b/modules/reporting/lib/widget/filters/text_box.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/group_bys.rb b/modules/reporting/lib/widget/group_bys.rb index c78efed039..67d266622d 100644 --- a/modules/reporting/lib/widget/group_bys.rb +++ b/modules/reporting/lib/widget/group_bys.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/reporting_widget.rb b/modules/reporting/lib/widget/reporting_widget.rb index b3b5745d45..85477ecc92 100644 --- a/modules/reporting/lib/widget/reporting_widget.rb +++ b/modules/reporting/lib/widget/reporting_widget.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/settings.rb b/modules/reporting/lib/widget/settings.rb index d8671c44ed..09ef628592 100644 --- a/modules/reporting/lib/widget/settings.rb +++ b/modules/reporting/lib/widget/settings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/settings/fieldset.rb b/modules/reporting/lib/widget/settings/fieldset.rb index 3400083868..eaa60ea7f6 100644 --- a/modules/reporting/lib/widget/settings/fieldset.rb +++ b/modules/reporting/lib/widget/settings/fieldset.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/settings_patch.rb b/modules/reporting/lib/widget/settings_patch.rb index 52d3cdd114..6fc3e1a577 100644 --- a/modules/reporting/lib/widget/settings_patch.rb +++ b/modules/reporting/lib/widget/settings_patch.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/table.rb b/modules/reporting/lib/widget/table.rb index b9e6ffd345..42062fdf0b 100644 --- a/modules/reporting/lib/widget/table.rb +++ b/modules/reporting/lib/widget/table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/table/entry_table.rb b/modules/reporting/lib/widget/table/entry_table.rb index 2f45af895e..ba12ce4bfb 100644 --- a/modules/reporting/lib/widget/table/entry_table.rb +++ b/modules/reporting/lib/widget/table/entry_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/lib/widget/table/report_table.rb b/modules/reporting/lib/widget/table/report_table.rb index 4424e24067..a5d8a16a4a 100644 --- a/modules/reporting/lib/widget/table/report_table.rb +++ b/modules/reporting/lib/widget/table/report_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/controllers/cost_reports_controller_spec.rb b/modules/reporting/spec/controllers/cost_reports_controller_spec.rb index 5ac7a12968..11d2104337 100644 --- a/modules/reporting/spec/controllers/cost_reports_controller_spec.rb +++ b/modules/reporting/spec/controllers/cost_reports_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/controllers/custom_fields_controller_spec.rb b/modules/reporting/spec/controllers/custom_fields_controller_spec.rb index 5eb945de22..bb878b6fd1 100644 --- a/modules/reporting/spec/controllers/custom_fields_controller_spec.rb +++ b/modules/reporting/spec/controllers/custom_fields_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/factories/cost_query_factory.rb b/modules/reporting/spec/factories/cost_query_factory.rb index d6ee42f485..e9b1575b03 100644 --- a/modules/reporting/spec/factories/cost_query_factory.rb +++ b/modules/reporting/spec/factories/cost_query_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/custom_fields_spec.rb b/modules/reporting/spec/features/custom_fields_spec.rb index 10609696ef..beaac665c2 100644 --- a/modules/reporting/spec/features/custom_fields_spec.rb +++ b/modules/reporting/spec/features/custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/menu_spec.rb b/modules/reporting/spec/features/menu_spec.rb index 0047e1ac3b..b63e1537b7 100644 --- a/modules/reporting/spec/features/menu_spec.rb +++ b/modules/reporting/spec/features/menu_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/support/components/cost_reports_base_table.rb b/modules/reporting/spec/features/support/components/cost_reports_base_table.rb index a7c808fdf1..51050b72d8 100644 --- a/modules/reporting/spec/features/support/components/cost_reports_base_table.rb +++ b/modules/reporting/spec/features/support/components/cost_reports_base_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/top_menu_item_spec.rb b/modules/reporting/spec/features/top_menu_item_spec.rb index eedba1175b..5ce55365f7 100644 --- a/modules/reporting/spec/features/top_menu_item_spec.rb +++ b/modules/reporting/spec/features/top_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/update_cost_report_spec.rb b/modules/reporting/spec/features/update_cost_report_spec.rb index bf0f57abf8..42e6e381d9 100644 --- a/modules/reporting/spec/features/update_cost_report_spec.rb +++ b/modules/reporting/spec/features/update_cost_report_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/features/update_entries_spec.rb b/modules/reporting/spec/features/update_entries_spec.rb index 6e4e76fbb5..3051568e32 100644 --- a/modules/reporting/spec/features/update_entries_spec.rb +++ b/modules/reporting/spec/features/update_entries_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/helpers/reporting_helper_spec.rb b/modules/reporting/spec/helpers/reporting_helper_spec.rb index 70d7b8a894..272d9f555e 100644 --- a/modules/reporting/spec/helpers/reporting_helper_spec.rb +++ b/modules/reporting/spec/helpers/reporting_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/lib/open_project/configuration_spec.rb b/modules/reporting/spec/lib/open_project/configuration_spec.rb index eca3c470df..ee94db0b0b 100644 --- a/modules/reporting/spec/lib/open_project/configuration_spec.rb +++ b/modules/reporting/spec/lib/open_project/configuration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/lib/open_project/reporting/default_data_spec.rb b/modules/reporting/spec/lib/open_project/reporting/default_data_spec.rb index 1c1fa6eb22..ec07f40122 100644 --- a/modules/reporting/spec/lib/open_project/reporting/default_data_spec.rb +++ b/modules/reporting/spec/lib/open_project/reporting/default_data_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/cache_spec.rb b/modules/reporting/spec/models/cost_query/cache_spec.rb index 5cc3774826..793907dfee 100644 --- a/modules/reporting/spec/models/cost_query/cache_spec.rb +++ b/modules/reporting/spec/models/cost_query/cache_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/chaining_spec.rb b/modules/reporting/spec/models/cost_query/chaining_spec.rb index 9fd8f21ca7..2a0995672f 100644 --- a/modules/reporting/spec/models/cost_query/chaining_spec.rb +++ b/modules/reporting/spec/models/cost_query/chaining_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/filter_spec.rb b/modules/reporting/spec/models/cost_query/filter_spec.rb index e05b20ff72..ff72543a3f 100644 --- a/modules/reporting/spec/models/cost_query/filter_spec.rb +++ b/modules/reporting/spec/models/cost_query/filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/group_by_spec.rb b/modules/reporting/spec/models/cost_query/group_by_spec.rb index b19589a6c4..e40ceee9c8 100644 --- a/modules/reporting/spec/models/cost_query/group_by_spec.rb +++ b/modules/reporting/spec/models/cost_query/group_by_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/integration_spec.rb b/modules/reporting/spec/models/cost_query/integration_spec.rb index 9fc88cea0d..c9b5bf230a 100644 --- a/modules/reporting/spec/models/cost_query/integration_spec.rb +++ b/modules/reporting/spec/models/cost_query/integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/operator_spec.rb b/modules/reporting/spec/models/cost_query/operator_spec.rb index f2476bd143..cd3df36e0c 100644 --- a/modules/reporting/spec/models/cost_query/operator_spec.rb +++ b/modules/reporting/spec/models/cost_query/operator_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/result_spec.rb b/modules/reporting/spec/models/cost_query/result_spec.rb index 2aaea29581..21c63b1001 100644 --- a/modules/reporting/spec/models/cost_query/result_spec.rb +++ b/modules/reporting/spec/models/cost_query/result_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/validation_spec.rb b/modules/reporting/spec/models/cost_query/validation_spec.rb index 75a4001dfc..51d70aa3f7 100644 --- a/modules/reporting/spec/models/cost_query/validation_spec.rb +++ b/modules/reporting/spec/models/cost_query/validation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/models/cost_query/walker_spec.rb b/modules/reporting/spec/models/cost_query/walker_spec.rb index 939d0cb3dc..ea14ba544b 100644 --- a/modules/reporting/spec/models/cost_query/walker_spec.rb +++ b/modules/reporting/spec/models/cost_query/walker_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/requests/custom_field_cache_spec.rb b/modules/reporting/spec/requests/custom_field_cache_spec.rb index ee9f9dccab..714213692f 100644 --- a/modules/reporting/spec/requests/custom_field_cache_spec.rb +++ b/modules/reporting/spec/requests/custom_field_cache_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/spec_helper.rb b/modules/reporting/spec/spec_helper.rb index ba55fd654d..a62606b218 100644 --- a/modules/reporting/spec/spec_helper.rb +++ b/modules/reporting/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/support/configuration_helper.rb b/modules/reporting/spec/support/configuration_helper.rb index f285c43e27..64464091e6 100644 --- a/modules/reporting/spec/support/configuration_helper.rb +++ b/modules/reporting/spec/support/configuration_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/support/custom_field_filter.rb b/modules/reporting/spec/support/custom_field_filter.rb index 84bd9b0c50..b0ad9a21ec 100644 --- a/modules/reporting/spec/support/custom_field_filter.rb +++ b/modules/reporting/spec/support/custom_field_filter.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/support/plugin_spec_helper.rb b/modules/reporting/spec/support/plugin_spec_helper.rb index 754372022b..47ee66ac58 100644 --- a/modules/reporting/spec/support/plugin_spec_helper.rb +++ b/modules/reporting/spec/support/plugin_spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/reporting/spec/support/query_helper.rb b/modules/reporting/spec/support/query_helper.rb index 5a8068430e..adf0ca804e 100644 --- a/modules/reporting/spec/support/query_helper.rb +++ b/modules/reporting/spec/support/query_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/lib/open_project/team_planner.rb b/modules/team_planner/lib/open_project/team_planner.rb index bd52aedfc5..83ca3d7bd9 100644 --- a/modules/team_planner/lib/open_project/team_planner.rb +++ b/modules/team_planner/lib/open_project/team_planner.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/contracts/views/create_contract_team_planner_spec.rb b/modules/team_planner/spec/contracts/views/create_contract_team_planner_spec.rb index 5199ded703..b76f36d3ec 100644 --- a/modules/team_planner/spec/contracts/views/create_contract_team_planner_spec.rb +++ b/modules/team_planner/spec/contracts/views/create_contract_team_planner_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/query_handling_spec.rb b/modules/team_planner/spec/features/query_handling_spec.rb index a60c798677..56310efc0e 100644 --- a/modules/team_planner/spec/features/query_handling_spec.rb +++ b/modules/team_planner/spec/features/query_handling_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/shared_context.rb b/modules/team_planner/spec/features/shared_context.rb index 286e7ada5f..9092a1dffe 100644 --- a/modules/team_planner/spec/features/shared_context.rb +++ b/modules/team_planner/spec/features/shared_context.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_add_existing_work_packages_spec.rb b/modules/team_planner/spec/features/team_planner_add_existing_work_packages_spec.rb index 06c6541687..1e231d25d5 100644 --- a/modules/team_planner/spec/features/team_planner_add_existing_work_packages_spec.rb +++ b/modules/team_planner/spec/features/team_planner_add_existing_work_packages_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_create_spec.rb b/modules/team_planner/spec/features/team_planner_create_spec.rb index 63adc5abad..f5f5df8006 100644 --- a/modules/team_planner/spec/features/team_planner_create_spec.rb +++ b/modules/team_planner/spec/features/team_planner_create_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_error_handling_spec.rb b/modules/team_planner/spec/features/team_planner_error_handling_spec.rb index bd47f8ec2e..3c45dfdd2d 100644 --- a/modules/team_planner/spec/features/team_planner_error_handling_spec.rb +++ b/modules/team_planner/spec/features/team_planner_error_handling_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_index_spec.rb b/modules/team_planner/spec/features/team_planner_index_spec.rb index ee5441cbe8..8c4f995c5f 100644 --- a/modules/team_planner/spec/features/team_planner_index_spec.rb +++ b/modules/team_planner/spec/features/team_planner_index_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_menu_spec.rb b/modules/team_planner/spec/features/team_planner_menu_spec.rb index dc4099247f..165f33438a 100644 --- a/modules/team_planner/spec/features/team_planner_menu_spec.rb +++ b/modules/team_planner/spec/features/team_planner_menu_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_project_include_spec.rb b/modules/team_planner/spec/features/team_planner_project_include_spec.rb index 47038acaa0..39785d086f 100644 --- a/modules/team_planner/spec/features/team_planner_project_include_spec.rb +++ b/modules/team_planner/spec/features/team_planner_project_include_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_remove_event_spec.rb b/modules/team_planner/spec/features/team_planner_remove_event_spec.rb index 9a8fa43a78..871d9713bd 100644 --- a/modules/team_planner/spec/features/team_planner_remove_event_spec.rb +++ b/modules/team_planner/spec/features/team_planner_remove_event_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_spec.rb b/modules/team_planner/spec/features/team_planner_spec.rb index 1e72fe4e6d..5562435945 100644 --- a/modules/team_planner/spec/features/team_planner_spec.rb +++ b/modules/team_planner/spec/features/team_planner_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_split_view_spec.rb b/modules/team_planner/spec/features/team_planner_split_view_spec.rb index 201b0f3d50..6539b2ec83 100644 --- a/modules/team_planner/spec/features/team_planner_split_view_spec.rb +++ b/modules/team_planner/spec/features/team_planner_split_view_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_upsale_spec.rb b/modules/team_planner/spec/features/team_planner_upsale_spec.rb index 65b3534ebc..b064da4a82 100644 --- a/modules/team_planner/spec/features/team_planner_upsale_spec.rb +++ b/modules/team_planner/spec/features/team_planner_upsale_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_user_interaction_spec.rb b/modules/team_planner/spec/features/team_planner_user_interaction_spec.rb index a7d5cc6cf0..55354ed836 100644 --- a/modules/team_planner/spec/features/team_planner_user_interaction_spec.rb +++ b/modules/team_planner/spec/features/team_planner_user_interaction_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/features/team_planner_view_modes_spec.rb b/modules/team_planner/spec/features/team_planner_view_modes_spec.rb index 372cbb1d65..9b6808fbc5 100644 --- a/modules/team_planner/spec/features/team_planner_view_modes_spec.rb +++ b/modules/team_planner/spec/features/team_planner_view_modes_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/permissions/view_team_planner_spec.rb b/modules/team_planner/spec/permissions/view_team_planner_spec.rb index 8d6589c1ca..3209b1e9f8 100644 --- a/modules/team_planner/spec/permissions/view_team_planner_spec.rb +++ b/modules/team_planner/spec/permissions/view_team_planner_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/routing/team_planner_routing_spec.rb b/modules/team_planner/spec/routing/team_planner_routing_spec.rb index 7104844183..7057a041d0 100644 --- a/modules/team_planner/spec/routing/team_planner_routing_spec.rb +++ b/modules/team_planner/spec/routing/team_planner_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/support/components/add_existing_pane.rb b/modules/team_planner/spec/support/components/add_existing_pane.rb index fc1e3ca589..a3dc10a2d2 100644 --- a/modules/team_planner/spec/support/components/add_existing_pane.rb +++ b/modules/team_planner/spec/support/components/add_existing_pane.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/team_planner/spec/support/pages/team_planner.rb b/modules/team_planner/spec/support/pages/team_planner.rb index 5f03ce9b87..20a0f99758 100644 --- a/modules/team_planner/spec/support/pages/team_planner.rb +++ b/modules/team_planner/spec/support/pages/team_planner.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/two_factor_authentication/spec/routing/two_factor_authentication/my/two_factor_devices_spec.rb b/modules/two_factor_authentication/spec/routing/two_factor_authentication/my/two_factor_devices_spec.rb index 07fe57dd01..ec6e5c75a7 100644 --- a/modules/two_factor_authentication/spec/routing/two_factor_authentication/my/two_factor_devices_spec.rb +++ b/modules/two_factor_authentication/spec/routing/two_factor_authentication/my/two_factor_devices_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/two_factor_authentication/spec/routing/two_factor_authentication/users/two_factor_devices_spec.rb b/modules/two_factor_authentication/spec/routing/two_factor_authentication/users/two_factor_devices_spec.rb index 7adcdf59fa..68d9c53ccf 100644 --- a/modules/two_factor_authentication/spec/routing/two_factor_authentication/users/two_factor_devices_spec.rb +++ b/modules/two_factor_authentication/spec/routing/two_factor_authentication/users/two_factor_devices_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/controllers/webhooks/incoming/hooks_controller.rb b/modules/webhooks/app/controllers/webhooks/incoming/hooks_controller.rb index e802ba3171..7ab20aae9b 100644 --- a/modules/webhooks/app/controllers/webhooks/incoming/hooks_controller.rb +++ b/modules/webhooks/app/controllers/webhooks/incoming/hooks_controller.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/attachment_webhook_job.rb b/modules/webhooks/app/workers/attachment_webhook_job.rb index 8fef8637d2..db1c8e1cb3 100644 --- a/modules/webhooks/app/workers/attachment_webhook_job.rb +++ b/modules/webhooks/app/workers/attachment_webhook_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/project_webhook_job.rb b/modules/webhooks/app/workers/project_webhook_job.rb index 23fc05b059..f30c020251 100644 --- a/modules/webhooks/app/workers/project_webhook_job.rb +++ b/modules/webhooks/app/workers/project_webhook_job.rb @@ -3,7 +3,7 @@ require 'rest-client' #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/represented_webhook_job.rb b/modules/webhooks/app/workers/represented_webhook_job.rb index 082d566f32..c65181660d 100644 --- a/modules/webhooks/app/workers/represented_webhook_job.rb +++ b/modules/webhooks/app/workers/represented_webhook_job.rb @@ -3,7 +3,7 @@ require 'rest-client' #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/time_entry_webhook_job.rb b/modules/webhooks/app/workers/time_entry_webhook_job.rb index e96ffac618..d11457cfdc 100644 --- a/modules/webhooks/app/workers/time_entry_webhook_job.rb +++ b/modules/webhooks/app/workers/time_entry_webhook_job.rb @@ -3,7 +3,7 @@ require 'rest-client' #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/webhook_job.rb b/modules/webhooks/app/workers/webhook_job.rb index b0d77e1329..6e02106ad8 100644 --- a/modules/webhooks/app/workers/webhook_job.rb +++ b/modules/webhooks/app/workers/webhook_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/app/workers/work_package_webhook_job.rb b/modules/webhooks/app/workers/work_package_webhook_job.rb index 67d2282ad4..ceed6dc1cf 100644 --- a/modules/webhooks/app/workers/work_package_webhook_job.rb +++ b/modules/webhooks/app/workers/work_package_webhook_job.rb @@ -3,7 +3,7 @@ require 'rest-client' #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/config/routes.rb b/modules/webhooks/config/routes.rb index ef268d053c..500cf86bcd 100644 --- a/modules/webhooks/config/routes.rb +++ b/modules/webhooks/config/routes.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/lib/open_project/webhooks.rb b/modules/webhooks/lib/open_project/webhooks.rb index 58807937bc..93ba557a86 100644 --- a/modules/webhooks/lib/open_project/webhooks.rb +++ b/modules/webhooks/lib/open_project/webhooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/lib/open_project/webhooks/engine.rb b/modules/webhooks/lib/open_project/webhooks/engine.rb index e34218f885..2a38fc73b4 100644 --- a/modules/webhooks/lib/open_project/webhooks/engine.rb +++ b/modules/webhooks/lib/open_project/webhooks/engine.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/lib/open_project/webhooks/hook.rb b/modules/webhooks/lib/open_project/webhooks/hook.rb index 9ac79337a2..1ed3c2df6b 100644 --- a/modules/webhooks/lib/open_project/webhooks/hook.rb +++ b/modules/webhooks/lib/open_project/webhooks/hook.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/lib/openproject-webhooks.rb b/modules/webhooks/lib/openproject-webhooks.rb index d03c148326..ac852d9bda 100644 --- a/modules/webhooks/lib/openproject-webhooks.rb +++ b/modules/webhooks/lib/openproject-webhooks.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/controllers/outgoing/admin_controller_spec.rb b/modules/webhooks/spec/controllers/outgoing/admin_controller_spec.rb index 131d6d9601..746c6651e5 100644 --- a/modules/webhooks/spec/controllers/outgoing/admin_controller_spec.rb +++ b/modules/webhooks/spec/controllers/outgoing/admin_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/controllers/webhooks_controller_spec.rb b/modules/webhooks/spec/controllers/webhooks_controller_spec.rb index 9dd7cf876d..96cab64eb3 100644 --- a/modules/webhooks/spec/controllers/webhooks_controller_spec.rb +++ b/modules/webhooks/spec/controllers/webhooks_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/factories/webhook_factory.rb b/modules/webhooks/spec/factories/webhook_factory.rb index a8d1093f6b..1a4e0928d2 100644 --- a/modules/webhooks/spec/factories/webhook_factory.rb +++ b/modules/webhooks/spec/factories/webhook_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/factories/webhook_log_factory.rb b/modules/webhooks/spec/factories/webhook_log_factory.rb index 3f3462807b..fd6067157b 100644 --- a/modules/webhooks/spec/factories/webhook_log_factory.rb +++ b/modules/webhooks/spec/factories/webhook_log_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/lib/hook_spec.rb b/modules/webhooks/spec/lib/hook_spec.rb index 5204817f57..7293f334c0 100644 --- a/modules/webhooks/spec/lib/hook_spec.rb +++ b/modules/webhooks/spec/lib/hook_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/lib/webhooks_spec.rb b/modules/webhooks/spec/lib/webhooks_spec.rb index 97f18af2f4..e659ec8eea 100644 --- a/modules/webhooks/spec/lib/webhooks_spec.rb +++ b/modules/webhooks/spec/lib/webhooks_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/routing/webhooks/outgoing/admin_controller_spec.rb b/modules/webhooks/spec/routing/webhooks/outgoing/admin_controller_spec.rb index 798736ea96..87f1e8117b 100644 --- a/modules/webhooks/spec/routing/webhooks/outgoing/admin_controller_spec.rb +++ b/modules/webhooks/spec/routing/webhooks/outgoing/admin_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/spec_helper.rb b/modules/webhooks/spec/spec_helper.rb index d10af1702f..3fb9d5b7e6 100644 --- a/modules/webhooks/spec/spec_helper.rb +++ b/modules/webhooks/spec/spec_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/workers/attachment_webhook_job_spec.rb b/modules/webhooks/spec/workers/attachment_webhook_job_spec.rb index b2c2260ca9..8839ab5a4e 100644 --- a/modules/webhooks/spec/workers/attachment_webhook_job_spec.rb +++ b/modules/webhooks/spec/workers/attachment_webhook_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/workers/project_webhook_job_spec.rb b/modules/webhooks/spec/workers/project_webhook_job_spec.rb index bfd3b7c475..c9d35ea659 100644 --- a/modules/webhooks/spec/workers/project_webhook_job_spec.rb +++ b/modules/webhooks/spec/workers/project_webhook_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/workers/time_entry_webhook_job_spec.rb b/modules/webhooks/spec/workers/time_entry_webhook_job_spec.rb index 5a2541dcea..76d143ae4e 100644 --- a/modules/webhooks/spec/workers/time_entry_webhook_job_spec.rb +++ b/modules/webhooks/spec/workers/time_entry_webhook_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/webhooks/spec/workers/work_package_webhook_job_spec.rb b/modules/webhooks/spec/workers/work_package_webhook_job_spec.rb index 0c8b998cfc..51ecfde4a1 100644 --- a/modules/webhooks/spec/workers/work_package_webhook_job_spec.rb +++ b/modules/webhooks/spec/workers/work_package_webhook_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/modules/xls_export/spec/patches/work_packages_controller_patch_spec.rb b/modules/xls_export/spec/patches/work_packages_controller_patch_spec.rb index f81a12a572..2f83987cb5 100644 --- a/modules/xls_export/spec/patches/work_packages_controller_patch_spec.rb +++ b/modules/xls_export/spec/patches/work_packages_controller_patch_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/packaging/conf/configuration.yml b/packaging/conf/configuration.yml index 5825c01807..0f114f0220 100644 --- a/packaging/conf/configuration.yml +++ b/packaging/conf/configuration.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/script/templates/database.travis.postgres.yml b/script/templates/database.travis.postgres.yml index 9ada1ff7bb..a6e0e9fb57 100644 --- a/script/templates/database.travis.postgres.yml +++ b/script/templates/database.travis.postgres.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/cells/rails_cell_spec.rb b/spec/cells/rails_cell_spec.rb index 089ea5d77e..785f538226 100644 --- a/spec/cells/rails_cell_spec.rb +++ b/spec/cells/rails_cell_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/attachments/create_contract_spec.rb b/spec/contracts/attachments/create_contract_spec.rb index c67789f9a0..0724fd79d8 100644 --- a/spec/contracts/attachments/create_contract_spec.rb +++ b/spec/contracts/attachments/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/attribute_help_texts/base_contract_spec.rb b/spec/contracts/attribute_help_texts/base_contract_spec.rb index 248b431112..b97772fe8d 100644 --- a/spec/contracts/attribute_help_texts/base_contract_spec.rb +++ b/spec/contracts/attribute_help_texts/base_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/authentication/omniauth_auth_hash_contract_spec.rb b/spec/contracts/authentication/omniauth_auth_hash_contract_spec.rb index df3107317a..cbc44250db 100644 --- a/spec/contracts/authentication/omniauth_auth_hash_contract_spec.rb +++ b/spec/contracts/authentication/omniauth_auth_hash_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/backups/create_contract_spec.rb b/spec/contracts/backups/create_contract_spec.rb index 2ca5e06bad..150b02dadc 100644 --- a/spec/contracts/backups/create_contract_spec.rb +++ b/spec/contracts/backups/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/custom_actions/cu_contract_spec.rb b/spec/contracts/custom_actions/cu_contract_spec.rb index 083252a9ad..177cac7c0f 100644 --- a/spec/contracts/custom_actions/cu_contract_spec.rb +++ b/spec/contracts/custom_actions/cu_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/custom_fields/create_contract_spec.rb b/spec/contracts/custom_fields/create_contract_spec.rb index 17be0854e2..3b31350868 100644 --- a/spec/contracts/custom_fields/create_contract_spec.rb +++ b/spec/contracts/custom_fields/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/custom_fields/update_contract_spec.rb b/spec/contracts/custom_fields/update_contract_spec.rb index 9c17a1a45d..76877fac17 100644 --- a/spec/contracts/custom_fields/update_contract_spec.rb +++ b/spec/contracts/custom_fields/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/groups/create_contract_spec.rb b/spec/contracts/groups/create_contract_spec.rb index f8fe80ca96..45fa81b9cc 100644 --- a/spec/contracts/groups/create_contract_spec.rb +++ b/spec/contracts/groups/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/groups/shared_contract_examples.rb b/spec/contracts/groups/shared_contract_examples.rb index 3787b76040..275eb2aee4 100644 --- a/spec/contracts/groups/shared_contract_examples.rb +++ b/spec/contracts/groups/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/groups/update_contract_spec.rb b/spec/contracts/groups/update_contract_spec.rb index 51ede8f02d..51d1fa80b5 100644 --- a/spec/contracts/groups/update_contract_spec.rb +++ b/spec/contracts/groups/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/members/create_contract_spec.rb b/spec/contracts/members/create_contract_spec.rb index 204daca825..b649411dcc 100644 --- a/spec/contracts/members/create_contract_spec.rb +++ b/spec/contracts/members/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/members/shared_contract_examples.rb b/spec/contracts/members/shared_contract_examples.rb index 2ce27c31e5..d1eab5b56f 100644 --- a/spec/contracts/members/shared_contract_examples.rb +++ b/spec/contracts/members/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/members/update_contract_spec.rb b/spec/contracts/members/update_contract_spec.rb index 77cf34180a..4d3b8fd23b 100644 --- a/spec/contracts/members/update_contract_spec.rb +++ b/spec/contracts/members/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/messages/create_contract_spec.rb b/spec/contracts/messages/create_contract_spec.rb index 5074421c24..efb963c603 100644 --- a/spec/contracts/messages/create_contract_spec.rb +++ b/spec/contracts/messages/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/messages/shared_contract_examples.rb b/spec/contracts/messages/shared_contract_examples.rb index ed66223213..44dc76637c 100644 --- a/spec/contracts/messages/shared_contract_examples.rb +++ b/spec/contracts/messages/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/messages/update_contract_spec.rb b/spec/contracts/messages/update_contract_spec.rb index 60ef0cc994..1d2ad66c12 100644 --- a/spec/contracts/messages/update_contract_spec.rb +++ b/spec/contracts/messages/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/notifications/create_contract_spec.rb b/spec/contracts/notifications/create_contract_spec.rb index 66873f50c1..a1d5549251 100644 --- a/spec/contracts/notifications/create_contract_spec.rb +++ b/spec/contracts/notifications/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/placeholder_users/create_contract_spec.rb b/spec/contracts/placeholder_users/create_contract_spec.rb index 84fcb781df..f5cea9b5ab 100644 --- a/spec/contracts/placeholder_users/create_contract_spec.rb +++ b/spec/contracts/placeholder_users/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/placeholder_users/delete_contract_spec.rb b/spec/contracts/placeholder_users/delete_contract_spec.rb index f11699d8ce..1d82e98b76 100644 --- a/spec/contracts/placeholder_users/delete_contract_spec.rb +++ b/spec/contracts/placeholder_users/delete_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/placeholder_users/shared_contract_examples.rb b/spec/contracts/placeholder_users/shared_contract_examples.rb index 740eb47109..acd70f0e4e 100644 --- a/spec/contracts/placeholder_users/shared_contract_examples.rb +++ b/spec/contracts/placeholder_users/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/placeholder_users/update_contract_spec.rb b/spec/contracts/placeholder_users/update_contract_spec.rb index 6000fabf59..a367fd3c6f 100644 --- a/spec/contracts/placeholder_users/update_contract_spec.rb +++ b/spec/contracts/placeholder_users/update_contract_spec.rb @@ -1,7 +1,7 @@ #-- encoding: UTF-8 #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/archive_contract_spec.rb b/spec/contracts/projects/archive_contract_spec.rb index e88a7760b5..b23c888213 100644 --- a/spec/contracts/projects/archive_contract_spec.rb +++ b/spec/contracts/projects/archive_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/base_contract_spec.rb b/spec/contracts/projects/base_contract_spec.rb index 3fd5de1b81..2fa2a59469 100644 --- a/spec/contracts/projects/base_contract_spec.rb +++ b/spec/contracts/projects/base_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/create_contract_spec.rb b/spec/contracts/projects/create_contract_spec.rb index 77d15684f8..fb37670f3f 100644 --- a/spec/contracts/projects/create_contract_spec.rb +++ b/spec/contracts/projects/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/delete_contract_spec.rb b/spec/contracts/projects/delete_contract_spec.rb index e57f2d7785..c100c4f854 100644 --- a/spec/contracts/projects/delete_contract_spec.rb +++ b/spec/contracts/projects/delete_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/enabled_modules_contract_spec.rb b/spec/contracts/projects/enabled_modules_contract_spec.rb index 266d37ba87..d59a08ca3c 100644 --- a/spec/contracts/projects/enabled_modules_contract_spec.rb +++ b/spec/contracts/projects/enabled_modules_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/shared_contract_examples.rb b/spec/contracts/projects/shared_contract_examples.rb index 375b22d47c..2a3e6022e4 100644 --- a/spec/contracts/projects/shared_contract_examples.rb +++ b/spec/contracts/projects/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/unarchive_contract_spec.rb b/spec/contracts/projects/unarchive_contract_spec.rb index bd54ec6776..c7c1b583e7 100644 --- a/spec/contracts/projects/unarchive_contract_spec.rb +++ b/spec/contracts/projects/unarchive_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/projects/update_contract_spec.rb b/spec/contracts/projects/update_contract_spec.rb index 11b3e031f3..b0be6b523d 100644 --- a/spec/contracts/projects/update_contract_spec.rb +++ b/spec/contracts/projects/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/queries/update_contract_spec.rb b/spec/contracts/queries/update_contract_spec.rb index d1befc6299..20dd917974 100644 --- a/spec/contracts/queries/update_contract_spec.rb +++ b/spec/contracts/queries/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/relations/create_contract_spec.rb b/spec/contracts/relations/create_contract_spec.rb index 921ff2d253..5e83891afb 100644 --- a/spec/contracts/relations/create_contract_spec.rb +++ b/spec/contracts/relations/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/roles/create_contract_spec.rb b/spec/contracts/roles/create_contract_spec.rb index a3fb22d215..cd72139e42 100644 --- a/spec/contracts/roles/create_contract_spec.rb +++ b/spec/contracts/roles/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/roles/shared_contract_examples.rb b/spec/contracts/roles/shared_contract_examples.rb index f3668b18c3..b60f8839f9 100644 --- a/spec/contracts/roles/shared_contract_examples.rb +++ b/spec/contracts/roles/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/roles/update_contract_spec.rb b/spec/contracts/roles/update_contract_spec.rb index 76fe8b1f7d..80a710539e 100644 --- a/spec/contracts/roles/update_contract_spec.rb +++ b/spec/contracts/roles/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/settings/update_contract_spec.rb b/spec/contracts/settings/update_contract_spec.rb index 559b790e23..cc44191f11 100644 --- a/spec/contracts/settings/update_contract_spec.rb +++ b/spec/contracts/settings/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/user_preferences/params_contract_spec.rb b/spec/contracts/user_preferences/params_contract_spec.rb index 365c352134..a2aa8c1260 100644 --- a/spec/contracts/user_preferences/params_contract_spec.rb +++ b/spec/contracts/user_preferences/params_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/user_preferences/update_contract_spec.rb b/spec/contracts/user_preferences/update_contract_spec.rb index def3e83e4d..812e4bf3f7 100644 --- a/spec/contracts/user_preferences/update_contract_spec.rb +++ b/spec/contracts/user_preferences/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/users/create_contract_spec.rb b/spec/contracts/users/create_contract_spec.rb index b1f1aa38d9..fdfaf98311 100644 --- a/spec/contracts/users/create_contract_spec.rb +++ b/spec/contracts/users/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/users/shared_contract_examples.rb b/spec/contracts/users/shared_contract_examples.rb index 86ca68dd51..6e5f88af00 100644 --- a/spec/contracts/users/shared_contract_examples.rb +++ b/spec/contracts/users/shared_contract_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/users/update_contract_spec.rb b/spec/contracts/users/update_contract_spec.rb index 89ecf9174f..b98c5f5cc0 100644 --- a/spec/contracts/users/update_contract_spec.rb +++ b/spec/contracts/users/update_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/versions/create_contract_spec.rb b/spec/contracts/versions/create_contract_spec.rb index 91ea39d5fc..d55d810479 100644 --- a/spec/contracts/versions/create_contract_spec.rb +++ b/spec/contracts/versions/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/versions/shared_contract_examples.rb b/spec/contracts/versions/shared_contract_examples.rb index a29b0c54ea..a8df625683 100644 --- a/spec/contracts/versions/shared_contract_examples.rb +++ b/spec/contracts/versions/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/versions/update_contract_spec.rb b/spec/contracts/versions/update_contract_spec.rb index e88dd57af1..56bdacd9cd 100644 --- a/spec/contracts/versions/update_contract_spec.rb +++ b/spec/contracts/versions/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/views/create_contract_work_packages_table_spec.rb b/spec/contracts/views/create_contract_work_packages_table_spec.rb index 2716dd5c76..33167f7065 100644 --- a/spec/contracts/views/create_contract_work_packages_table_spec.rb +++ b/spec/contracts/views/create_contract_work_packages_table_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/views/shared_contract_examples.rb b/spec/contracts/views/shared_contract_examples.rb index 29b3c5d36f..cf66f800f3 100644 --- a/spec/contracts/views/shared_contract_examples.rb +++ b/spec/contracts/views/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/views/update_contract_spec.rb b/spec/contracts/views/update_contract_spec.rb index 2ad657e7a4..982785dcb4 100644 --- a/spec/contracts/views/update_contract_spec.rb +++ b/spec/contracts/views/update_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/wiki_pages/create_contract_spec.rb b/spec/contracts/wiki_pages/create_contract_spec.rb index 5bdc20fa98..6bdb7e6771 100644 --- a/spec/contracts/wiki_pages/create_contract_spec.rb +++ b/spec/contracts/wiki_pages/create_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/wiki_pages/shared_contract_examples.rb b/spec/contracts/wiki_pages/shared_contract_examples.rb index d00d89cbbb..e19cd07292 100644 --- a/spec/contracts/wiki_pages/shared_contract_examples.rb +++ b/spec/contracts/wiki_pages/shared_contract_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/work_packages/base_contract_spec.rb b/spec/contracts/work_packages/base_contract_spec.rb index 9440762701..5036daa10b 100644 --- a/spec/contracts/work_packages/base_contract_spec.rb +++ b/spec/contracts/work_packages/base_contract_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/work_packages/create_contract_spec.rb b/spec/contracts/work_packages/create_contract_spec.rb index 6fec56d1dc..9ad3863bb3 100644 --- a/spec/contracts/work_packages/create_contract_spec.rb +++ b/spec/contracts/work_packages/create_contract_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/contracts/work_packages/shared_base_contract.rb b/spec/contracts/work_packages/shared_base_contract.rb index 17f38e87e1..71d086da2e 100644 --- a/spec/contracts/work_packages/shared_base_contract.rb +++ b/spec/contracts/work_packages/shared_base_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/account_controller_spec.rb b/spec/controllers/account_controller_spec.rb index 1b3c6eb19b..54b1bc97e4 100644 --- a/spec/controllers/account_controller_spec.rb +++ b/spec/controllers/account_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/activities_controller_spec.rb b/spec/controllers/activities_controller_spec.rb index 1877fe9e18..310da19041 100644 --- a/spec/controllers/activities_controller_spec.rb +++ b/spec/controllers/activities_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/admin/settings/authentication_controller_spec.rb b/spec/controllers/admin/settings/authentication_controller_spec.rb index 5cac36834a..45d0506b92 100644 --- a/spec/controllers/admin/settings/authentication_controller_spec.rb +++ b/spec/controllers/admin/settings/authentication_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/admin/settings/projects_settings_controller_spec.rb b/spec/controllers/admin/settings/projects_settings_controller_spec.rb index 44190573c6..55da306063 100644 --- a/spec/controllers/admin/settings/projects_settings_controller_spec.rb +++ b/spec/controllers/admin/settings/projects_settings_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/admin_controller_spec.rb b/spec/controllers/admin_controller_spec.rb index 23e617d76b..909fd22e0c 100644 --- a/spec/controllers/admin_controller_spec.rb +++ b/spec/controllers/admin_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb index 1213d35f9b..1c2d4be3a4 100644 --- a/spec/controllers/application_controller_spec.rb +++ b/spec/controllers/application_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/auth_sources_controller_spec.rb b/spec/controllers/auth_sources_controller_spec.rb index 557decb664..252ae52b41 100644 --- a/spec/controllers/auth_sources_controller_spec.rb +++ b/spec/controllers/auth_sources_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/categories_controller_spec.rb b/spec/controllers/categories_controller_spec.rb index 24c8b6270c..05e901d078 100644 --- a/spec/controllers/categories_controller_spec.rb +++ b/spec/controllers/categories_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/colors_controller_spec.rb b/spec/controllers/colors_controller_spec.rb index d1444138b5..cfda806ad9 100644 --- a/spec/controllers/colors_controller_spec.rb +++ b/spec/controllers/colors_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/concerns/auth_source_slo_spec.rb b/spec/controllers/concerns/auth_source_slo_spec.rb index 5732782fdf..fb3ea9ac3f 100644 --- a/spec/controllers/concerns/auth_source_slo_spec.rb +++ b/spec/controllers/concerns/auth_source_slo_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/concerns/auth_source_sso_spec.rb b/spec/controllers/concerns/auth_source_sso_spec.rb index f432d150a1..5049c802b5 100644 --- a/spec/controllers/concerns/auth_source_sso_spec.rb +++ b/spec/controllers/concerns/auth_source_sso_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/concerns/omniauth_login_spec.rb b/spec/controllers/concerns/omniauth_login_spec.rb index 5f44295749..b81a100093 100644 --- a/spec/controllers/concerns/omniauth_login_spec.rb +++ b/spec/controllers/concerns/omniauth_login_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/concerns/user_invitation_spec.rb b/spec/controllers/concerns/user_invitation_spec.rb index 56cb24d5df..089a7b14ca 100644 --- a/spec/controllers/concerns/user_invitation_spec.rb +++ b/spec/controllers/concerns/user_invitation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/custom_actions_controller_spec.rb b/spec/controllers/custom_actions_controller_spec.rb index e24841f0b3..2037c9c392 100644 --- a/spec/controllers/custom_actions_controller_spec.rb +++ b/spec/controllers/custom_actions_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/custom_fields_controller_spec.rb b/spec/controllers/custom_fields_controller_spec.rb index 93fda2cdd4..a62e6d5ff9 100644 --- a/spec/controllers/custom_fields_controller_spec.rb +++ b/spec/controllers/custom_fields_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/custom_styles_controller_spec.rb b/spec/controllers/custom_styles_controller_spec.rb index 0ca39f7e69..bc4b877a55 100644 --- a/spec/controllers/custom_styles_controller_spec.rb +++ b/spec/controllers/custom_styles_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/enterprises_controller_spec.rb b/spec/controllers/enterprises_controller_spec.rb index b324d27dbc..3f05d0a59f 100644 --- a/spec/controllers/enterprises_controller_spec.rb +++ b/spec/controllers/enterprises_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/enumerations_controller.rb b/spec/controllers/enumerations_controller.rb index d62cae8e7e..b4c45fbd1b 100644 --- a/spec/controllers/enumerations_controller.rb +++ b/spec/controllers/enumerations_controller.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/enumerations_controller_spec.rb b/spec/controllers/enumerations_controller_spec.rb index 05a72613be..4046fee7ce 100644 --- a/spec/controllers/enumerations_controller_spec.rb +++ b/spec/controllers/enumerations_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/forums_controller_spec.rb b/spec/controllers/forums_controller_spec.rb index f3ad0a135e..0389674b26 100644 --- a/spec/controllers/forums_controller_spec.rb +++ b/spec/controllers/forums_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/groups_controller_spec.rb b/spec/controllers/groups_controller_spec.rb index 98d3be46d4..dccc58ef1a 100644 --- a/spec/controllers/groups_controller_spec.rb +++ b/spec/controllers/groups_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/homescreen_controller_spec.rb b/spec/controllers/homescreen_controller_spec.rb index 006e7a7144..1161b2de3a 100644 --- a/spec/controllers/homescreen_controller_spec.rb +++ b/spec/controllers/homescreen_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/journals_controller_spec.rb b/spec/controllers/journals_controller_spec.rb index 5d9a9f51b4..1b204d3aac 100644 --- a/spec/controllers/journals_controller_spec.rb +++ b/spec/controllers/journals_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/ldap_auth_sources_controller_spec.rb b/spec/controllers/ldap_auth_sources_controller_spec.rb index 5a332b0a97..8ea44b615e 100644 --- a/spec/controllers/ldap_auth_sources_controller_spec.rb +++ b/spec/controllers/ldap_auth_sources_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/members_controller_spec.rb b/spec/controllers/members_controller_spec.rb index d86a3e32cc..71c0387af9 100644 --- a/spec/controllers/members_controller_spec.rb +++ b/spec/controllers/members_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/messages_controller_spec.rb b/spec/controllers/messages_controller_spec.rb index c2d18d8800..c874cde5b8 100644 --- a/spec/controllers/messages_controller_spec.rb +++ b/spec/controllers/messages_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/my_controller_spec.rb b/spec/controllers/my_controller_spec.rb index 6ee2d5164f..1713cc6811 100644 --- a/spec/controllers/my_controller_spec.rb +++ b/spec/controllers/my_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/news/comments_controller_spec.rb b/spec/controllers/news/comments_controller_spec.rb index 8ec89237f5..c28d7931cf 100644 --- a/spec/controllers/news/comments_controller_spec.rb +++ b/spec/controllers/news/comments_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/news_controller_spec.rb b/spec/controllers/news_controller_spec.rb index e7081b72a1..1b73810a9a 100644 --- a/spec/controllers/news_controller_spec.rb +++ b/spec/controllers/news_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/oauth/applications_controller_spec.rb b/spec/controllers/oauth/applications_controller_spec.rb index c700a66d6f..b6633135a5 100644 --- a/spec/controllers/oauth/applications_controller_spec.rb +++ b/spec/controllers/oauth/applications_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/oauth/grants_controller_spec.rb b/spec/controllers/oauth/grants_controller_spec.rb index 24a219223f..f2a0eb9f9a 100644 --- a/spec/controllers/oauth/grants_controller_spec.rb +++ b/spec/controllers/oauth/grants_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/placeholder_users/memberships_controller_spec.rb b/spec/controllers/placeholder_users/memberships_controller_spec.rb index 77db08ab81..ad12f3bc87 100644 --- a/spec/controllers/placeholder_users/memberships_controller_spec.rb +++ b/spec/controllers/placeholder_users/memberships_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/placeholder_users_controller_spec.rb b/spec/controllers/placeholder_users_controller_spec.rb index 495e9d4ab6..5523556aa4 100644 --- a/spec/controllers/placeholder_users_controller_spec.rb +++ b/spec/controllers/placeholder_users_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/projects_controller_spec.rb b/spec/controllers/projects_controller_spec.rb index 053d395305..4aca84d363 100644 --- a/spec/controllers/projects_controller_spec.rb +++ b/spec/controllers/projects_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/projects_settings_menu_controller_spec.rb b/spec/controllers/projects_settings_menu_controller_spec.rb index fbc64ac19f..988420efdc 100644 --- a/spec/controllers/projects_settings_menu_controller_spec.rb +++ b/spec/controllers/projects_settings_menu_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/repositories_controller_spec.rb b/spec/controllers/repositories_controller_spec.rb index 76199bc9c3..4ea5c5e50b 100644 --- a/spec/controllers/repositories_controller_spec.rb +++ b/spec/controllers/repositories_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/roles_controller_spec.rb b/spec/controllers/roles_controller_spec.rb index 46d5ed8ab6..3078325bae 100644 --- a/spec/controllers/roles_controller_spec.rb +++ b/spec/controllers/roles_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/search_controller_spec.rb b/spec/controllers/search_controller_spec.rb index ffafa9e29e..828e116d80 100644 --- a/spec/controllers/search_controller_spec.rb +++ b/spec/controllers/search_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/statuses_controller_spec.rb b/spec/controllers/statuses_controller_spec.rb index 98713275c7..1274bf7677 100644 --- a/spec/controllers/statuses_controller_spec.rb +++ b/spec/controllers/statuses_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/sys_controller_spec.rb b/spec/controllers/sys_controller_spec.rb index a9ed6a5e77..f9b9c41c60 100644 --- a/spec/controllers/sys_controller_spec.rb +++ b/spec/controllers/sys_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/types_controller_spec.rb b/spec/controllers/types_controller_spec.rb index 96ddb24991..51495925bc 100644 --- a/spec/controllers/types_controller_spec.rb +++ b/spec/controllers/types_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/users/memberships_controller_spec.rb b/spec/controllers/users/memberships_controller_spec.rb index 3a33a79e90..50b0a7233b 100644 --- a/spec/controllers/users/memberships_controller_spec.rb +++ b/spec/controllers/users/memberships_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/users_controller_spec.rb b/spec/controllers/users_controller_spec.rb index de3287d2f5..8cad73cea1 100644 --- a/spec/controllers/users_controller_spec.rb +++ b/spec/controllers/users_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/versions_controller_spec.rb b/spec/controllers/versions_controller_spec.rb index 177e2db1d3..cfc12b4335 100644 --- a/spec/controllers/versions_controller_spec.rb +++ b/spec/controllers/versions_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/wiki_controller_spec.rb b/spec/controllers/wiki_controller_spec.rb index c53e47a9a5..8aabbe5fcc 100644 --- a/spec/controllers/wiki_controller_spec.rb +++ b/spec/controllers/wiki_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/wiki_menu_authentication_spec.rb b/spec/controllers/wiki_menu_authentication_spec.rb index b661d0ce37..f850a784a7 100644 --- a/spec/controllers/wiki_menu_authentication_spec.rb +++ b/spec/controllers/wiki_menu_authentication_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/wiki_menu_items_controller_spec.rb b/spec/controllers/wiki_menu_items_controller_spec.rb index 88ee5a4f14..1e3106527a 100644 --- a/spec/controllers/wiki_menu_items_controller_spec.rb +++ b/spec/controllers/wiki_menu_items_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/work_packages/auto_completes_controller_spec.rb b/spec/controllers/work_packages/auto_completes_controller_spec.rb index b8e47d1cd1..f5e2b155a2 100644 --- a/spec/controllers/work_packages/auto_completes_controller_spec.rb +++ b/spec/controllers/work_packages/auto_completes_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/work_packages/bulk_controller_spec.rb b/spec/controllers/work_packages/bulk_controller_spec.rb index 965a783d4f..5174aeec9b 100644 --- a/spec/controllers/work_packages/bulk_controller_spec.rb +++ b/spec/controllers/work_packages/bulk_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/work_packages/moves_controller_spec.rb b/spec/controllers/work_packages/moves_controller_spec.rb index 0fd91646c6..a47afee858 100644 --- a/spec/controllers/work_packages/moves_controller_spec.rb +++ b/spec/controllers/work_packages/moves_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/work_packages/reports_controller_spec.rb b/spec/controllers/work_packages/reports_controller_spec.rb index a149727eac..b992e33a6b 100644 --- a/spec/controllers/work_packages/reports_controller_spec.rb +++ b/spec/controllers/work_packages/reports_controller_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/work_packages_controller_spec.rb b/spec/controllers/work_packages_controller_spec.rb index bbc0464491..ba819c83bb 100644 --- a/spec/controllers/work_packages_controller_spec.rb +++ b/spec/controllers/work_packages_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/controllers/workflows_controller_spec.rb b/spec/controllers/workflows_controller_spec.rb index 8ce50384d8..20a6e4cfe1 100644 --- a/spec/controllers/workflows_controller_spec.rb +++ b/spec/controllers/workflows_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/attachment_factory.rb b/spec/factories/attachment_factory.rb index 5ce4dbb1ed..1df29e0ceb 100644 --- a/spec/factories/attachment_factory.rb +++ b/spec/factories/attachment_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/auth_source_factory.rb b/spec/factories/auth_source_factory.rb index 360790a163..28b9dbde82 100644 --- a/spec/factories/auth_source_factory.rb +++ b/spec/factories/auth_source_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/backup_factory.rb b/spec/factories/backup_factory.rb index b27c1ea748..a21daf06c0 100644 --- a/spec/factories/backup_factory.rb +++ b/spec/factories/backup_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/category_factory.rb b/spec/factories/category_factory.rb index 35c14f9efb..07c9e1de00 100644 --- a/spec/factories/category_factory.rb +++ b/spec/factories/category_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/changeset_factory.rb b/spec/factories/changeset_factory.rb index 16a468361b..1e703f3c6d 100644 --- a/spec/factories/changeset_factory.rb +++ b/spec/factories/changeset_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/color_factory.rb b/spec/factories/color_factory.rb index 34ecf31914..2a72debe36 100644 --- a/spec/factories/color_factory.rb +++ b/spec/factories/color_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/comment_factory.rb b/spec/factories/comment_factory.rb index 74640c96e0..7e91bc0f7c 100644 --- a/spec/factories/comment_factory.rb +++ b/spec/factories/comment_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/custom_action_factory.rb b/spec/factories/custom_action_factory.rb index ca9138bcef..617674e92a 100644 --- a/spec/factories/custom_action_factory.rb +++ b/spec/factories/custom_action_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/custom_field_factory.rb b/spec/factories/custom_field_factory.rb index 43ed89e82d..e9c004cac1 100644 --- a/spec/factories/custom_field_factory.rb +++ b/spec/factories/custom_field_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/custom_option_factory.rb b/spec/factories/custom_option_factory.rb index b6853af1ec..f438714b21 100644 --- a/spec/factories/custom_option_factory.rb +++ b/spec/factories/custom_option_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/custom_style_factory.rb b/spec/factories/custom_style_factory.rb index bd0c070bfa..cc7dd410e4 100644 --- a/spec/factories/custom_style_factory.rb +++ b/spec/factories/custom_style_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/custom_value_factory.rb b/spec/factories/custom_value_factory.rb index ab1b21bd1d..b47ee00604 100644 --- a/spec/factories/custom_value_factory.rb +++ b/spec/factories/custom_value_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/design_color_factory.rb b/spec/factories/design_color_factory.rb index 55948d0efb..091d9c5bff 100644 --- a/spec/factories/design_color_factory.rb +++ b/spec/factories/design_color_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/enumerations_factory.rb b/spec/factories/enumerations_factory.rb index 122e3bfcd6..6d5c82a5a7 100644 --- a/spec/factories/enumerations_factory.rb +++ b/spec/factories/enumerations_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/file_factory.rb b/spec/factories/file_factory.rb index e4867722fa..691c2857c9 100644 --- a/spec/factories/file_factory.rb +++ b/spec/factories/file_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/forum_factory.rb b/spec/factories/forum_factory.rb index e7c149d865..4fe1a44c23 100644 --- a/spec/factories/forum_factory.rb +++ b/spec/factories/forum_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/global_role_factory.rb b/spec/factories/global_role_factory.rb index 4a2e34d472..2775fff564 100644 --- a/spec/factories/global_role_factory.rb +++ b/spec/factories/global_role_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/group_factory.rb b/spec/factories/group_factory.rb index 9955c82e21..1ab7731110 100644 --- a/spec/factories/group_factory.rb +++ b/spec/factories/group_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/group_user_factory.rb b/spec/factories/group_user_factory.rb index 6c059df637..6baccc91f7 100644 --- a/spec/factories/group_user_factory.rb +++ b/spec/factories/group_user_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/issue_priority_factory.rb b/spec/factories/issue_priority_factory.rb index 707ff77054..ee83e66bdd 100644 --- a/spec/factories/issue_priority_factory.rb +++ b/spec/factories/issue_priority_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/attachable_journal_factory.rb b/spec/factories/journal/attachable_journal_factory.rb index 184a0b1b85..05a3d08cb1 100644 --- a/spec/factories/journal/attachable_journal_factory.rb +++ b/spec/factories/journal/attachable_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/attachment_journal_factory.rb b/spec/factories/journal/attachment_journal_factory.rb index c288d41eb8..52e9435cdb 100644 --- a/spec/factories/journal/attachment_journal_factory.rb +++ b/spec/factories/journal/attachment_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/changeset_journal_factory.rb b/spec/factories/journal/changeset_journal_factory.rb index 66bbcde456..8fa0c9c9c5 100644 --- a/spec/factories/journal/changeset_journal_factory.rb +++ b/spec/factories/journal/changeset_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/customizable_journal_factory.rb b/spec/factories/journal/customizable_journal_factory.rb index d6e3b16510..2694d7548e 100644 --- a/spec/factories/journal/customizable_journal_factory.rb +++ b/spec/factories/journal/customizable_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/message_journal_factory.rb b/spec/factories/journal/message_journal_factory.rb index d7da3b861e..929ae79c73 100644 --- a/spec/factories/journal/message_journal_factory.rb +++ b/spec/factories/journal/message_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/news_journal_facctory.rb b/spec/factories/journal/news_journal_facctory.rb index 4ef146e9c5..51eb36a66e 100644 --- a/spec/factories/journal/news_journal_facctory.rb +++ b/spec/factories/journal/news_journal_facctory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/wiki_content_journal_factory.rb b/spec/factories/journal/wiki_content_journal_factory.rb index eeb45804cc..58d541cac3 100644 --- a/spec/factories/journal/wiki_content_journal_factory.rb +++ b/spec/factories/journal/wiki_content_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal/work_package_journal_factory.rb b/spec/factories/journal/work_package_journal_factory.rb index 0be17c70b4..c161f64d29 100644 --- a/spec/factories/journal/work_package_journal_factory.rb +++ b/spec/factories/journal/work_package_journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/journal_factory.rb b/spec/factories/journal_factory.rb index b2ab54cf54..85e9524af0 100644 --- a/spec/factories/journal_factory.rb +++ b/spec/factories/journal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/member_factory.rb b/spec/factories/member_factory.rb index 23264f5bb4..b733f3e2b1 100644 --- a/spec/factories/member_factory.rb +++ b/spec/factories/member_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/member_role_factory.rb b/spec/factories/member_role_factory.rb index 5148da7be0..51cae9b00e 100644 --- a/spec/factories/member_role_factory.rb +++ b/spec/factories/member_role_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/menu_item_factory.rb b/spec/factories/menu_item_factory.rb index e7cb92d336..d13c1872ce 100644 --- a/spec/factories/menu_item_factory.rb +++ b/spec/factories/menu_item_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/message_factory.rb b/spec/factories/message_factory.rb index df428f91ed..6afadf3a75 100644 --- a/spec/factories/message_factory.rb +++ b/spec/factories/message_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/news_factory.rb b/spec/factories/news_factory.rb index e62ab37d41..0626363b40 100644 --- a/spec/factories/news_factory.rb +++ b/spec/factories/news_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/oauth_application_factory.rb b/spec/factories/oauth_application_factory.rb index dae612fa00..e269846791 100644 --- a/spec/factories/oauth_application_factory.rb +++ b/spec/factories/oauth_application_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/placeholder_user_factory.rb b/spec/factories/placeholder_user_factory.rb index 76eb2eff45..c0d52a0ce0 100644 --- a/spec/factories/placeholder_user_factory.rb +++ b/spec/factories/placeholder_user_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/principal_factory.rb b/spec/factories/principal_factory.rb index 9621a60725..cc769ae1d2 100644 --- a/spec/factories/principal_factory.rb +++ b/spec/factories/principal_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/project_factory.rb b/spec/factories/project_factory.rb index 7ca9597692..33d3c85fe4 100644 --- a/spec/factories/project_factory.rb +++ b/spec/factories/project_factory.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/project_status.rb b/spec/factories/project_status.rb index da4063bd58..ba1ee77060 100644 --- a/spec/factories/project_status.rb +++ b/spec/factories/project_status.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/query_factory.rb b/spec/factories/query_factory.rb index 72815ef876..35b81959f1 100644 --- a/spec/factories/query_factory.rb +++ b/spec/factories/query_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/relation_factory.rb b/spec/factories/relation_factory.rb index a8690d2f79..dd349a4221 100644 --- a/spec/factories/relation_factory.rb +++ b/spec/factories/relation_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/repository_factory.rb b/spec/factories/repository_factory.rb index cb5837110a..2fbdaf3646 100644 --- a/spec/factories/repository_factory.rb +++ b/spec/factories/repository_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/role_factory.rb b/spec/factories/role_factory.rb index aa07fbc71e..ddb053fb66 100644 --- a/spec/factories/role_factory.rb +++ b/spec/factories/role_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/status_factory.rb b/spec/factories/status_factory.rb index da37a1c2bf..1fc33ae207 100644 --- a/spec/factories/status_factory.rb +++ b/spec/factories/status_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/token_factory.rb b/spec/factories/token_factory.rb index a1bd6612b6..fadf41ecbb 100644 --- a/spec/factories/token_factory.rb +++ b/spec/factories/token_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/type_factory.rb b/spec/factories/type_factory.rb index 70a22f5fdd..ce7cb2b2b0 100644 --- a/spec/factories/type_factory.rb +++ b/spec/factories/type_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/user_factory.rb b/spec/factories/user_factory.rb index 9a0e892fde..0b2e9cfb9e 100644 --- a/spec/factories/user_factory.rb +++ b/spec/factories/user_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/user_password_factory.rb b/spec/factories/user_password_factory.rb index 88a4fd8a76..5bb82476ad 100644 --- a/spec/factories/user_password_factory.rb +++ b/spec/factories/user_password_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/user_preference_factory.rb b/spec/factories/user_preference_factory.rb index 9baa6607e2..0d2075f4b5 100644 --- a/spec/factories/user_preference_factory.rb +++ b/spec/factories/user_preference_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/user_session_factory.rb b/spec/factories/user_session_factory.rb index 42053f3c64..98fa287636 100644 --- a/spec/factories/user_session_factory.rb +++ b/spec/factories/user_session_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/version_factory.rb b/spec/factories/version_factory.rb index b7ff5f86c2..64307e5a0e 100644 --- a/spec/factories/version_factory.rb +++ b/spec/factories/version_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/view_factory.rb b/spec/factories/view_factory.rb index 75768dd209..27d8051d77 100644 --- a/spec/factories/view_factory.rb +++ b/spec/factories/view_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/watcher_factory.rb b/spec/factories/watcher_factory.rb index b8c77c97d3..042b6532d7 100644 --- a/spec/factories/watcher_factory.rb +++ b/spec/factories/watcher_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/wiki_content_factory.rb b/spec/factories/wiki_content_factory.rb index 653c0fbb01..dba496cc83 100644 --- a/spec/factories/wiki_content_factory.rb +++ b/spec/factories/wiki_content_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/wiki_factory.rb b/spec/factories/wiki_factory.rb index d1e227b2a0..06b6c0d206 100644 --- a/spec/factories/wiki_factory.rb +++ b/spec/factories/wiki_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/wiki_page_factory.rb b/spec/factories/wiki_page_factory.rb index 4e3d0ee83f..024601e201 100644 --- a/spec/factories/wiki_page_factory.rb +++ b/spec/factories/wiki_page_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/wiki_redirect_factory.rb b/spec/factories/wiki_redirect_factory.rb index 7e15dd2d56..f9c9fdbc4b 100644 --- a/spec/factories/wiki_redirect_factory.rb +++ b/spec/factories/wiki_redirect_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/work_package_custom_field_factory.rb b/spec/factories/work_package_custom_field_factory.rb index 394033df9b..4f8db7fd18 100644 --- a/spec/factories/work_package_custom_field_factory.rb +++ b/spec/factories/work_package_custom_field_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/work_package_factory.rb b/spec/factories/work_package_factory.rb index 8fbce6b5a9..f8af5ae2aa 100644 --- a/spec/factories/work_package_factory.rb +++ b/spec/factories/work_package_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/work_packags_export_factory.rb b/spec/factories/work_packags_export_factory.rb index 720df8c351..30e7a8f228 100644 --- a/spec/factories/work_packags_export_factory.rb +++ b/spec/factories/work_packags_export_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/factories/workflow_factory.rb b/spec/factories/workflow_factory.rb index 5846fd51af..e00b0a1031 100644 --- a/spec/factories/workflow_factory.rb +++ b/spec/factories/workflow_factory.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/accessibility/work_packages/work_package_query_spec.rb b/spec/features/accessibility/work_packages/work_package_query_spec.rb index c954844597..09195bd20d 100644 --- a/spec/features/accessibility/work_packages/work_package_query_spec.rb +++ b/spec/features/accessibility/work_packages/work_package_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/activities/disabled_activity_spec.rb b/spec/features/activities/disabled_activity_spec.rb index 88e757f914..3be8ecd2ab 100644 --- a/spec/features/activities/disabled_activity_spec.rb +++ b/spec/features/activities/disabled_activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/activities/wiki_activity_spec.rb b/spec/features/activities/wiki_activity_spec.rb index cf79ca8123..dce31842db 100644 --- a/spec/features/activities/wiki_activity_spec.rb +++ b/spec/features/activities/wiki_activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/attribute_help_texts_spec.rb b/spec/features/admin/attribute_help_texts_spec.rb index 3bf7b2f9b2..f819f2ad57 100644 --- a/spec/features/admin/attribute_help_texts_spec.rb +++ b/spec/features/admin/attribute_help_texts_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/backup_spec.rb b/spec/features/admin/backup_spec.rb index 5a7b780d12..3ba6e45c59 100644 --- a/spec/features/admin/backup_spec.rb +++ b/spec/features/admin/backup_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/custom_fields/list_custom_field_spec.rb b/spec/features/admin/custom_fields/list_custom_field_spec.rb index c1b0f0a4a9..22632043b1 100644 --- a/spec/features/admin/custom_fields/list_custom_field_spec.rb +++ b/spec/features/admin/custom_fields/list_custom_field_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/custom_fields/multi_value_custom_fields_spec.rb b/spec/features/admin/custom_fields/multi_value_custom_fields_spec.rb index f8b046400b..c810cab71a 100644 --- a/spec/features/admin/custom_fields/multi_value_custom_fields_spec.rb +++ b/spec/features/admin/custom_fields/multi_value_custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/enterprise/enterprise_spec.rb b/spec/features/admin/enterprise/enterprise_spec.rb index a6f2c037fd..d1c62a5df4 100644 --- a/spec/features/admin/enterprise/enterprise_spec.rb +++ b/spec/features/admin/enterprise/enterprise_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/enterprise/enterprise_trial_spec.rb b/spec/features/admin/enterprise/enterprise_trial_spec.rb index 21b0ad9416..a173fcab74 100644 --- a/spec/features/admin/enterprise/enterprise_trial_spec.rb +++ b/spec/features/admin/enterprise/enterprise_trial_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/enterprise/token_domain_spec.rb b/spec/features/admin/enterprise/token_domain_spec.rb index 49403e4403..78d3860d20 100644 --- a/spec/features/admin/enterprise/token_domain_spec.rb +++ b/spec/features/admin/enterprise/token_domain_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/enumerations_spec.rb b/spec/features/admin/enumerations_spec.rb index 7a708b87c1..eabbaeb305 100644 --- a/spec/features/admin/enumerations_spec.rb +++ b/spec/features/admin/enumerations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/menu_item_traversal_spec.rb b/spec/features/admin/menu_item_traversal_spec.rb index f51c4d1806..21d7a26dfb 100644 --- a/spec/features/admin/menu_item_traversal_spec.rb +++ b/spec/features/admin/menu_item_traversal_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/oauth/oauth_applications_management_spec.rb b/spec/features/admin/oauth/oauth_applications_management_spec.rb index 325cef6386..2f86486389 100644 --- a/spec/features/admin/oauth/oauth_applications_management_spec.rb +++ b/spec/features/admin/oauth/oauth_applications_management_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/settings_spec.rb b/spec/features/admin/settings_spec.rb index 24871c4071..00c42df051 100644 --- a/spec/features/admin/settings_spec.rb +++ b/spec/features/admin/settings_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/admin/test_mail_notification_spec.rb b/spec/features/admin/test_mail_notification_spec.rb index 73e9e22284..15c25338e9 100644 --- a/spec/features/admin/test_mail_notification_spec.rb +++ b/spec/features/admin/test_mail_notification_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/attachments/attachments_spec.rb b/spec/features/attachments/attachments_spec.rb index 83eb63efbb..5dd29848f4 100644 --- a/spec/features/attachments/attachments_spec.rb +++ b/spec/features/attachments/attachments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/auth_source_sso_login_spec.rb b/spec/features/auth/auth_source_sso_login_spec.rb index 34b90d5e4e..b2069e6650 100644 --- a/spec/features/auth/auth_source_sso_login_spec.rb +++ b/spec/features/auth/auth_source_sso_login_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/auth_stages_spec.rb b/spec/features/auth/auth_stages_spec.rb index cadd9592a1..eba181cb76 100644 --- a/spec/features/auth/auth_stages_spec.rb +++ b/spec/features/auth/auth_stages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/consent_auth_stage_spec.rb b/spec/features/auth/consent_auth_stage_spec.rb index a279edbe8f..7f4157aa40 100644 --- a/spec/features/auth/consent_auth_stage_spec.rb +++ b/spec/features/auth/consent_auth_stage_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/login_spec.rb b/spec/features/auth/login_spec.rb index 111403799a..a3106afd70 100644 --- a/spec/features/auth/login_spec.rb +++ b/spec/features/auth/login_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/logout_spec.rb b/spec/features/auth/logout_spec.rb index e57d68a3c0..fd6c37992a 100644 --- a/spec/features/auth/logout_spec.rb +++ b/spec/features/auth/logout_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/lost_password_spec.rb b/spec/features/auth/lost_password_spec.rb index a0c58fe8dd..475f120cc6 100644 --- a/spec/features/auth/lost_password_spec.rb +++ b/spec/features/auth/lost_password_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/auth/omniauth_spec.rb b/spec/features/auth/omniauth_spec.rb index c7fc6bc010..cbc0a78dd1 100644 --- a/spec/features/auth/omniauth_spec.rb +++ b/spec/features/auth/omniauth_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/categories/categories_page.rb b/spec/features/categories/categories_page.rb index 584b9c3eb7..e960abb4cf 100644 --- a/spec/features/categories/categories_page.rb +++ b/spec/features/categories/categories_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/categories/delete_spec.rb b/spec/features/categories/delete_spec.rb index 0f238e1317..1b9ea0cf46 100644 --- a/spec/features/categories/delete_spec.rb +++ b/spec/features/categories/delete_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/colors/color_administration_spec.rb b/spec/features/colors/color_administration_spec.rb index 2567982d5e..786e3adb72 100644 --- a/spec/features/colors/color_administration_spec.rb +++ b/spec/features/colors/color_administration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/custom_fields/activate_in_project_spec.rb b/spec/features/custom_fields/activate_in_project_spec.rb index bba7f268da..492ef991dd 100644 --- a/spec/features/custom_fields/activate_in_project_spec.rb +++ b/spec/features/custom_fields/activate_in_project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/custom_fields/custom_fields_page.rb b/spec/features/custom_fields/custom_fields_page.rb index 52e6519b27..fb100f70f7 100644 --- a/spec/features/custom_fields/custom_fields_page.rb +++ b/spec/features/custom_fields/custom_fields_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/forums/attachment_upload_spec.rb b/spec/features/forums/attachment_upload_spec.rb index 4bd8bf3ec1..3d2ae85bad 100644 --- a/spec/features/forums/attachment_upload_spec.rb +++ b/spec/features/forums/attachment_upload_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/forums/message_spec.rb b/spec/features/forums/message_spec.rb index 0c1770b44f..3042725df2 100644 --- a/spec/features/forums/message_spec.rb +++ b/spec/features/forums/message_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/forums/sticky_spec.rb b/spec/features/forums/sticky_spec.rb index 07cba99751..4dd838b8b3 100644 --- a/spec/features/forums/sticky_spec.rb +++ b/spec/features/forums/sticky_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/global_roles/global_create_project_spec.rb b/spec/features/global_roles/global_create_project_spec.rb index e08b638597..52d339b057 100644 --- a/spec/features/global_roles/global_create_project_spec.rb +++ b/spec/features/global_roles/global_create_project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/global_roles/global_role_assignment_spec.rb b/spec/features/global_roles/global_role_assignment_spec.rb index 351c729fcc..f86b9ff6bf 100644 --- a/spec/features/global_roles/global_role_assignment_spec.rb +++ b/spec/features/global_roles/global_role_assignment_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/global_roles/global_role_crud_spec.rb b/spec/features/global_roles/global_role_crud_spec.rb index 671fc85cc1..019c1e3e6b 100644 --- a/spec/features/global_roles/global_role_crud_spec.rb +++ b/spec/features/global_roles/global_role_crud_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/global_roles/member_roles_spec.rb b/spec/features/global_roles/member_roles_spec.rb index 795a600661..db843db467 100644 --- a/spec/features/global_roles/member_roles_spec.rb +++ b/spec/features/global_roles/member_roles_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/global_roles/no_module_spec.rb b/spec/features/global_roles/no_module_spec.rb index 37243e9afb..7a511420ad 100644 --- a/spec/features/global_roles/no_module_spec.rb +++ b/spec/features/global_roles/no_module_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/groups/group_memberships_spec.rb b/spec/features/groups/group_memberships_spec.rb index 0a5b00dd9d..d68e54cbb7 100644 --- a/spec/features/groups/group_memberships_spec.rb +++ b/spec/features/groups/group_memberships_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/groups/group_show_spec.rb b/spec/features/groups/group_show_spec.rb index d0564885da..8e4ff7f0d5 100644 --- a/spec/features/groups/group_show_spec.rb +++ b/spec/features/groups/group_show_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/groups/groups_spec.rb b/spec/features/groups/groups_spec.rb index 64da45b294..ab4df669a6 100644 --- a/spec/features/groups/groups_spec.rb +++ b/spec/features/groups/groups_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/groups/membership_spec.rb b/spec/features/groups/membership_spec.rb index edfa445607..6d72ac5991 100644 --- a/spec/features/groups/membership_spec.rb +++ b/spec/features/groups/membership_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/homescreen/index_spec.rb b/spec/features/homescreen/index_spec.rb index c4c0f72bb3..33199bed16 100644 --- a/spec/features/homescreen/index_spec.rb +++ b/spec/features/homescreen/index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/homescreen/robots_spec.rb b/spec/features/homescreen/robots_spec.rb index 2a74ba6ad6..1ae3e258aa 100644 --- a/spec/features/homescreen/robots_spec.rb +++ b/spec/features/homescreen/robots_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/localization_spec.rb b/spec/features/localization_spec.rb index 494059312a..919e1edf63 100644 --- a/spec/features/localization_spec.rb +++ b/spec/features/localization_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/error_messages_spec.rb b/spec/features/members/error_messages_spec.rb index 02147ae67c..83455348a0 100644 --- a/spec/features/members/error_messages_spec.rb +++ b/spec/features/members/error_messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/invitation_spec.rb b/spec/features/members/invitation_spec.rb index 0b1b749525..45fd0ab426 100644 --- a/spec/features/members/invitation_spec.rb +++ b/spec/features/members/invitation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/membership_filter_spec.rb b/spec/features/members/membership_filter_spec.rb index e2e667804a..c9ca2469c2 100644 --- a/spec/features/members/membership_filter_spec.rb +++ b/spec/features/members/membership_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/membership_spec.rb b/spec/features/members/membership_spec.rb index c6a6111d61..460ad29ca4 100644 --- a/spec/features/members/membership_spec.rb +++ b/spec/features/members/membership_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/pagination_spec.rb b/spec/features/members/pagination_spec.rb index 2b6ea2d5fc..655c86a479 100644 --- a/spec/features/members/pagination_spec.rb +++ b/spec/features/members/pagination_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/members/roles_spec.rb b/spec/features/members/roles_spec.rb index bda97030ec..bdcb9cc387 100644 --- a/spec/features/members/roles_spec.rb +++ b/spec/features/members/roles_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/admin_menu_item_spec.rb b/spec/features/menu_items/admin_menu_item_spec.rb index 3ea76dead0..020526cecd 100644 --- a/spec/features/menu_items/admin_menu_item_spec.rb +++ b/spec/features/menu_items/admin_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/help_menu_spec.rb b/spec/features/menu_items/help_menu_spec.rb index 5f609bcf0e..4dd708a5ce 100644 --- a/spec/features/menu_items/help_menu_spec.rb +++ b/spec/features/menu_items/help_menu_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/menu_permissions_spec.rb b/spec/features/menu_items/menu_permissions_spec.rb index ab068a4831..88e5664b16 100644 --- a/spec/features/menu_items/menu_permissions_spec.rb +++ b/spec/features/menu_items/menu_permissions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/query_menu_item_spec.rb b/spec/features/menu_items/query_menu_item_spec.rb index 4d635e7d35..7aee5004e4 100644 --- a/spec/features/menu_items/query_menu_item_spec.rb +++ b/spec/features/menu_items/query_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/quick_add_menu_spec.rb b/spec/features/menu_items/quick_add_menu_spec.rb index d1dbdcf85c..3739029cae 100644 --- a/spec/features/menu_items/quick_add_menu_spec.rb +++ b/spec/features/menu_items/quick_add_menu_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/top_menu_item_spec.rb b/spec/features/menu_items/top_menu_item_spec.rb index a681d3469f..11249c33ed 100644 --- a/spec/features/menu_items/top_menu_item_spec.rb +++ b/spec/features/menu_items/top_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/menu_items/wiki_menu_item_spec.rb b/spec/features/menu_items/wiki_menu_item_spec.rb index d8e4bcb84e..39144bdb47 100644 --- a/spec/features/menu_items/wiki_menu_item_spec.rb +++ b/spec/features/menu_items/wiki_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/news/creation_and_commenting_spec.rb b/spec/features/news/creation_and_commenting_spec.rb index f4dd8c09ec..84646fd437 100644 --- a/spec/features/news/creation_and_commenting_spec.rb +++ b/spec/features/news/creation_and_commenting_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/oauth/authorization_code_flow_spec.rb b/spec/features/oauth/authorization_code_flow_spec.rb index 9fb8fdea3e..d3629524fa 100644 --- a/spec/features/oauth/authorization_code_flow_spec.rb +++ b/spec/features/oauth/authorization_code_flow_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/oauth/pkce_spec.rb b/spec/features/oauth/pkce_spec.rb index 0a2d4bf38e..e3cab8d851 100644 --- a/spec/features/oauth/pkce_spec.rb +++ b/spec/features/oauth/pkce_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/onboarding/onboarding_tour_spec.rb b/spec/features/onboarding/onboarding_tour_spec.rb index 2c557f96ec..7d17ef8064 100644 --- a/spec/features/onboarding/onboarding_tour_spec.rb +++ b/spec/features/onboarding/onboarding_tour_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/page_objects/notification.rb b/spec/features/page_objects/notification.rb index e643ee3c5f..6351a30cb1 100644 --- a/spec/features/page_objects/notification.rb +++ b/spec/features/page_objects/notification.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/placeholder_users/create_spec.rb b/spec/features/placeholder_users/create_spec.rb index 69055377d6..0131ad9cf9 100644 --- a/spec/features/placeholder_users/create_spec.rb +++ b/spec/features/placeholder_users/create_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/placeholder_users/delete_spec.rb b/spec/features/placeholder_users/delete_spec.rb index 3bf7ab1700..6f1f91f7bd 100644 --- a/spec/features/placeholder_users/delete_spec.rb +++ b/spec/features/placeholder_users/delete_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/placeholder_users/edit_placeholder_users_spec.rb b/spec/features/placeholder_users/edit_placeholder_users_spec.rb index c654eb364b..80579e8553 100644 --- a/spec/features/placeholder_users/edit_placeholder_users_spec.rb +++ b/spec/features/placeholder_users/edit_placeholder_users_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/placeholder_users/index_spec.rb b/spec/features/placeholder_users/index_spec.rb index b840bcf53c..a738b109d2 100644 --- a/spec/features/placeholder_users/index_spec.rb +++ b/spec/features/placeholder_users/index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/placeholder_users/placeholder_user_memberships_spec.rb b/spec/features/placeholder_users/placeholder_user_memberships_spec.rb index 7e0802126f..5e93a52de4 100644 --- a/spec/features/placeholder_users/placeholder_user_memberships_spec.rb +++ b/spec/features/placeholder_users/placeholder_user_memberships_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/attribute_help_texts_spec.rb b/spec/features/projects/attribute_help_texts_spec.rb index 94c84e37f9..0fb3432e70 100644 --- a/spec/features/projects/attribute_help_texts_spec.rb +++ b/spec/features/projects/attribute_help_texts_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/copy_spec.rb b/spec/features/projects/copy_spec.rb index 1af775ecaf..f9cfdb1662 100644 --- a/spec/features/projects/copy_spec.rb +++ b/spec/features/projects/copy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/create_spec.rb b/spec/features/projects/create_spec.rb index b49172e181..62ab22fec5 100644 --- a/spec/features/projects/create_spec.rb +++ b/spec/features/projects/create_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/destroy_spec.rb b/spec/features/projects/destroy_spec.rb index ecdc3b29a0..75f5ca0480 100644 --- a/spec/features/projects/destroy_spec.rb +++ b/spec/features/projects/destroy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/edit_settings_spec.rb b/spec/features/projects/edit_settings_spec.rb index ca07195540..ef5deed83e 100644 --- a/spec/features/projects/edit_settings_spec.rb +++ b/spec/features/projects/edit_settings_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/export_spec.rb b/spec/features/projects/export_spec.rb index 74760a62b5..51a90e5f57 100644 --- a/spec/features/projects/export_spec.rb +++ b/spec/features/projects/export_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/modules_spec.rb b/spec/features/projects/modules_spec.rb index 8ca9493c0d..b423ce300a 100644 --- a/spec/features/projects/modules_spec.rb +++ b/spec/features/projects/modules_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/project_autocomplete_spec.rb b/spec/features/projects/project_autocomplete_spec.rb index 82bcae7078..8f3a85ad67 100644 --- a/spec/features/projects/project_autocomplete_spec.rb +++ b/spec/features/projects/project_autocomplete_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/project_status_administration_spec.rb b/spec/features/projects/project_status_administration_spec.rb index 90894d50f0..a56bd5bd59 100644 --- a/spec/features/projects/project_status_administration_spec.rb +++ b/spec/features/projects/project_status_administration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/projects_custom_fields_spec.rb b/spec/features/projects/projects_custom_fields_spec.rb index da4202bd6d..a9bedc915e 100644 --- a/spec/features/projects/projects_custom_fields_spec.rb +++ b/spec/features/projects/projects_custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/projects_index_spec.rb b/spec/features/projects/projects_index_spec.rb index 794770964b..923036ec79 100644 --- a/spec/features/projects/projects_index_spec.rb +++ b/spec/features/projects/projects_index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/projects_portfolio_spec.rb b/spec/features/projects/projects_portfolio_spec.rb index 5a5ae65acf..ce3aa8d760 100644 --- a/spec/features/projects/projects_portfolio_spec.rb +++ b/spec/features/projects/projects_portfolio_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/subproject_creation_spec.rb b/spec/features/projects/subproject_creation_spec.rb index 3aafcc8003..650a258f42 100644 --- a/spec/features/projects/subproject_creation_spec.rb +++ b/spec/features/projects/subproject_creation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/template_spec.rb b/spec/features/projects/template_spec.rb index e1f29d6ad5..214a6b311a 100644 --- a/spec/features/projects/template_spec.rb +++ b/spec/features/projects/template_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/projects/work_package_type_mgmt_spec.rb b/spec/features/projects/work_package_type_mgmt_spec.rb index 0250562644..5d6abab472 100644 --- a/spec/features/projects/work_package_type_mgmt_spec.rb +++ b/spec/features/projects/work_package_type_mgmt_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/repositories/checkout_instructions_spec.rb b/spec/features/repositories/checkout_instructions_spec.rb index 6e4fac191a..eee96acb18 100644 --- a/spec/features/repositories/checkout_instructions_spec.rb +++ b/spec/features/repositories/checkout_instructions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/repositories/create_repository_spec.rb b/spec/features/repositories/create_repository_spec.rb index e6cd05a325..59db44f1cc 100644 --- a/spec/features/repositories/create_repository_spec.rb +++ b/spec/features/repositories/create_repository_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/repositories/repository_settings_page.rb b/spec/features/repositories/repository_settings_page.rb index 4c695826cf..0728307952 100644 --- a/spec/features/repositories/repository_settings_page.rb +++ b/spec/features/repositories/repository_settings_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/repositories/repository_settings_spec.rb b/spec/features/repositories/repository_settings_spec.rb index abb0c0bae7..43477770e8 100644 --- a/spec/features/repositories/repository_settings_spec.rb +++ b/spec/features/repositories/repository_settings_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/roles/create_spec.rb b/spec/features/roles/create_spec.rb index 9a4e0696d0..e24df42a71 100644 --- a/spec/features/roles/create_spec.rb +++ b/spec/features/roles/create_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/search_spec.rb b/spec/features/search_spec.rb index 485d24d482..a40f8e44ba 100644 --- a/spec/features/search_spec.rb +++ b/spec/features/search_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/security/expire_sessions_spec.rb b/spec/features/security/expire_sessions_spec.rb index 99a8b97399..e6bc68c39e 100644 --- a/spec/features/security/expire_sessions_spec.rb +++ b/spec/features/security/expire_sessions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/security/session_ttl_spec.rb b/spec/features/security/session_ttl_spec.rb index 922f96e1d8..b0c63b64b2 100644 --- a/spec/features/security/session_ttl_spec.rb +++ b/spec/features/security/session_ttl_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/statuses/read_only_statuses_spec.rb b/spec/features/statuses/read_only_statuses_spec.rb index dda43c9ce5..fe9d2b170e 100644 --- a/spec/features/statuses/read_only_statuses_spec.rb +++ b/spec/features/statuses/read_only_statuses_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/statuses/statuses_administration_spec.rb b/spec/features/statuses/statuses_administration_spec.rb index 0a95d7466b..b42d0015e0 100644 --- a/spec/features/statuses/statuses_administration_spec.rb +++ b/spec/features/statuses/statuses_administration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/components/attribute_help_text_modal.rb b/spec/features/support/components/attribute_help_text_modal.rb index 605956cb41..d033cff55f 100644 --- a/spec/features/support/components/attribute_help_text_modal.rb +++ b/spec/features/support/components/attribute_help_text_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/components/danger_zone.rb b/spec/features/support/components/danger_zone.rb index 2df14ce49e..a5ae39f023 100644 --- a/spec/features/support/components/danger_zone.rb +++ b/spec/features/support/components/danger_zone.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/components/ng_select_autocomplete.rb b/spec/features/support/components/ng_select_autocomplete.rb index 313489d1fb..b5bf9e7d50 100644 --- a/spec/features/support/components/ng_select_autocomplete.rb +++ b/spec/features/support/components/ng_select_autocomplete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/components/time_logging_modal.rb b/spec/features/support/components/time_logging_modal.rb index 5d684448ee..ec947ea578 100644 --- a/spec/features/support/components/time_logging_modal.rb +++ b/spec/features/support/components/time_logging_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/components/ui_autocomplete.rb b/spec/features/support/components/ui_autocomplete.rb index dd75f031b4..d42a43a5a5 100644 --- a/spec/features/support/components/ui_autocomplete.rb +++ b/spec/features/support/components/ui_autocomplete.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/support/work_package_table.rb b/spec/features/support/work_package_table.rb index 878a0f1f60..4bbf6a0ec6 100644 --- a/spec/features/support/work_package_table.rb +++ b/spec/features/support/work_package_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/types/activate_in_project_spec.rb b/spec/features/types/activate_in_project_spec.rb index 22594a6be5..2d9f1d37b4 100644 --- a/spec/features/types/activate_in_project_spec.rb +++ b/spec/features/types/activate_in_project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/types/crud_spec.rb b/spec/features/types/crud_spec.rb index a65852b72d..38d6cfc6e7 100644 --- a/spec/features/types/crud_spec.rb +++ b/spec/features/types/crud_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/types/form_configuration_query_spec.rb b/spec/features/types/form_configuration_query_spec.rb index 001572b0c8..0f6485b26b 100644 --- a/spec/features/types/form_configuration_query_spec.rb +++ b/spec/features/types/form_configuration_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/types/form_configuration_spec.rb b/spec/features/types/form_configuration_spec.rb index 0ae0b37b7e..eb32b05810 100644 --- a/spec/features/types/form_configuration_spec.rb +++ b/spec/features/types/form_configuration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/types/reset_form_configuration_spec.rb b/spec/features/types/reset_form_configuration_spec.rb index f1e16930e3..a99c17de88 100644 --- a/spec/features/types/reset_form_configuration_spec.rb +++ b/spec/features/types/reset_form_configuration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/brute_force_spec.rb b/spec/features/users/brute_force_spec.rb index 0a6c677857..b9208201c2 100644 --- a/spec/features/users/brute_force_spec.rb +++ b/spec/features/users/brute_force_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/create_spec.rb b/spec/features/users/create_spec.rb index 34e6a3d1de..bea80cd3fd 100644 --- a/spec/features/users/create_spec.rb +++ b/spec/features/users/create_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/delete_spec.rb b/spec/features/users/delete_spec.rb index a3b5b17d4d..3ac5e385fd 100644 --- a/spec/features/users/delete_spec.rb +++ b/spec/features/users/delete_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/edit_users_spec.rb b/spec/features/users/edit_users_spec.rb index 51f6636a1d..1d4e78f145 100644 --- a/spec/features/users/edit_users_spec.rb +++ b/spec/features/users/edit_users_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/index_spec.rb b/spec/features/users/index_spec.rb index 86e92af055..39f1ae35b6 100644 --- a/spec/features/users/index_spec.rb +++ b/spec/features/users/index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/invitation_spec.rb b/spec/features/users/invitation_spec.rb index 2cadd8703c..c5a6249eee 100644 --- a/spec/features/users/invitation_spec.rb +++ b/spec/features/users/invitation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/invite_user_modal/custom_fields_spec.rb b/spec/features/users/invite_user_modal/custom_fields_spec.rb index da302ff751..c1a870502d 100644 --- a/spec/features/users/invite_user_modal/custom_fields_spec.rb +++ b/spec/features/users/invite_user_modal/custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/invite_user_modal/invite_user_modal_spec.rb b/spec/features/users/invite_user_modal/invite_user_modal_spec.rb index 8ddc79e10f..e41411d786 100644 --- a/spec/features/users/invite_user_modal/invite_user_modal_spec.rb +++ b/spec/features/users/invite_user_modal/invite_user_modal_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/invite_user_modal/permission_lacking_current_project_spec.rb b/spec/features/users/invite_user_modal/permission_lacking_current_project_spec.rb index 3f92366696..b6cc6a82d2 100644 --- a/spec/features/users/invite_user_modal/permission_lacking_current_project_spec.rb +++ b/spec/features/users/invite_user_modal/permission_lacking_current_project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/invite_user_modal/subproject_invite_spec.rb b/spec/features/users/invite_user_modal/subproject_invite_spec.rb index 428b8b4544..6ebfcc9e5d 100644 --- a/spec/features/users/invite_user_modal/subproject_invite_spec.rb +++ b/spec/features/users/invite_user_modal/subproject_invite_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/my_spec.rb b/spec/features/users/my_spec.rb index 6a64db3646..cabf935685 100644 --- a/spec/features/users/my_spec.rb +++ b/spec/features/users/my_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/password_change_spec.rb b/spec/features/users/password_change_spec.rb index 5a52e7461e..85b052a7da 100644 --- a/spec/features/users/password_change_spec.rb +++ b/spec/features/users/password_change_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/self_registration_spec.rb b/spec/features/users/self_registration_spec.rb index 9bcd9db76d..c2e089a7ac 100644 --- a/spec/features/users/self_registration_spec.rb +++ b/spec/features/users/self_registration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/users/user_memberships_spec.rb b/spec/features/users/user_memberships_spec.rb index 7a28bf4f8e..8c977b06f0 100644 --- a/spec/features/users/user_memberships_spec.rb +++ b/spec/features/users/user_memberships_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/versions/create_spec.rb b/spec/features/versions/create_spec.rb index c0b7511550..4f0d0d9cb7 100644 --- a/spec/features/versions/create_spec.rb +++ b/spec/features/versions/create_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/versions/edit_spec.rb b/spec/features/versions/edit_spec.rb index aeaecbabd6..02ad178f6a 100644 --- a/spec/features/versions/edit_spec.rb +++ b/spec/features/versions/edit_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/versions/graph_spec.rb b/spec/features/versions/graph_spec.rb index c44b13fe7a..d11c5e2611 100644 --- a/spec/features/versions/graph_spec.rb +++ b/spec/features/versions/graph_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/versions/project_settings_index_spec.rb b/spec/features/versions/project_settings_index_spec.rb index c6d10119d0..71f395e8dc 100644 --- a/spec/features/versions/project_settings_index_spec.rb +++ b/spec/features/versions/project_settings_index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/watching/toggle_watching_spec.rb b/spec/features/watching/toggle_watching_spec.rb index 2af07b74ba..9149f91270 100644 --- a/spec/features/watching/toggle_watching_spec.rb +++ b/spec/features/watching/toggle_watching_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/adding_editing_history_spec.rb b/spec/features/wiki/adding_editing_history_spec.rb index 073c195a0d..d193734279 100644 --- a/spec/features/wiki/adding_editing_history_spec.rb +++ b/spec/features/wiki/adding_editing_history_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/attachment_upload_spec.rb b/spec/features/wiki/attachment_upload_spec.rb index 6001c7b087..28eb745eba 100644 --- a/spec/features/wiki/attachment_upload_spec.rb +++ b/spec/features/wiki/attachment_upload_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/child_pages_spec.rb b/spec/features/wiki/child_pages_spec.rb index 2de9475394..f2dd27fa7c 100644 --- a/spec/features/wiki/child_pages_spec.rb +++ b/spec/features/wiki/child_pages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/edit_new_page_spec.rb b/spec/features/wiki/edit_new_page_spec.rb index 63aafbfaf0..829566cc05 100644 --- a/spec/features/wiki/edit_new_page_spec.rb +++ b/spec/features/wiki/edit_new_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/rename_spec.rb b/spec/features/wiki/rename_spec.rb index a17471ed51..1c798ff234 100644 --- a/spec/features/wiki/rename_spec.rb +++ b/spec/features/wiki/rename_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/wiki_page_navigation_spec.rb b/spec/features/wiki/wiki_page_navigation_spec.rb index 8771ac0164..71c3c33f1d 100644 --- a/spec/features/wiki/wiki_page_navigation_spec.rb +++ b/spec/features/wiki/wiki_page_navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wiki/wiki_unicode_spec.rb b/spec/features/wiki/wiki_unicode_spec.rb index f404a123c3..417132d2fe 100644 --- a/spec/features/wiki/wiki_unicode_spec.rb +++ b/spec/features/wiki/wiki_unicode_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_package_show_spec.rb b/spec/features/work_package_show_spec.rb index 9f78997e72..a2c75e464c 100644 --- a/spec/features/work_package_show_spec.rb +++ b/spec/features/work_package_show_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/attribute_help_texts_spec.rb b/spec/features/work_packages/attribute_help_texts_spec.rb index 8a26ab11c9..8771441cc2 100644 --- a/spec/features/work_packages/attribute_help_texts_spec.rb +++ b/spec/features/work_packages/attribute_help_texts_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/cards/wp_card_status_spec.rb b/spec/features/work_packages/cards/wp_card_status_spec.rb index df0a45781b..be16df142e 100644 --- a/spec/features/work_packages/cards/wp_card_status_spec.rb +++ b/spec/features/work_packages/cards/wp_card_status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/copy_spec.rb b/spec/features/work_packages/copy_spec.rb index 24e93adf67..66922464a2 100644 --- a/spec/features/work_packages/copy_spec.rb +++ b/spec/features/work_packages/copy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/custom_actions/custom_actions_me_value_spec.rb b/spec/features/work_packages/custom_actions/custom_actions_me_value_spec.rb index 44a367f7f1..ed43f9b845 100644 --- a/spec/features/work_packages/custom_actions/custom_actions_me_value_spec.rb +++ b/spec/features/work_packages/custom_actions/custom_actions_me_value_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/custom_actions/custom_actions_spec.rb b/spec/features/work_packages/custom_actions/custom_actions_spec.rb index 6a2ccf3be1..371df91c7a 100644 --- a/spec/features/work_packages/custom_actions/custom_actions_spec.rb +++ b/spec/features/work_packages/custom_actions/custom_actions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/date_editor_spec.rb b/spec/features/work_packages/details/date_editor_spec.rb index 6fe1e56605..4f35f49720 100644 --- a/spec/features/work_packages/details/date_editor_spec.rb +++ b/spec/features/work_packages/details/date_editor_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/details_refreshing_spec.rb b/spec/features/work_packages/details/details_refreshing_spec.rb index 461a3d8487..730a2bcc8c 100644 --- a/spec/features/work_packages/details/details_refreshing_spec.rb +++ b/spec/features/work_packages/details/details_refreshing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/details_toolbar_spec.rb b/spec/features/work_packages/details/details_toolbar_spec.rb index d9a05797ff..18017090a2 100644 --- a/spec/features/work_packages/details/details_toolbar_spec.rb +++ b/spec/features/work_packages/details/details_toolbar_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/markdown/description_editor_spec.rb b/spec/features/work_packages/details/markdown/description_editor_spec.rb index 18fe85179f..e070c4b695 100644 --- a/spec/features/work_packages/details/markdown/description_editor_spec.rb +++ b/spec/features/work_packages/details/markdown/description_editor_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/markdown/todolist_spec.rb b/spec/features/work_packages/details/markdown/todolist_spec.rb index 4afddacfe6..9a96186ffd 100644 --- a/spec/features/work_packages/details/markdown/todolist_spec.rb +++ b/spec/features/work_packages/details/markdown/todolist_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/query_groups/relation_query_group_spec.rb b/spec/features/work_packages/details/query_groups/relation_query_group_spec.rb index 371a619a52..f3c022eab2 100644 --- a/spec/features/work_packages/details/query_groups/relation_query_group_spec.rb +++ b/spec/features/work_packages/details/query_groups/relation_query_group_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/relations/hierarchy_custom_fields_spec.rb b/spec/features/work_packages/details/relations/hierarchy_custom_fields_spec.rb index 5cb5517854..02221cda29 100644 --- a/spec/features/work_packages/details/relations/hierarchy_custom_fields_spec.rb +++ b/spec/features/work_packages/details/relations/hierarchy_custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/relations/hierarchy_milestone_spec.rb b/spec/features/work_packages/details/relations/hierarchy_milestone_spec.rb index 7f23b3e4d5..7d5fdf97bc 100644 --- a/spec/features/work_packages/details/relations/hierarchy_milestone_spec.rb +++ b/spec/features/work_packages/details/relations/hierarchy_milestone_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/relations/hierarchy_spec.rb b/spec/features/work_packages/details/relations/hierarchy_spec.rb index 435cd077fe..730c70cce8 100644 --- a/spec/features/work_packages/details/relations/hierarchy_spec.rb +++ b/spec/features/work_packages/details/relations/hierarchy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/details/relations/relations_spec.rb b/spec/features/work_packages/details/relations/relations_spec.rb index aae18e6869..71ade8fb16 100644 --- a/spec/features/work_packages/details/relations/relations_spec.rb +++ b/spec/features/work_packages/details/relations/relations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/display_fields/date_field_display_spec.rb b/spec/features/work_packages/display_fields/date_field_display_spec.rb index e7020875d4..91fa8a2757 100644 --- a/spec/features/work_packages/display_fields/date_field_display_spec.rb +++ b/spec/features/work_packages/display_fields/date_field_display_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/display_fields/estimated_hours_display_spec.rb b/spec/features/work_packages/display_fields/estimated_hours_display_spec.rb index 5c047a22b9..47a6e457d9 100644 --- a/spec/features/work_packages/display_fields/estimated_hours_display_spec.rb +++ b/spec/features/work_packages/display_fields/estimated_hours_display_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/display_fields/spent_time_display_spec.rb b/spec/features/work_packages/display_fields/spent_time_display_spec.rb index cf434dbf5d..e7fefbfb75 100644 --- a/spec/features/work_packages/display_fields/spent_time_display_spec.rb +++ b/spec/features/work_packages/display_fields/spent_time_display_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/display_representations/switch_display_representations_spec.rb b/spec/features/work_packages/display_representations/switch_display_representations_spec.rb index 3aae4941a5..7d105c96ac 100644 --- a/spec/features/work_packages/display_representations/switch_display_representations_spec.rb +++ b/spec/features/work_packages/display_representations/switch_display_representations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/export_spec.rb b/spec/features/work_packages/export_spec.rb index d24cdfcecf..2cd0a76ffc 100644 --- a/spec/features/work_packages/export_spec.rb +++ b/spec/features/work_packages/export_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/index_sums_spec.rb b/spec/features/work_packages/index_sums_spec.rb index 639185d7f3..182d8d8f67 100644 --- a/spec/features/work_packages/index_sums_spec.rb +++ b/spec/features/work_packages/index_sums_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/navigation_spec.rb b/spec/features/work_packages/navigation_spec.rb index 41774af256..2d6bfaa974 100644 --- a/spec/features/work_packages/navigation_spec.rb +++ b/spec/features/work_packages/navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/new/attributes_from_filter_spec.rb b/spec/features/work_packages/new/attributes_from_filter_spec.rb index 3478c6ece9..3268346406 100644 --- a/spec/features/work_packages/new/attributes_from_filter_spec.rb +++ b/spec/features/work_packages/new/attributes_from_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/pagination_spec.rb b/spec/features/work_packages/pagination_spec.rb index 2da7364599..9e85b7cc68 100644 --- a/spec/features/work_packages/pagination_spec.rb +++ b/spec/features/work_packages/pagination_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/project_include/project_include_shared_examples.rb b/spec/features/work_packages/project_include/project_include_shared_examples.rb index b28af6171d..db4194639f 100644 --- a/spec/features/work_packages/project_include/project_include_shared_examples.rb +++ b/spec/features/work_packages/project_include/project_include_shared_examples.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/reports_spec.rb b/spec/features/work_packages/reports_spec.rb index 345c76eaeb..3f8bae46e6 100644 --- a/spec/features/work_packages/reports_spec.rb +++ b/spec/features/work_packages/reports_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/scheduling/scheduling_mode_spec.rb b/spec/features/work_packages/scheduling/scheduling_mode_spec.rb index 68d413072e..6596ff6ed8 100644 --- a/spec/features/work_packages/scheduling/scheduling_mode_spec.rb +++ b/spec/features/work_packages/scheduling/scheduling_mode_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/select/select_card_view.spec.rb b/spec/features/work_packages/select/select_card_view.spec.rb index e180b0bdaa..7b6720d4b3 100644 --- a/spec/features/work_packages/select/select_card_view.spec.rb +++ b/spec/features/work_packages/select/select_card_view.spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/select/select_query_spec.rb b/spec/features/work_packages/select/select_query_spec.rb index fb00590256..724f615e3b 100644 --- a/spec/features/work_packages/select/select_query_spec.rb +++ b/spec/features/work_packages/select/select_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/select/select_work_package_row_spec.rb b/spec/features/work_packages/select/select_work_package_row_spec.rb index b43a27bd7f..bd97baa9fe 100644 --- a/spec/features/work_packages/select/select_work_package_row_spec.rb +++ b/spec/features/work_packages/select/select_work_package_row_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/select/select_wp_card_spec.rb b/spec/features/work_packages/select/select_wp_card_spec.rb index f7efb412c7..69ed1a0029 100644 --- a/spec/features/work_packages/select/select_wp_card_spec.rb +++ b/spec/features/work_packages/select/select_wp_card_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/shared_contexts.rb b/spec/features/work_packages/shared_contexts.rb index ac2778644c..aee0fd494d 100644 --- a/spec/features/work_packages/shared_contexts.rb +++ b/spec/features/work_packages/shared_contexts.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/sorting/manual_sorting_spec.rb b/spec/features/work_packages/sorting/manual_sorting_spec.rb index 29f8c6d9d1..f8c6abde74 100644 --- a/spec/features/work_packages/sorting/manual_sorting_spec.rb +++ b/spec/features/work_packages/sorting/manual_sorting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/sorting/table_sorting_spec.rb b/spec/features/work_packages/sorting/table_sorting_spec.rb index 3a8262d40e..3ae4d08f44 100644 --- a/spec/features/work_packages/sorting/table_sorting_spec.rb +++ b/spec/features/work_packages/sorting/table_sorting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/hierarchy/hierarchy_vs_grouping_spec.rb b/spec/features/work_packages/table/hierarchy/hierarchy_vs_grouping_spec.rb index 5ab5eb2d72..663654d0cf 100644 --- a/spec/features/work_packages/table/hierarchy/hierarchy_vs_grouping_spec.rb +++ b/spec/features/work_packages/table/hierarchy/hierarchy_vs_grouping_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/assignee_filter_spec.rb b/spec/features/work_packages/table/queries/assignee_filter_spec.rb index e63e0d1c84..94bec7ad60 100644 --- a/spec/features/work_packages/table/queries/assignee_filter_spec.rb +++ b/spec/features/work_packages/table/queries/assignee_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/bool_cf_filter_spec.rb b/spec/features/work_packages/table/queries/bool_cf_filter_spec.rb index efa5b85e88..02fcb643da 100644 --- a/spec/features/work_packages/table/queries/bool_cf_filter_spec.rb +++ b/spec/features/work_packages/table/queries/bool_cf_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/filter_pagination_spec.rb b/spec/features/work_packages/table/queries/filter_pagination_spec.rb index 0fa3806a1c..cad2e5dbf6 100644 --- a/spec/features/work_packages/table/queries/filter_pagination_spec.rb +++ b/spec/features/work_packages/table/queries/filter_pagination_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/filter_spec.rb b/spec/features/work_packages/table/queries/filter_spec.rb index 42aae0acf5..9b5bb68625 100644 --- a/spec/features/work_packages/table/queries/filter_spec.rb +++ b/spec/features/work_packages/table/queries/filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/id_filter_spec.rb b/spec/features/work_packages/table/queries/id_filter_spec.rb index 244cb321b0..b9c451e7ae 100644 --- a/spec/features/work_packages/table/queries/id_filter_spec.rb +++ b/spec/features/work_packages/table/queries/id_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/me_filter_spec.rb b/spec/features/work_packages/table/queries/me_filter_spec.rb index 649df15714..06048687b0 100644 --- a/spec/features/work_packages/table/queries/me_filter_spec.rb +++ b/spec/features/work_packages/table/queries/me_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/query_history_spec.rb b/spec/features/work_packages/table/queries/query_history_spec.rb index b60617755c..dbab61a234 100644 --- a/spec/features/work_packages/table/queries/query_history_spec.rb +++ b/spec/features/work_packages/table/queries/query_history_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/query_menu_refresh_spec.rb b/spec/features/work_packages/table/queries/query_menu_refresh_spec.rb index 4078b17477..8d0bdf1a89 100644 --- a/spec/features/work_packages/table/queries/query_menu_refresh_spec.rb +++ b/spec/features/work_packages/table/queries/query_menu_refresh_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/query_menu_spec.rb b/spec/features/work_packages/table/queries/query_menu_spec.rb index a111073e5d..1c78b617b7 100644 --- a/spec/features/work_packages/table/queries/query_menu_spec.rb +++ b/spec/features/work_packages/table/queries/query_menu_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/query_name_inline_edit_spec.rb b/spec/features/work_packages/table/queries/query_name_inline_edit_spec.rb index 96f698c6e0..0708cc9b43 100644 --- a/spec/features/work_packages/table/queries/query_name_inline_edit_spec.rb +++ b/spec/features/work_packages/table/queries/query_name_inline_edit_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/responsible_filter_spec.rb b/spec/features/work_packages/table/queries/responsible_filter_spec.rb index e2fd15c59b..53773b0bfb 100644 --- a/spec/features/work_packages/table/queries/responsible_filter_spec.rb +++ b/spec/features/work_packages/table/queries/responsible_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/subject_filter_spec.rb b/spec/features/work_packages/table/queries/subject_filter_spec.rb index e30edf2fcf..e43c74a17d 100644 --- a/spec/features/work_packages/table/queries/subject_filter_spec.rb +++ b/spec/features/work_packages/table/queries/subject_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/summary_spec.rb b/spec/features/work_packages/table/queries/summary_spec.rb index 83effdfd96..92af0a446d 100644 --- a/spec/features/work_packages/table/queries/summary_spec.rb +++ b/spec/features/work_packages/table/queries/summary_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/queries/user_cf_filter_spec.rb b/spec/features/work_packages/table/queries/user_cf_filter_spec.rb index 9033e981b3..d7f9419f97 100644 --- a/spec/features/work_packages/table/queries/user_cf_filter_spec.rb +++ b/spec/features/work_packages/table/queries/user_cf_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/table/work_packages_table_project_include_spec.rb b/spec/features/work_packages/table/work_packages_table_project_include_spec.rb index 698612bfa8..ed31c9729a 100644 --- a/spec/features/work_packages/table/work_packages_table_project_include_spec.rb +++ b/spec/features/work_packages/table/work_packages_table_project_include_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/tabs/keep_tab_spec.rb b/spec/features/work_packages/tabs/keep_tab_spec.rb index 67755bf4f3..3b8b41847b 100644 --- a/spec/features/work_packages/tabs/keep_tab_spec.rb +++ b/spec/features/work_packages/tabs/keep_tab_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/timeline/timeline_dates_spec.rb b/spec/features/work_packages/timeline/timeline_dates_spec.rb index e66fa46d7f..c2a4458395 100644 --- a/spec/features/work_packages/timeline/timeline_dates_spec.rb +++ b/spec/features/work_packages/timeline/timeline_dates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/timeline/timeline_hierarchy_spec.rb b/spec/features/work_packages/timeline/timeline_hierarchy_spec.rb index f40fecab08..b8f4783910 100644 --- a/spec/features/work_packages/timeline/timeline_hierarchy_spec.rb +++ b/spec/features/work_packages/timeline/timeline_hierarchy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/timeline/timeline_labels_spec.rb b/spec/features/work_packages/timeline/timeline_labels_spec.rb index 4d808f88b0..dd06bc21d5 100644 --- a/spec/features/work_packages/timeline/timeline_labels_spec.rb +++ b/spec/features/work_packages/timeline/timeline_labels_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/timeline/timeline_navigation_spec.rb b/spec/features/work_packages/timeline/timeline_navigation_spec.rb index 71d70259bd..6ae0d02441 100644 --- a/spec/features/work_packages/timeline/timeline_navigation_spec.rb +++ b/spec/features/work_packages/timeline/timeline_navigation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/work_package_index_spec.rb b/spec/features/work_packages/work_package_index_spec.rb index e8b82e1511..66289b2878 100644 --- a/spec/features/work_packages/work_package_index_spec.rb +++ b/spec/features/work_packages/work_package_index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/work_package_workflow_form_spec.rb b/spec/features/work_packages/work_package_workflow_form_spec.rb index a68d6d9c0d..39d80aa68d 100644 --- a/spec/features/work_packages/work_package_workflow_form_spec.rb +++ b/spec/features/work_packages/work_package_workflow_form_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/work_packages/work_packages_page.rb b/spec/features/work_packages/work_packages_page.rb index 499ad20770..0debe9dbb6 100644 --- a/spec/features/work_packages/work_packages_page.rb +++ b/spec/features/work_packages/work_packages_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/workflows/copy_spec.rb b/spec/features/workflows/copy_spec.rb index 2bcd852d09..42401cb87c 100644 --- a/spec/features/workflows/copy_spec.rb +++ b/spec/features/workflows/copy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/custom_css_classes_spec.rb b/spec/features/wysiwyg/custom_css_classes_spec.rb index 38188223a1..bd2ba7ff9b 100644 --- a/spec/features/wysiwyg/custom_css_classes_spec.rb +++ b/spec/features/wysiwyg/custom_css_classes_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/html_encoding_spec.rb b/spec/features/wysiwyg/html_encoding_spec.rb index a0bf1619bb..f7e5625e6b 100644 --- a/spec/features/wysiwyg/html_encoding_spec.rb +++ b/spec/features/wysiwyg/html_encoding_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/linking_spec.rb b/spec/features/wysiwyg/linking_spec.rb index 0f3290d7c4..7791d1a316 100644 --- a/spec/features/wysiwyg/linking_spec.rb +++ b/spec/features/wysiwyg/linking_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/attribute_macros_spec.rb b/spec/features/wysiwyg/macros/attribute_macros_spec.rb index 48ba468c65..12ab604c42 100644 --- a/spec/features/wysiwyg/macros/attribute_macros_spec.rb +++ b/spec/features/wysiwyg/macros/attribute_macros_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/child_pages_spec.rb b/spec/features/wysiwyg/macros/child_pages_spec.rb index c69e0b5cea..43cd8499cd 100644 --- a/spec/features/wysiwyg/macros/child_pages_spec.rb +++ b/spec/features/wysiwyg/macros/child_pages_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/code_block_macro_spec.rb b/spec/features/wysiwyg/macros/code_block_macro_spec.rb index cd5c6ed771..d25c0f5a6d 100644 --- a/spec/features/wysiwyg/macros/code_block_macro_spec.rb +++ b/spec/features/wysiwyg/macros/code_block_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/embedded_tables_spec.rb b/spec/features/wysiwyg/macros/embedded_tables_spec.rb index 501a61d879..b331941fd8 100644 --- a/spec/features/wysiwyg/macros/embedded_tables_spec.rb +++ b/spec/features/wysiwyg/macros/embedded_tables_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/quicklink_macros_spec.rb b/spec/features/wysiwyg/macros/quicklink_macros_spec.rb index 7f57a26601..8f764efda7 100644 --- a/spec/features/wysiwyg/macros/quicklink_macros_spec.rb +++ b/spec/features/wysiwyg/macros/quicklink_macros_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/macros/work_package_button_spec.rb b/spec/features/wysiwyg/macros/work_package_button_spec.rb index 888c83880d..6b6316759c 100644 --- a/spec/features/wysiwyg/macros/work_package_button_spec.rb +++ b/spec/features/wysiwyg/macros/work_package_button_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/non_breaking_spaces_spec.rb b/spec/features/wysiwyg/non_breaking_spaces_spec.rb index 78a87fedce..73d18e982a 100644 --- a/spec/features/wysiwyg/non_breaking_spaces_spec.rb +++ b/spec/features/wysiwyg/non_breaking_spaces_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/paragraphs_in_lists_spec.rb b/spec/features/wysiwyg/paragraphs_in_lists_spec.rb index 85ffcd6902..c8fc7f0d91 100644 --- a/spec/features/wysiwyg/paragraphs_in_lists_spec.rb +++ b/spec/features/wysiwyg/paragraphs_in_lists_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/tables_spec.rb b/spec/features/wysiwyg/tables_spec.rb index 4d76d2b41f..c0d722743c 100644 --- a/spec/features/wysiwyg/tables_spec.rb +++ b/spec/features/wysiwyg/tables_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/user_mention_spec.rb b/spec/features/wysiwyg/user_mention_spec.rb index ef9ddb75c2..974e34f1c9 100644 --- a/spec/features/wysiwyg/user_mention_spec.rb +++ b/spec/features/wysiwyg/user_mention_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/features/wysiwyg/work_package_linking_spec.rb b/spec/features/wysiwyg/work_package_linking_spec.rb index 2279e993bd..a941647f4e 100644 --- a/spec/features/wysiwyg/work_package_linking_spec.rb +++ b/spec/features/wysiwyg/work_package_linking_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/angular_helper_spec.rb b/spec/helpers/angular_helper_spec.rb index f3bc080e7e..ff9e0509c0 100644 --- a/spec/helpers/angular_helper_spec.rb +++ b/spec/helpers/angular_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb index 790498ce6c..46dd871dd5 100644 --- a/spec/helpers/application_helper_spec.rb +++ b/spec/helpers/application_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/custom_styles_helper_spec.rb b/spec/helpers/custom_styles_helper_spec.rb index b5861a0fdc..9505066f6d 100644 --- a/spec/helpers/custom_styles_helper_spec.rb +++ b/spec/helpers/custom_styles_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/hook_helper_spec.rb b/spec/helpers/hook_helper_spec.rb index a201b32817..0138c7df81 100644 --- a/spec/helpers/hook_helper_spec.rb +++ b/spec/helpers/hook_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/individual_principal_hooks_helper_spec.rb b/spec/helpers/individual_principal_hooks_helper_spec.rb index 074bfae738..ea3d19a659 100644 --- a/spec/helpers/individual_principal_hooks_helper_spec.rb +++ b/spec/helpers/individual_principal_hooks_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/no_results_helper_spec.rb b/spec/helpers/no_results_helper_spec.rb index 857ba30f20..a24e734543 100644 --- a/spec/helpers/no_results_helper_spec.rb +++ b/spec/helpers/no_results_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/pagination_helper_spec.rb b/spec/helpers/pagination_helper_spec.rb index e07d60e616..b0818b5994 100644 --- a/spec/helpers/pagination_helper_spec.rb +++ b/spec/helpers/pagination_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/projects_helper_spec.rb b/spec/helpers/projects_helper_spec.rb index 8de1539088..cbca0a5ddc 100644 --- a/spec/helpers/projects_helper_spec.rb +++ b/spec/helpers/projects_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/removed_js_helpers_helper_spec.rb b/spec/helpers/removed_js_helpers_helper_spec.rb index 68f6c30e2f..2a16683073 100644 --- a/spec/helpers/removed_js_helpers_helper_spec.rb +++ b/spec/helpers/removed_js_helpers_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/search_helper_spec.rb b/spec/helpers/search_helper_spec.rb index 23574451b8..14444cb144 100644 --- a/spec/helpers/search_helper_spec.rb +++ b/spec/helpers/search_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/security_badge_helper_spec.rb b/spec/helpers/security_badge_helper_spec.rb index 1ed083e8f9..1c45203486 100644 --- a/spec/helpers/security_badge_helper_spec.rb +++ b/spec/helpers/security_badge_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/settings_helper_spec.rb b/spec/helpers/settings_helper_spec.rb index cb656e8bda..61a8a17906 100644 --- a/spec/helpers/settings_helper_spec.rb +++ b/spec/helpers/settings_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/sort_helper_spec.rb b/spec/helpers/sort_helper_spec.rb index 6c485a6e7d..8a332177d3 100644 --- a/spec/helpers/sort_helper_spec.rb +++ b/spec/helpers/sort_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/tabs_helper_spec.rb b/spec/helpers/tabs_helper_spec.rb index ab0bc6c820..2d9fa05a93 100644 --- a/spec/helpers/tabs_helper_spec.rb +++ b/spec/helpers/tabs_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/text_formatting_helper_spec.rb b/spec/helpers/text_formatting_helper_spec.rb index 6aa5b94747..c5d40c69da 100644 --- a/spec/helpers/text_formatting_helper_spec.rb +++ b/spec/helpers/text_formatting_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/toolbar_helper_spec.rb b/spec/helpers/toolbar_helper_spec.rb index cd00dd914d..caac9d8f99 100644 --- a/spec/helpers/toolbar_helper_spec.rb +++ b/spec/helpers/toolbar_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/types_helper_spec.rb b/spec/helpers/types_helper_spec.rb index 21587a25be..78902f7ba5 100644 --- a/spec/helpers/types_helper_spec.rb +++ b/spec/helpers/types_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/users_helper_spec.rb b/spec/helpers/users_helper_spec.rb index 9c9e99e3a7..29c2ee79b4 100644 --- a/spec/helpers/users_helper_spec.rb +++ b/spec/helpers/users_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/versions_helper_spec.rb b/spec/helpers/versions_helper_spec.rb index 309817134d..ec03165891 100644 --- a/spec/helpers/versions_helper_spec.rb +++ b/spec/helpers/versions_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/work_packages_filter_helper_spec.rb b/spec/helpers/work_packages_filter_helper_spec.rb index 3a90378b1b..e3ccc7f378 100644 --- a/spec/helpers/work_packages_filter_helper_spec.rb +++ b/spec/helpers/work_packages_filter_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/helpers/work_packages_helper_spec.rb b/spec/helpers/work_packages_helper_spec.rb index ca478c7651..a3579b57b0 100644 --- a/spec/helpers/work_packages_helper_spec.rb +++ b/spec/helpers/work_packages_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/acts_as_journalized/journaled_spec.rb b/spec/lib/acts_as_journalized/journaled_spec.rb index 910c7efda0..634c153f49 100644 --- a/spec/lib/acts_as_journalized/journaled_spec.rb +++ b/spec/lib/acts_as_journalized/journaled_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/acts_as_list/acts_as_list_patch_spec.rb b/spec/lib/acts_as_list/acts_as_list_patch_spec.rb index ef7432d7b1..557599ce2e 100644 --- a/spec/lib/acts_as_list/acts_as_list_patch_spec.rb +++ b/spec/lib/acts_as_list/acts_as_list_patch_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb b/spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb index b63a97b62f..459bed4284 100644 --- a/spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb +++ b/spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/decorators/aggregation_group_spec.rb b/spec/lib/api/decorators/aggregation_group_spec.rb index f28ad0e661..1e373e3788 100644 --- a/spec/lib/api/decorators/aggregation_group_spec.rb +++ b/spec/lib/api/decorators/aggregation_group_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/decorators/formattable_spec.rb b/spec/lib/api/decorators/formattable_spec.rb index 7c2ba468ba..57f3a6f841 100644 --- a/spec/lib/api/decorators/formattable_spec.rb +++ b/spec/lib/api/decorators/formattable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/decorators/link_object_spec.rb b/spec/lib/api/decorators/link_object_spec.rb index a088227b2a..9dc801a842 100644 --- a/spec/lib/api/decorators/link_object_spec.rb +++ b/spec/lib/api/decorators/link_object_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/utilities/page_size_helper_spec.rb b/spec/lib/api/utilities/page_size_helper_spec.rb index d2bf9b08e5..322a084f78 100644 --- a/spec/lib/api/utilities/page_size_helper_spec.rb +++ b/spec/lib/api/utilities/page_size_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/utilities/property_name_converter_spec.rb b/spec/lib/api/utilities/property_name_converter_spec.rb index ba5d7cdeba..45ad1ea063 100644 --- a/spec/lib/api/utilities/property_name_converter_spec.rb +++ b/spec/lib/api/utilities/property_name_converter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/utilities/resource_link_parser_spec.rb b/spec/lib/api/utilities/resource_link_parser_spec.rb index ecfefc7b84..a52f4c439a 100644 --- a/spec/lib/api/utilities/resource_link_parser_spec.rb +++ b/spec/lib/api/utilities/resource_link_parser_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/actions/action_sql_respresenter_rendering_spec.rb b/spec/lib/api/v3/actions/action_sql_respresenter_rendering_spec.rb index db3862c83d..785728ca72 100644 --- a/spec/lib/api/v3/actions/action_sql_respresenter_rendering_spec.rb +++ b/spec/lib/api/v3/actions/action_sql_respresenter_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/activities/activity_representer_rendering_spec.rb b/spec/lib/api/v3/activities/activity_representer_rendering_spec.rb index e6612d07dd..1ec2070743 100644 --- a/spec/lib/api/v3/activities/activity_representer_rendering_spec.rb +++ b/spec/lib/api/v3/activities/activity_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/attachments/attachment_metadata_representer_spec.rb b/spec/lib/api/v3/attachments/attachment_metadata_representer_spec.rb index 99d93d48bd..270fc8e9ec 100644 --- a/spec/lib/api/v3/attachments/attachment_metadata_representer_spec.rb +++ b/spec/lib/api/v3/attachments/attachment_metadata_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/attachments/attachment_representer_spec.rb b/spec/lib/api/v3/attachments/attachment_representer_spec.rb index 05d5d42fce..1d992d013a 100644 --- a/spec/lib/api/v3/attachments/attachment_representer_spec.rb +++ b/spec/lib/api/v3/attachments/attachment_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/capabilities/capability_sql_representer_rendering_spec.rb b/spec/lib/api/v3/capabilities/capability_sql_representer_rendering_spec.rb index dc7c745a43..bd0e42d94e 100644 --- a/spec/lib/api/v3/capabilities/capability_sql_representer_rendering_spec.rb +++ b/spec/lib/api/v3/capabilities/capability_sql_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/capabilities/contexts/global_representer_rendering_spec.rb b/spec/lib/api/v3/capabilities/contexts/global_representer_rendering_spec.rb index 9e091cf425..d3b8d87b37 100644 --- a/spec/lib/api/v3/capabilities/contexts/global_representer_rendering_spec.rb +++ b/spec/lib/api/v3/capabilities/contexts/global_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/categories/category_collection_representer_spec.rb b/spec/lib/api/v3/categories/category_collection_representer_spec.rb index c905f5e6ef..acdd705fed 100644 --- a/spec/lib/api/v3/categories/category_collection_representer_spec.rb +++ b/spec/lib/api/v3/categories/category_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/categories/category_representer_spec.rb b/spec/lib/api/v3/categories/category_representer_spec.rb index 524a7c608c..50944d0f96 100644 --- a/spec/lib/api/v3/categories/category_representer_spec.rb +++ b/spec/lib/api/v3/categories/category_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/configuration/configuration_representer_spec.rb b/spec/lib/api/v3/configuration/configuration_representer_spec.rb index c664d54820..28ff79d8cd 100644 --- a/spec/lib/api/v3/configuration/configuration_representer_spec.rb +++ b/spec/lib/api/v3/configuration/configuration_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/custom_actions/custom_action_execute_representer_parsing_spec.rb b/spec/lib/api/v3/custom_actions/custom_action_execute_representer_parsing_spec.rb index bc73406dda..17cc564ca8 100644 --- a/spec/lib/api/v3/custom_actions/custom_action_execute_representer_parsing_spec.rb +++ b/spec/lib/api/v3/custom_actions/custom_action_execute_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/custom_actions/custom_action_representer_generation_spec.rb b/spec/lib/api/v3/custom_actions/custom_action_representer_generation_spec.rb index b10ea39f05..41cd1534ea 100644 --- a/spec/lib/api/v3/custom_actions/custom_action_representer_generation_spec.rb +++ b/spec/lib/api/v3/custom_actions/custom_action_representer_generation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/custom_options/custom_option_representer_spec.rb b/spec/lib/api/v3/custom_options/custom_option_representer_spec.rb index 0c110cf595..1bcba8d3d1 100644 --- a/spec/lib/api/v3/custom_options/custom_option_representer_spec.rb +++ b/spec/lib/api/v3/custom_options/custom_option_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/formatter/txt_charset_spec.rb b/spec/lib/api/v3/formatter/txt_charset_spec.rb index c43df37d36..4ab8ee2c5c 100644 --- a/spec/lib/api/v3/formatter/txt_charset_spec.rb +++ b/spec/lib/api/v3/formatter/txt_charset_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/groups/group_collection_representer_spec.rb b/spec/lib/api/v3/groups/group_collection_representer_spec.rb index 2a09590ae0..57ea65dcfa 100644 --- a/spec/lib/api/v3/groups/group_collection_representer_spec.rb +++ b/spec/lib/api/v3/groups/group_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/groups/group_representer_spec.rb b/spec/lib/api/v3/groups/group_representer_spec.rb index 343bfe4752..e1eae14ddb 100644 --- a/spec/lib/api/v3/groups/group_representer_spec.rb +++ b/spec/lib/api/v3/groups/group_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/help_texts/help_text_collection_representer_spec.rb b/spec/lib/api/v3/help_texts/help_text_collection_representer_spec.rb index 3b2654e2b1..fc17695b56 100644 --- a/spec/lib/api/v3/help_texts/help_text_collection_representer_spec.rb +++ b/spec/lib/api/v3/help_texts/help_text_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/help_texts/help_text_representer_spec.rb b/spec/lib/api/v3/help_texts/help_text_representer_spec.rb index 43e1964294..171c9c1020 100644 --- a/spec/lib/api/v3/help_texts/help_text_representer_spec.rb +++ b/spec/lib/api/v3/help_texts/help_text_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/memberships/membership_collection_representer_spec.rb b/spec/lib/api/v3/memberships/membership_collection_representer_spec.rb index de01659c42..0d04c203bc 100644 --- a/spec/lib/api/v3/memberships/membership_collection_representer_spec.rb +++ b/spec/lib/api/v3/memberships/membership_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/memberships/membership_payload_representer_spec.rb b/spec/lib/api/v3/memberships/membership_payload_representer_spec.rb index 990539d3c5..da416f61d8 100644 --- a/spec/lib/api/v3/memberships/membership_payload_representer_spec.rb +++ b/spec/lib/api/v3/memberships/membership_payload_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/memberships/membership_representer_rendering_spec.rb b/spec/lib/api/v3/memberships/membership_representer_rendering_spec.rb index 8205cbb06a..d798087092 100644 --- a/spec/lib/api/v3/memberships/membership_representer_rendering_spec.rb +++ b/spec/lib/api/v3/memberships/membership_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/memberships/schemas/membership_schema_representer_spec.rb b/spec/lib/api/v3/memberships/schemas/membership_schema_representer_spec.rb index 4d24fcbf62..2d4dbf3ea6 100644 --- a/spec/lib/api/v3/memberships/schemas/membership_schema_representer_spec.rb +++ b/spec/lib/api/v3/memberships/schemas/membership_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/news/news_representer_rendering_spec.rb b/spec/lib/api/v3/news/news_representer_rendering_spec.rb index a91743b045..e7bff2456c 100644 --- a/spec/lib/api/v3/news/news_representer_rendering_spec.rb +++ b/spec/lib/api/v3/news/news_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/notifications/notification_collection_representer_spec.rb b/spec/lib/api/v3/notifications/notification_collection_representer_spec.rb index 4fba439376..48fedd903a 100644 --- a/spec/lib/api/v3/notifications/notification_collection_representer_spec.rb +++ b/spec/lib/api/v3/notifications/notification_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/notifications/notification_representer_rendering_spec.rb b/spec/lib/api/v3/notifications/notification_representer_rendering_spec.rb index 0ff23d4c51..95c39165b6 100644 --- a/spec/lib/api/v3/notifications/notification_representer_rendering_spec.rb +++ b/spec/lib/api/v3/notifications/notification_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/placeholder_users/placeholder_user_collection_representer_spec.rb b/spec/lib/api/v3/placeholder_users/placeholder_user_collection_representer_spec.rb index 93a2bd7da6..1dacc8ea29 100644 --- a/spec/lib/api/v3/placeholder_users/placeholder_user_collection_representer_spec.rb +++ b/spec/lib/api/v3/placeholder_users/placeholder_user_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/placeholder_users/placeholder_user_representer_rendering_spec.rb b/spec/lib/api/v3/placeholder_users/placeholder_user_representer_rendering_spec.rb index d8ca40b71b..f8da4b2a44 100644 --- a/spec/lib/api/v3/placeholder_users/placeholder_user_representer_rendering_spec.rb +++ b/spec/lib/api/v3/placeholder_users/placeholder_user_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/posts/post_representer_rendering_spec.rb b/spec/lib/api/v3/posts/post_representer_rendering_spec.rb index b9b332fb17..e06cb38730 100644 --- a/spec/lib/api/v3/posts/post_representer_rendering_spec.rb +++ b/spec/lib/api/v3/posts/post_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/principals/principal_representer_factory_spec.rb b/spec/lib/api/v3/principals/principal_representer_factory_spec.rb index 57bc660f20..5c9e6f2727 100644 --- a/spec/lib/api/v3/principals/principal_representer_factory_spec.rb +++ b/spec/lib/api/v3/principals/principal_representer_factory_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/principals/principal_type_spec.rb b/spec/lib/api/v3/principals/principal_type_spec.rb index d4b68300d2..7474964a96 100644 --- a/spec/lib/api/v3/principals/principal_type_spec.rb +++ b/spec/lib/api/v3/principals/principal_type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/priorities/priority_collection_representer_spec.rb b/spec/lib/api/v3/priorities/priority_collection_representer_spec.rb index 5bea95e5e6..b595735f45 100644 --- a/spec/lib/api/v3/priorities/priority_collection_representer_spec.rb +++ b/spec/lib/api/v3/priorities/priority_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/priorities/priority_representer_spec.rb b/spec/lib/api/v3/priorities/priority_representer_spec.rb index fc72eddec0..035d59fcc5 100644 --- a/spec/lib/api/v3/priorities/priority_representer_spec.rb +++ b/spec/lib/api/v3/priorities/priority_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/copy/project_copy_payload_representer_spec.rb b/spec/lib/api/v3/projects/copy/project_copy_payload_representer_spec.rb index 24768767b9..63f7da43aa 100644 --- a/spec/lib/api/v3/projects/copy/project_copy_payload_representer_spec.rb +++ b/spec/lib/api/v3/projects/copy/project_copy_payload_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/copy/project_copy_schema_representer_spec.rb b/spec/lib/api/v3/projects/copy/project_copy_schema_representer_spec.rb index c13a5064d6..b89c248f0d 100644 --- a/spec/lib/api/v3/projects/copy/project_copy_schema_representer_spec.rb +++ b/spec/lib/api/v3/projects/copy/project_copy_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/project_collection_representer_spec.rb b/spec/lib/api/v3/projects/project_collection_representer_spec.rb index 70164a3234..fdee86b92f 100644 --- a/spec/lib/api/v3/projects/project_collection_representer_spec.rb +++ b/spec/lib/api/v3/projects/project_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/project_payload_representer_parsing_spec.rb b/spec/lib/api/v3/projects/project_payload_representer_parsing_spec.rb index 5884b7a406..148cc958c6 100644 --- a/spec/lib/api/v3/projects/project_payload_representer_parsing_spec.rb +++ b/spec/lib/api/v3/projects/project_payload_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/project_representer_rendering_spec.rb b/spec/lib/api/v3/projects/project_representer_rendering_spec.rb index 5ffa26ebb9..6b4447781d 100644 --- a/spec/lib/api/v3/projects/project_representer_rendering_spec.rb +++ b/spec/lib/api/v3/projects/project_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/schemas/project_schema_representer_spec.rb b/spec/lib/api/v3/projects/schemas/project_schema_representer_spec.rb index 05acf1b0c4..015621c3cb 100644 --- a/spec/lib/api/v3/projects/schemas/project_schema_representer_spec.rb +++ b/spec/lib/api/v3/projects/schemas/project_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/projects/statuses/status_representer_rendering_spec.rb b/spec/lib/api/v3/projects/statuses/status_representer_rendering_spec.rb index aa96cd2f8b..9dd7848d78 100644 --- a/spec/lib/api/v3/projects/statuses/status_representer_rendering_spec.rb +++ b/spec/lib/api/v3/projects/statuses/status_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/columns/query_property_column_representer_spec.rb b/spec/lib/api/v3/queries/columns/query_property_column_representer_spec.rb index f5bd30206e..3f034365c6 100644 --- a/spec/lib/api/v3/queries/columns/query_property_column_representer_spec.rb +++ b/spec/lib/api/v3/queries/columns/query_property_column_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/columns/query_relation_of_type_column_representer_spec.rb b/spec/lib/api/v3/queries/columns/query_relation_of_type_column_representer_spec.rb index 8cbb1239de..3b1e131917 100644 --- a/spec/lib/api/v3/queries/columns/query_relation_of_type_column_representer_spec.rb +++ b/spec/lib/api/v3/queries/columns/query_relation_of_type_column_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/columns/query_relation_to_type_column_representer_spec.rb b/spec/lib/api/v3/queries/columns/query_relation_to_type_column_representer_spec.rb index a94928a83e..b58e3edd94 100644 --- a/spec/lib/api/v3/queries/columns/query_relation_to_type_column_representer_spec.rb +++ b/spec/lib/api/v3/queries/columns/query_relation_to_type_column_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/filters/query_filter_instance_representer_spec.rb b/spec/lib/api/v3/queries/filters/query_filter_instance_representer_spec.rb index 05e8b6d5a7..29e30ec6b1 100644 --- a/spec/lib/api/v3/queries/filters/query_filter_instance_representer_spec.rb +++ b/spec/lib/api/v3/queries/filters/query_filter_instance_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/filters/query_filter_representer_spec.rb b/spec/lib/api/v3/queries/filters/query_filter_representer_spec.rb index 7d0fe68a8f..3d2405f184 100644 --- a/spec/lib/api/v3/queries/filters/query_filter_representer_spec.rb +++ b/spec/lib/api/v3/queries/filters/query_filter_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/group_bys/query_group_by_representer_spec.rb b/spec/lib/api/v3/queries/group_bys/query_group_by_representer_spec.rb index 218729a621..ea0bb993b5 100644 --- a/spec/lib/api/v3/queries/group_bys/query_group_by_representer_spec.rb +++ b/spec/lib/api/v3/queries/group_bys/query_group_by_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/operators/query_operator_representer_spec.rb b/spec/lib/api/v3/queries/operators/query_operator_representer_spec.rb index 3f36c9c11a..cf02ce3be9 100644 --- a/spec/lib/api/v3/queries/operators/query_operator_representer_spec.rb +++ b/spec/lib/api/v3/queries/operators/query_operator_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/query_representer_parsing_spec.rb b/spec/lib/api/v3/queries/query_representer_parsing_spec.rb index 8c4b8dd03f..515359dfc2 100644 --- a/spec/lib/api/v3/queries/query_representer_parsing_spec.rb +++ b/spec/lib/api/v3/queries/query_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/query_representer_rendering_spec.rb b/spec/lib/api/v3/queries/query_representer_rendering_spec.rb index 141a3836df..97a7270d41 100644 --- a/spec/lib/api/v3/queries/query_representer_rendering_spec.rb +++ b/spec/lib/api/v3/queries/query_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer_spec.rb index 6780a0877a..9b7071e27e 100644 --- a/spec/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/all_principals_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/blocks_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/blocks_filter_dependency_representer_spec.rb index a23749262b..50382d4863 100644 --- a/spec/lib/api/v3/queries/schemas/blocks_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/blocks_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/boolean_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/boolean_filter_dependency_representer_spec.rb index 675d492a1d..55d4dafba7 100644 --- a/spec/lib/api/v3/queries/schemas/boolean_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/boolean_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/category_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/category_filter_dependency_representer_spec.rb index e0927aa4ee..13575d7c9f 100644 --- a/spec/lib/api/v3/queries/schemas/category_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/category_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer_spec.rb index 78cae32ebd..a3427b8385 100644 --- a/spec/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/custom_option_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/date_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/date_filter_dependency_representer_spec.rb index 1c28371f3a..87ec9b69ed 100644 --- a/spec/lib/api/v3/queries/schemas/date_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/date_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/date_time_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/date_time_filter_dependency_representer_spec.rb index 08c5c1fd28..c30e71a8ac 100644 --- a/spec/lib/api/v3/queries/schemas/date_time_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/date_time_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer_spec.rb index 6bc0bd3c80..d415812b0a 100644 --- a/spec/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/duplicated_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer_spec.rb index d80b248fd0..951aaa1612 100644 --- a/spec/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/duplicates_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/filter_dependency_representer_factory_spec.rb b/spec/lib/api/v3/queries/schemas/filter_dependency_representer_factory_spec.rb index 220cc604ff..b3c957b4f7 100644 --- a/spec/lib/api/v3/queries/schemas/filter_dependency_representer_factory_spec.rb +++ b/spec/lib/api/v3/queries/schemas/filter_dependency_representer_factory_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/float_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/float_filter_dependency_representer_spec.rb index 6002ea4c50..2d007cb092 100644 --- a/spec/lib/api/v3/queries/schemas/float_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/float_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/follows_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/follows_filter_dependency_representer_spec.rb index 81451888d0..863216f910 100644 --- a/spec/lib/api/v3/queries/schemas/follows_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/follows_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/group_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/group_filter_dependency_representer_spec.rb index 0e1600e602..a04603b6af 100644 --- a/spec/lib/api/v3/queries/schemas/group_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/group_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/id_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/id_filter_dependency_representer_spec.rb index 02c4610845..1628d4a962 100644 --- a/spec/lib/api/v3/queries/schemas/id_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/id_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/includes_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/includes_filter_dependency_representer_spec.rb index e64215f702..436a3a3690 100644 --- a/spec/lib/api/v3/queries/schemas/includes_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/includes_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/integer_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/integer_filter_dependency_representer_spec.rb index 36cdd70a2e..f6a89e5a49 100644 --- a/spec/lib/api/v3/queries/schemas/integer_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/integer_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/parent_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/parent_filter_dependency_representer_spec.rb index 3cff93c058..041aa04437 100644 --- a/spec/lib/api/v3/queries/schemas/parent_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/parent_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/partof_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/partof_filter_dependency_representer_spec.rb index 34cd1ed2da..01fa371270 100644 --- a/spec/lib/api/v3/queries/schemas/partof_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/partof_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/precedes_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/precedes_filter_dependency_representer_spec.rb index 740f92b876..216b2546a0 100644 --- a/spec/lib/api/v3/queries/schemas/precedes_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/precedes_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/priority_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/priority_filter_dependency_representer_spec.rb index 5b2a5b3d9f..3887206b7c 100644 --- a/spec/lib/api/v3/queries/schemas/priority_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/priority_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/project_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/project_filter_dependency_representer_spec.rb index 7aeb7392db..0a71a794d4 100644 --- a/spec/lib/api/v3/queries/schemas/project_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/project_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/query_filter_instance_schema_representer_spec.rb b/spec/lib/api/v3/queries/schemas/query_filter_instance_schema_representer_spec.rb index bc5837303c..08715db1e4 100644 --- a/spec/lib/api/v3/queries/schemas/query_filter_instance_schema_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/query_filter_instance_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/query_schema_representer_spec.rb b/spec/lib/api/v3/queries/schemas/query_schema_representer_spec.rb index 50178b68f1..d844701d71 100644 --- a/spec/lib/api/v3/queries/schemas/query_schema_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/query_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/relates_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/relates_filter_dependency_representer_spec.rb index 286bc8fe2c..d1e0d49cab 100644 --- a/spec/lib/api/v3/queries/schemas/relates_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/relates_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/required_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/required_filter_dependency_representer_spec.rb index 6a666874ef..cfbd790db0 100644 --- a/spec/lib/api/v3/queries/schemas/required_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/required_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/requires_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/requires_filter_dependency_representer_spec.rb index 6fafa70fc8..d897b287ea 100644 --- a/spec/lib/api/v3/queries/schemas/requires_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/requires_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/role_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/role_filter_dependency_representer_spec.rb index a8bd2c43d0..c20cadf36c 100644 --- a/spec/lib/api/v3/queries/schemas/role_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/role_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/status_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/status_filter_dependency_representer_spec.rb index ed103f04b0..38d8d68033 100644 --- a/spec/lib/api/v3/queries/schemas/status_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/status_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/subproject_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/subproject_filter_dependency_representer_spec.rb index 2402b6647f..00c16288db 100644 --- a/spec/lib/api/v3/queries/schemas/subproject_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/subproject_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/text_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/text_filter_dependency_representer_spec.rb index 181fa8a375..78eb67d178 100644 --- a/spec/lib/api/v3/queries/schemas/text_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/text_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/type_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/type_filter_dependency_representer_spec.rb index 2ee22f412d..1d6922fee8 100644 --- a/spec/lib/api/v3/queries/schemas/type_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/type_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/user_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/user_filter_dependency_representer_spec.rb index 21efe9f9a7..8a894444b4 100644 --- a/spec/lib/api/v3/queries/schemas/user_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/user_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/schemas/version_filter_dependency_representer_spec.rb b/spec/lib/api/v3/queries/schemas/version_filter_dependency_representer_spec.rb index 411000ad9b..c9d6e7db3c 100644 --- a/spec/lib/api/v3/queries/schemas/version_filter_dependency_representer_spec.rb +++ b/spec/lib/api/v3/queries/schemas/version_filter_dependency_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/queries/sort_bys/query_sort_by_representer_spec.rb b/spec/lib/api/v3/queries/sort_bys/query_sort_by_representer_spec.rb index 535eff474d..e7741f861f 100644 --- a/spec/lib/api/v3/queries/sort_bys/query_sort_by_representer_spec.rb +++ b/spec/lib/api/v3/queries/sort_bys/query_sort_by_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/relations/relation_collection_representer_spec.rb b/spec/lib/api/v3/relations/relation_collection_representer_spec.rb index d5cb8247a9..f1e71b52b0 100644 --- a/spec/lib/api/v3/relations/relation_collection_representer_spec.rb +++ b/spec/lib/api/v3/relations/relation_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/relations/relation_paginated_collection_representer_spec.rb b/spec/lib/api/v3/relations/relation_paginated_collection_representer_spec.rb index 662fa9b6f3..e573a74059 100644 --- a/spec/lib/api/v3/relations/relation_paginated_collection_representer_spec.rb +++ b/spec/lib/api/v3/relations/relation_paginated_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/relations/relation_representer_spec.rb b/spec/lib/api/v3/relations/relation_representer_spec.rb index 98404ec596..c7e6edb98b 100644 --- a/spec/lib/api/v3/relations/relation_representer_spec.rb +++ b/spec/lib/api/v3/relations/relation_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/repositories/revision_representer_spec.rb b/spec/lib/api/v3/repositories/revision_representer_spec.rb index 8a72320ebc..077bd408df 100644 --- a/spec/lib/api/v3/repositories/revision_representer_spec.rb +++ b/spec/lib/api/v3/repositories/revision_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/root_representer_spec.rb b/spec/lib/api/v3/root_representer_spec.rb index e91cb17ffa..666fde0976 100644 --- a/spec/lib/api/v3/root_representer_spec.rb +++ b/spec/lib/api/v3/root_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/statuses/status_collection_representer_spec.rb b/spec/lib/api/v3/statuses/status_collection_representer_spec.rb index 66d7c1552d..f5a3a85025 100644 --- a/spec/lib/api/v3/statuses/status_collection_representer_spec.rb +++ b/spec/lib/api/v3/statuses/status_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/statuses/status_representer_spec.rb b/spec/lib/api/v3/statuses/status_representer_spec.rb index d32402fe94..05afc7d2bc 100644 --- a/spec/lib/api/v3/statuses/status_representer_spec.rb +++ b/spec/lib/api/v3/statuses/status_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/api_v3_collection.rb b/spec/lib/api/v3/support/api_v3_collection.rb index d71b55c3ae..8019492fe9 100644 --- a/spec/lib/api/v3/support/api_v3_collection.rb +++ b/spec/lib/api/v3/support/api_v3_collection.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/api_v3_digest.rb b/spec/lib/api/v3/support/api_v3_digest.rb index 0d5958dbd7..8e9732b1dd 100644 --- a/spec/lib/api/v3/support/api_v3_digest.rb +++ b/spec/lib/api/v3/support/api_v3_digest.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/api_v3_filter_dependency.rb b/spec/lib/api/v3/support/api_v3_filter_dependency.rb index cfe169301d..d483d27a47 100644 --- a/spec/lib/api/v3/support/api_v3_filter_dependency.rb +++ b/spec/lib/api/v3/support/api_v3_filter_dependency.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/api_v3_formattable.rb b/spec/lib/api/v3/support/api_v3_formattable.rb index 2cdf310009..7669375688 100644 --- a/spec/lib/api/v3/support/api_v3_formattable.rb +++ b/spec/lib/api/v3/support/api_v3_formattable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/date_time_examples.rb b/spec/lib/api/v3/support/date_time_examples.rb index 20c031fb45..787e6ba5b4 100644 --- a/spec/lib/api/v3/support/date_time_examples.rb +++ b/spec/lib/api/v3/support/date_time_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/link_examples.rb b/spec/lib/api/v3/support/link_examples.rb index 8b95dcd5a6..ffc0b3fa0b 100644 --- a/spec/lib/api/v3/support/link_examples.rb +++ b/spec/lib/api/v3/support/link_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/property_examples.rb b/spec/lib/api/v3/support/property_examples.rb index 17b028813c..9e0ea9cff3 100644 --- a/spec/lib/api/v3/support/property_examples.rb +++ b/spec/lib/api/v3/support/property_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/support/schema_examples.rb b/spec/lib/api/v3/support/schema_examples.rb index 3ee888e9b7..3e77c0a11c 100644 --- a/spec/lib/api/v3/support/schema_examples.rb +++ b/spec/lib/api/v3/support/schema_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/types/type_representer_spec.rb b/spec/lib/api/v3/types/type_representer_spec.rb index f0233b98f3..465182f5e4 100644 --- a/spec/lib/api/v3/types/type_representer_spec.rb +++ b/spec/lib/api/v3/types/type_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/user_preferences/notification_setting_representer_rendering_spec.rb b/spec/lib/api/v3/user_preferences/notification_setting_representer_rendering_spec.rb index 8e6ab792ee..944f14e4de 100644 --- a/spec/lib/api/v3/user_preferences/notification_setting_representer_rendering_spec.rb +++ b/spec/lib/api/v3/user_preferences/notification_setting_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/user_preferences/user_preference_representer_parsing_spec.rb b/spec/lib/api/v3/user_preferences/user_preference_representer_parsing_spec.rb index fb14eeab1f..2039486a41 100644 --- a/spec/lib/api/v3/user_preferences/user_preference_representer_parsing_spec.rb +++ b/spec/lib/api/v3/user_preferences/user_preference_representer_parsing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/user_preferences/user_preference_representer_rendering_spec.rb b/spec/lib/api/v3/user_preferences/user_preference_representer_rendering_spec.rb index d965f17982..226bfb90fc 100644 --- a/spec/lib/api/v3/user_preferences/user_preference_representer_rendering_spec.rb +++ b/spec/lib/api/v3/user_preferences/user_preference_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/users/paginated_user_collection_representer_spec.rb b/spec/lib/api/v3/users/paginated_user_collection_representer_spec.rb index 247623fc11..74ac169331 100644 --- a/spec/lib/api/v3/users/paginated_user_collection_representer_spec.rb +++ b/spec/lib/api/v3/users/paginated_user_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/users/user_collection_representer_spec.rb b/spec/lib/api/v3/users/user_collection_representer_spec.rb index 200f9fc238..72e9ef1f16 100644 --- a/spec/lib/api/v3/users/user_collection_representer_spec.rb +++ b/spec/lib/api/v3/users/user_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/users/user_representer_spec.rb b/spec/lib/api/v3/users/user_representer_spec.rb index 4adbeae018..5948658ca7 100644 --- a/spec/lib/api/v3/users/user_representer_spec.rb +++ b/spec/lib/api/v3/users/user_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/utilities/custom_field_injector_spec.rb b/spec/lib/api/v3/utilities/custom_field_injector_spec.rb index 6128b3a01f..4411afd561 100644 --- a/spec/lib/api/v3/utilities/custom_field_injector_spec.rb +++ b/spec/lib/api/v3/utilities/custom_field_injector_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/utilities/date_time_formatter_spec.rb b/spec/lib/api/v3/utilities/date_time_formatter_spec.rb index 069369136c..fa48ec88e0 100644 --- a/spec/lib/api/v3/utilities/date_time_formatter_spec.rb +++ b/spec/lib/api/v3/utilities/date_time_formatter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/utilities/path_helper_spec.rb b/spec/lib/api/v3/utilities/path_helper_spec.rb index 07bb9b8117..7610a12808 100644 --- a/spec/lib/api/v3/utilities/path_helper_spec.rb +++ b/spec/lib/api/v3/utilities/path_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/utilities/resource_link_generator_spec.rb b/spec/lib/api/v3/utilities/resource_link_generator_spec.rb index 048e6b4fb5..0c9f20d7ff 100644 --- a/spec/lib/api/v3/utilities/resource_link_generator_spec.rb +++ b/spec/lib/api/v3/utilities/resource_link_generator_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/versions/schemas/version_schema_representer_spec.rb b/spec/lib/api/v3/versions/schemas/version_schema_representer_spec.rb index 88a06a6b38..e0e2b80515 100644 --- a/spec/lib/api/v3/versions/schemas/version_schema_representer_spec.rb +++ b/spec/lib/api/v3/versions/schemas/version_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/versions/version_collection_representer_spec.rb b/spec/lib/api/v3/versions/version_collection_representer_spec.rb index a9ee2be5d1..350cb76d4a 100644 --- a/spec/lib/api/v3/versions/version_collection_representer_spec.rb +++ b/spec/lib/api/v3/versions/version_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/versions/version_representer_rendering_spec.rb b/spec/lib/api/v3/versions/version_representer_rendering_spec.rb index 2e7112fb90..f7199c4a98 100644 --- a/spec/lib/api/v3/versions/version_representer_rendering_spec.rb +++ b/spec/lib/api/v3/versions/version_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/views/view_representer_rendering_spec.rb b/spec/lib/api/v3/views/view_representer_rendering_spec.rb index c5b1cce2e7..4a2e4100b9 100644 --- a/spec/lib/api/v3/views/view_representer_rendering_spec.rb +++ b/spec/lib/api/v3/views/view_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/wiki_pages/wiki_page_representer_rendering_spec.rb b/spec/lib/api/v3/wiki_pages/wiki_page_representer_rendering_spec.rb index 2147443dd0..a830204457 100644 --- a/spec/lib/api/v3/wiki_pages/wiki_page_representer_rendering_spec.rb +++ b/spec/lib/api/v3/wiki_pages/wiki_page_representer_rendering_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/create_form_representer_spec.rb b/spec/lib/api/v3/work_packages/create_form_representer_spec.rb index 141dfedc9a..8460c46744 100644 --- a/spec/lib/api/v3/work_packages/create_form_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/create_form_representer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/create_project_form_representer_spec.rb b/spec/lib/api/v3/work_packages/create_project_form_representer_spec.rb index 12222a73b3..977ab6941e 100644 --- a/spec/lib/api/v3/work_packages/create_project_form_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/create_project_form_representer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb b/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb index ad153fe4b3..374e2d9a73 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/cache_checksum_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/cost_eager_loading_integration_spec.rb b/spec/lib/api/v3/work_packages/eager_loading/cost_eager_loading_integration_spec.rb index d3c48e6314..382eb044cf 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/cost_eager_loading_integration_spec.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/cost_eager_loading_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/custom_actions_integration_spec.rb b/spec/lib/api/v3/work_packages/eager_loading/custom_actions_integration_spec.rb index b6bafe7a57..ba2303cd80 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/custom_actions_integration_spec.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/custom_actions_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/custom_value_integration_spec.rb b/spec/lib/api/v3/work_packages/eager_loading/custom_value_integration_spec.rb index b692cf53a6..1089a91406 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/custom_value_integration_spec.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/custom_value_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/eager_loading_mock_wrapper.rb b/spec/lib/api/v3/work_packages/eager_loading/eager_loading_mock_wrapper.rb index 619dff979a..0e5edba2d4 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/eager_loading_mock_wrapper.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/eager_loading_mock_wrapper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/eager_loading/project_integration_spec.rb b/spec/lib/api/v3/work_packages/eager_loading/project_integration_spec.rb index f4670a7a48..8f616b31f7 100644 --- a/spec/lib/api/v3/work_packages/eager_loading/project_integration_spec.rb +++ b/spec/lib/api/v3/work_packages/eager_loading/project_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/form_representer_spec.rb b/spec/lib/api/v3/work_packages/form_representer_spec.rb index 8d5ccd9556..d40c20b1e6 100644 --- a/spec/lib/api/v3/work_packages/form_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/form_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/schema/specific_work_package_schema_spec.rb b/spec/lib/api/v3/work_packages/schema/specific_work_package_schema_spec.rb index a11bd80da8..a6c6a6ccb7 100644 --- a/spec/lib/api/v3/work_packages/schema/specific_work_package_schema_spec.rb +++ b/spec/lib/api/v3/work_packages/schema/specific_work_package_schema_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/schema/typed_work_package_schema_spec.rb b/spec/lib/api/v3/work_packages/schema/typed_work_package_schema_spec.rb index e2b74ca6a2..345df617f9 100644 --- a/spec/lib/api/v3/work_packages/schema/typed_work_package_schema_spec.rb +++ b/spec/lib/api/v3/work_packages/schema/typed_work_package_schema_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/schema/work_package_schema_representer_spec.rb b/spec/lib/api/v3/work_packages/schema/work_package_schema_representer_spec.rb index 3735806739..35a9d4ba25 100644 --- a/spec/lib/api/v3/work_packages/schema/work_package_schema_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/schema/work_package_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_representer_spec.rb b/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_representer_spec.rb index 0b4e092932..07f36948f9 100644 --- a/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_spec.rb b/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_spec.rb index cd62a57625..76f4027ea0 100644 --- a/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_spec.rb +++ b/spec/lib/api/v3/work_packages/schema/work_package_sums_schema_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/work_package_collection_representer_spec.rb b/spec/lib/api/v3/work_packages/work_package_collection_representer_spec.rb index 166f2383b8..8195e985f8 100644 --- a/spec/lib/api/v3/work_packages/work_package_collection_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/work_package_collection_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/work_package_payload_representer_spec.rb b/spec/lib/api/v3/work_packages/work_package_payload_representer_spec.rb index 2889fc34f4..8c421a7933 100644 --- a/spec/lib/api/v3/work_packages/work_package_payload_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/work_package_payload_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/work_package_representer_spec.rb b/spec/lib/api/v3/work_packages/work_package_representer_spec.rb index e4e0bacf60..5ff32d31d2 100644 --- a/spec/lib/api/v3/work_packages/work_package_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/work_package_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/api/v3/work_packages/work_package_sums_representer_spec.rb b/spec/lib/api/v3/work_packages/work_package_sums_representer_spec.rb index f79540234d..5bce3306e1 100644 --- a/spec/lib/api/v3/work_packages/work_package_sums_representer_spec.rb +++ b/spec/lib/api/v3/work_packages/work_package_sums_representer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/custom_field_form_builder_spec.rb b/spec/lib/custom_field_form_builder_spec.rb index 54c05e7c4a..5bd764dad1 100644 --- a/spec/lib/custom_field_form_builder_spec.rb +++ b/spec/lib/custom_field_form_builder_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/database_spec.rb b/spec/lib/database_spec.rb index 710c1c0254..19ca9f34b4 100644 --- a/spec/lib/database_spec.rb +++ b/spec/lib/database_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/deprecated_alias_spec.rb b/spec/lib/deprecated_alias_spec.rb index 1bb9a6855a..9ddc0bd25b 100644 --- a/spec/lib/deprecated_alias_spec.rb +++ b/spec/lib/deprecated_alias_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/i18n/pluralization_spec.rb b/spec/lib/i18n/pluralization_spec.rb index 1028834fe7..f7ec346847 100644 --- a/spec/lib/i18n/pluralization_spec.rb +++ b/spec/lib/i18n/pluralization_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/journal_formatter/attachment_spec.rb b/spec/lib/journal_formatter/attachment_spec.rb index 4924da5499..24bdddedab 100644 --- a/spec/lib/journal_formatter/attachment_spec.rb +++ b/spec/lib/journal_formatter/attachment_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/journal_formatter/custom_field_spec.rb b/spec/lib/journal_formatter/custom_field_spec.rb index 9406f65391..c42d2df06c 100644 --- a/spec/lib/journal_formatter/custom_field_spec.rb +++ b/spec/lib/journal_formatter/custom_field_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/journal_formatter/diff_spec.rb b/spec/lib/journal_formatter/diff_spec.rb index c0179f7364..5d2f140b30 100644 --- a/spec/lib/journal_formatter/diff_spec.rb +++ b/spec/lib/journal_formatter/diff_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/journal_formatter/schedule_manually_spec.rb b/spec/lib/journal_formatter/schedule_manually_spec.rb index dd63e89682..8e486b6c09 100644 --- a/spec/lib/journal_formatter/schedule_manually_spec.rb +++ b/spec/lib/journal_formatter/schedule_manually_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/access_control/permission_spec.rb b/spec/lib/open_project/access_control/permission_spec.rb index 5790f6fad3..b73b9f3d63 100644 --- a/spec/lib/open_project/access_control/permission_spec.rb +++ b/spec/lib/open_project/access_control/permission_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/access_control_spec.rb b/spec/lib/open_project/access_control_spec.rb index b14ebb821b..4c52c988e9 100644 --- a/spec/lib/open_project/access_control_spec.rb +++ b/spec/lib/open_project/access_control_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/authentication/strategies/warden/global_basic_auth_spec.rb b/spec/lib/open_project/authentication/strategies/warden/global_basic_auth_spec.rb index 8aef144d77..ae88713c58 100644 --- a/spec/lib/open_project/authentication/strategies/warden/global_basic_auth_spec.rb +++ b/spec/lib/open_project/authentication/strategies/warden/global_basic_auth_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/changed_by_system_spec.rb b/spec/lib/open_project/changed_by_system_spec.rb index c672f553dd..f427829e3b 100644 --- a/spec/lib/open_project/changed_by_system_spec.rb +++ b/spec/lib/open_project/changed_by_system_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/configuration/helpers_spec.rb b/spec/lib/open_project/configuration/helpers_spec.rb index 9d799b5a9a..491e117d1a 100644 --- a/spec/lib/open_project/configuration/helpers_spec.rb +++ b/spec/lib/open_project/configuration/helpers_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/configuration_spec.rb b/spec/lib/open_project/configuration_spec.rb index 32df4e0393..40879417f2 100644 --- a/spec/lib/open_project/configuration_spec.rb +++ b/spec/lib/open_project/configuration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/content_type_detector_spec.rb b/spec/lib/open_project/content_type_detector_spec.rb index b0cc16bc7e..be1549c5e3 100644 --- a/spec/lib/open_project/content_type_detector_spec.rb +++ b/spec/lib/open_project/content_type_detector_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/enterprise_spec.rb b/spec/lib/open_project/enterprise_spec.rb index f7bd32754f..8ce9f2a6eb 100644 --- a/spec/lib/open_project/enterprise_spec.rb +++ b/spec/lib/open_project/enterprise_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/file_command_content_type_detector_spec.rb b/spec/lib/open_project/file_command_content_type_detector_spec.rb index 8cfdb5c44b..7ea67d55b9 100644 --- a/spec/lib/open_project/file_command_content_type_detector_spec.rb +++ b/spec/lib/open_project/file_command_content_type_detector_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/files_spec.rb b/spec/lib/open_project/files_spec.rb index ddb91fcfd9..8814f31592 100644 --- a/spec/lib/open_project/files_spec.rb +++ b/spec/lib/open_project/files_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/footer_spec.rb b/spec/lib/open_project/footer_spec.rb index 5636d55a12..e7a0a014a0 100644 --- a/spec/lib/open_project/footer_spec.rb +++ b/spec/lib/open_project/footer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/form_tag_helper_spec.rb b/spec/lib/open_project/form_tag_helper_spec.rb index d69c4035a8..fe31a67d09 100644 --- a/spec/lib/open_project/form_tag_helper_spec.rb +++ b/spec/lib/open_project/form_tag_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/hook_spec.rb b/spec/lib/open_project/hook_spec.rb index f5ce833638..d33b3a3dbe 100644 --- a/spec/lib/open_project/hook_spec.rb +++ b/spec/lib/open_project/hook_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/logging/log_extender_spec.rb b/spec/lib/open_project/logging/log_extender_spec.rb index 480e51dd43..86323a7cbb 100644 --- a/spec/lib/open_project/logging/log_extender_spec.rb +++ b/spec/lib/open_project/logging/log_extender_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/mime_type_spec.rb b/spec/lib/open_project/mime_type_spec.rb index 701ef01011..8901c21c69 100644 --- a/spec/lib/open_project/mime_type_spec.rb +++ b/spec/lib/open_project/mime_type_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/notifications_spec.rb b/spec/lib/open_project/notifications_spec.rb index ff3fa27fc7..8ea3e29e93 100644 --- a/spec/lib/open_project/notifications_spec.rb +++ b/spec/lib/open_project/notifications_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/object_linking_spec.rb b/spec/lib/open_project/object_linking_spec.rb index 74bdc402ff..b0668a9062 100644 --- a/spec/lib/open_project/object_linking_spec.rb +++ b/spec/lib/open_project/object_linking_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/omni_auth/authorization_spec.rb b/spec/lib/open_project/omni_auth/authorization_spec.rb index d0b56207cc..516302b595 100644 --- a/spec/lib/open_project/omni_auth/authorization_spec.rb +++ b/spec/lib/open_project/omni_auth/authorization_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/passwords_spec.rb b/spec/lib/open_project/passwords_spec.rb index 8828053e7f..57364cfbeb 100644 --- a/spec/lib/open_project/passwords_spec.rb +++ b/spec/lib/open_project/passwords_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/plugins/acts_as_op_engine_spec.rb b/spec/lib/open_project/plugins/acts_as_op_engine_spec.rb index 8d7cc0243d..ec0546da9b 100644 --- a/spec/lib/open_project/plugins/acts_as_op_engine_spec.rb +++ b/spec/lib/open_project/plugins/acts_as_op_engine_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/plugins/module_handler_spec.rb b/spec/lib/open_project/plugins/module_handler_spec.rb index da99d664df..24a47dc596 100644 --- a/spec/lib/open_project/plugins/module_handler_spec.rb +++ b/spec/lib/open_project/plugins/module_handler_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/scm/adapters/git_adapter_spec.rb b/spec/lib/open_project/scm/adapters/git_adapter_spec.rb index 1f95b0dbb5..c760f2befe 100644 --- a/spec/lib/open_project/scm/adapters/git_adapter_spec.rb +++ b/spec/lib/open_project/scm/adapters/git_adapter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/scm/adapters/subversion_adapter_spec.rb b/spec/lib/open_project/scm/adapters/subversion_adapter_spec.rb index acd8f2f38a..b22ffd02a2 100644 --- a/spec/lib/open_project/scm/adapters/subversion_adapter_spec.rb +++ b/spec/lib/open_project/scm/adapters/subversion_adapter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/scm/manager_spec.rb b/spec/lib/open_project/scm/manager_spec.rb index 9dc0d330b6..62d293fc05 100644 --- a/spec/lib/open_project/scm/manager_spec.rb +++ b/spec/lib/open_project/scm/manager_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/static_routing_spec.rb b/spec/lib/open_project/static_routing_spec.rb index 7bd29c118e..a3148a9117 100644 --- a/spec/lib/open_project/static_routing_spec.rb +++ b/spec/lib/open_project/static_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/storage_spec.rb b/spec/lib/open_project/storage_spec.rb index d913bca8d9..867b8e3152 100644 --- a/spec/lib/open_project/storage_spec.rb +++ b/spec/lib/open_project/storage_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/attribute_macros_spec.rb b/spec/lib/open_project/text_formatting/markdown/attribute_macros_spec.rb index f5f0c2bd42..2d05dcc64c 100644 --- a/spec/lib/open_project/text_formatting/markdown/attribute_macros_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/attribute_macros_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/blockquote_spec.rb b/spec/lib/open_project/text_formatting/markdown/blockquote_spec.rb index 6eb1a23bec..a1b010564a 100644 --- a/spec/lib/open_project/text_formatting/markdown/blockquote_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/blockquote_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/child_pages_macro_spec.rb b/spec/lib/open_project/text_formatting/markdown/child_pages_macro_spec.rb index 80455f3aab..aea784f18c 100644 --- a/spec/lib/open_project/text_formatting/markdown/child_pages_macro_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/child_pages_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/code_spec.rb b/spec/lib/open_project/text_formatting/markdown/code_spec.rb index 797fc8b1c2..49afc7c8b2 100644 --- a/spec/lib/open_project/text_formatting/markdown/code_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/code_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/embedded_table_macro_spec.rb b/spec/lib/open_project/text_formatting/markdown/embedded_table_macro_spec.rb index 3d8dece31d..c6d1eac7d4 100644 --- a/spec/lib/open_project/text_formatting/markdown/embedded_table_macro_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/embedded_table_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/headings_spec.rb b/spec/lib/open_project/text_formatting/markdown/headings_spec.rb index f14b28384a..54e6022525 100644 --- a/spec/lib/open_project/text_formatting/markdown/headings_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/headings_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/images_spec.rb b/spec/lib/open_project/text_formatting/markdown/images_spec.rb index 4cc538d3a2..389806d836 100644 --- a/spec/lib/open_project/text_formatting/markdown/images_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/images_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/in_tool_links_spec.rb b/spec/lib/open_project/text_formatting/markdown/in_tool_links_spec.rb index b9009f3a80..dbf9894587 100644 --- a/spec/lib/open_project/text_formatting/markdown/in_tool_links_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/in_tool_links_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/include_wiki_page_macro_spec.rb b/spec/lib/open_project/text_formatting/markdown/include_wiki_page_macro_spec.rb index ab2b01e5b7..ca5b0b7868 100644 --- a/spec/lib/open_project/text_formatting/markdown/include_wiki_page_macro_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/include_wiki_page_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/lists_spec.rb b/spec/lib/open_project/text_formatting/markdown/lists_spec.rb index 5b7f341b08..04fb98b08b 100644 --- a/spec/lib/open_project/text_formatting/markdown/lists_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/lists_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/markdown_formatting_spec.rb b/spec/lib/open_project/text_formatting/markdown/markdown_formatting_spec.rb index 75e93da24c..851cf6037f 100644 --- a/spec/lib/open_project/text_formatting/markdown/markdown_formatting_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/markdown_formatting_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/mentions_spec.rb b/spec/lib/open_project/text_formatting/markdown/mentions_spec.rb index 3efa4c7827..75443a8aea 100644 --- a/spec/lib/open_project/text_formatting/markdown/mentions_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/mentions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/pandoc_wrapper_spec.rb b/spec/lib/open_project/text_formatting/markdown/pandoc_wrapper_spec.rb index fe7aca24d0..738f078855 100644 --- a/spec/lib/open_project/text_formatting/markdown/pandoc_wrapper_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/pandoc_wrapper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/paragraphs_spec.rb b/spec/lib/open_project/text_formatting/markdown/paragraphs_spec.rb index 57262a50cd..ba057ce147 100644 --- a/spec/lib/open_project/text_formatting/markdown/paragraphs_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/paragraphs_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/setting_variable_spec.rb b/spec/lib/open_project/text_formatting/markdown/setting_variable_spec.rb index 7cba33aa52..eed532ef86 100644 --- a/spec/lib/open_project/text_formatting/markdown/setting_variable_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/setting_variable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/tables_spec.rb b/spec/lib/open_project/text_formatting/markdown/tables_spec.rb index ecef947c7b..9b937338b2 100644 --- a/spec/lib/open_project/text_formatting/markdown/tables_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/tables_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/toc_macro_spec.rb b/spec/lib/open_project/text_formatting/markdown/toc_macro_spec.rb index c54de01de2..63f681221d 100644 --- a/spec/lib/open_project/text_formatting/markdown/toc_macro_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/toc_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/user_provided_links_spec.rb b/spec/lib/open_project/text_formatting/markdown/user_provided_links_spec.rb index 297cf36539..a9a5d95939 100644 --- a/spec/lib/open_project/text_formatting/markdown/user_provided_links_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/user_provided_links_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/markdown/work_package_buttons_macro_spec.rb b/spec/lib/open_project/text_formatting/markdown/work_package_buttons_macro_spec.rb index 295107f973..b3cc00bf60 100644 --- a/spec/lib/open_project/text_formatting/markdown/work_package_buttons_macro_spec.rb +++ b/spec/lib/open_project/text_formatting/markdown/work_package_buttons_macro_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/plain_spec.rb b/spec/lib/open_project/text_formatting/plain_spec.rb index ee5ecc08f1..be35cc8438 100644 --- a/spec/lib/open_project/text_formatting/plain_spec.rb +++ b/spec/lib/open_project/text_formatting/plain_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/open_project/text_formatting/text_formatting_spec.rb b/spec/lib/open_project/text_formatting/text_formatting_spec.rb index 13aa48247b..a8fb7a23db 100644 --- a/spec/lib/open_project/text_formatting/text_formatting_spec.rb +++ b/spec/lib/open_project/text_formatting/text_formatting_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/redmine/i18n_spec.rb b/spec/lib/redmine/i18n_spec.rb index 77dea72ef1..bff0841c79 100644 --- a/spec/lib/redmine/i18n_spec.rb +++ b/spec/lib/redmine/i18n_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/redmine/unified_diff_spec.rb b/spec/lib/redmine/unified_diff_spec.rb index d18a42339d..73bd214667 100644 --- a/spec/lib/redmine/unified_diff_spec.rb +++ b/spec/lib/redmine/unified_diff_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/reminders/due_issues_reminder_spec.rb b/spec/lib/reminders/due_issues_reminder_spec.rb index cee3a69f18..1808c8068d 100644 --- a/spec/lib/reminders/due_issues_reminder_spec.rb +++ b/spec/lib/reminders/due_issues_reminder_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/representable_spec.rb b/spec/lib/representable_spec.rb index ae3023399f..bcdb266946 100644 --- a/spec/lib/representable_spec.rb +++ b/spec/lib/representable_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/lib/tabular_form_builder_spec.rb b/spec/lib/tabular_form_builder_spec.rb index 0cfa3edc1d..fea423467a 100644 --- a/spec/lib/tabular_form_builder_spec.rb +++ b/spec/lib/tabular_form_builder_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/mailers/announcement_mailer_spec.rb b/spec/mailers/announcement_mailer_spec.rb index 2be0a55897..d2bcba8189 100644 --- a/spec/mailers/announcement_mailer_spec.rb +++ b/spec/mailers/announcement_mailer_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/mailers/digest_mailer_spec.rb b/spec/mailers/digest_mailer_spec.rb index 208f07a35c..86de1bfc00 100644 --- a/spec/mailers/digest_mailer_spec.rb +++ b/spec/mailers/digest_mailer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/mailers/member_mailer_spec.rb b/spec/mailers/member_mailer_spec.rb index 02785d5396..21a5fb27b1 100644 --- a/spec/mailers/member_mailer_spec.rb +++ b/spec/mailers/member_mailer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/mailers/user_mailer_spec.rb b/spec/mailers/user_mailer_spec.rb index 31555e8839..ca15eeb660 100644 --- a/spec/mailers/user_mailer_spec.rb +++ b/spec/mailers/user_mailer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/mailers/work_package_mailer_spec.rb b/spec/mailers/work_package_mailer_spec.rb index 93d9328b7a..c684af8697 100644 --- a/spec/mailers/work_package_mailer_spec.rb +++ b/spec/mailers/work_package_mailer_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/actions/scopes/default_spec.rb b/spec/models/actions/scopes/default_spec.rb index 7273f0a42f..1025d81e14 100644 --- a/spec/models/actions/scopes/default_spec.rb +++ b/spec/models/actions/scopes/default_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/activities/fetcher_integration_spec.rb b/spec/models/activities/fetcher_integration_spec.rb index f2ddddaf57..89cf11973b 100644 --- a/spec/models/activities/fetcher_integration_spec.rb +++ b/spec/models/activities/fetcher_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/activities/work_package_activity_provider_spec.rb b/spec/models/activities/work_package_activity_provider_spec.rb index c25dcee473..4b677948aa 100644 --- a/spec/models/activities/work_package_activity_provider_spec.rb +++ b/spec/models/activities/work_package_activity_provider_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/attachment_spec.rb b/spec/models/attachment_spec.rb index 82f7041d47..029504dbda 100644 --- a/spec/models/attachment_spec.rb +++ b/spec/models/attachment_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/attribute_help_text/work_package_spec.rb b/spec/models/attribute_help_text/work_package_spec.rb index 0d1eb87f58..d0977e50c8 100644 --- a/spec/models/attribute_help_text/work_package_spec.rb +++ b/spec/models/attribute_help_text/work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/capabilities/scopes/default_spec.rb b/spec/models/capabilities/scopes/default_spec.rb index 68e083f2a5..4917f2a78b 100644 --- a/spec/models/capabilities/scopes/default_spec.rb +++ b/spec/models/capabilities/scopes/default_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/category_spec.rb b/spec/models/category_spec.rb index 9fdc898d9d..227dd5c92c 100644 --- a/spec/models/category_spec.rb +++ b/spec/models/category_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/changeset_spec.rb b/spec/models/changeset_spec.rb index 944532d120..1b23c3b2b7 100644 --- a/spec/models/changeset_spec.rb +++ b/spec/models/changeset_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/color_spec.rb b/spec/models/color_spec.rb index c3d1e94257..2dc24eceec 100644 --- a/spec/models/color_spec.rb +++ b/spec/models/color_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_action_spec.rb b/spec/models/custom_action_spec.rb index 7276b41437..fbc7af6d4b 100644 --- a/spec/models/custom_action_spec.rb +++ b/spec/models/custom_action_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/assigned_to_spec.rb b/spec/models/custom_actions/actions/assigned_to_spec.rb index 284f4d3068..3d07b625d9 100644 --- a/spec/models/custom_actions/actions/assigned_to_spec.rb +++ b/spec/models/custom_actions/actions/assigned_to_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/custom_field_spec.rb b/spec/models/custom_actions/actions/custom_field_spec.rb index d1af262c9c..c92c9a323b 100644 --- a/spec/models/custom_actions/actions/custom_field_spec.rb +++ b/spec/models/custom_actions/actions/custom_field_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/date_spec.rb b/spec/models/custom_actions/actions/date_spec.rb index 25da427f99..9b19ec25e4 100644 --- a/spec/models/custom_actions/actions/date_spec.rb +++ b/spec/models/custom_actions/actions/date_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/done_ratio_spec.rb b/spec/models/custom_actions/actions/done_ratio_spec.rb index b8cfd59196..72e9d6bd90 100644 --- a/spec/models/custom_actions/actions/done_ratio_spec.rb +++ b/spec/models/custom_actions/actions/done_ratio_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/due_date_spec.rb b/spec/models/custom_actions/actions/due_date_spec.rb index 4ab3788115..f701a19509 100644 --- a/spec/models/custom_actions/actions/due_date_spec.rb +++ b/spec/models/custom_actions/actions/due_date_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/estimated_hours_spec.rb b/spec/models/custom_actions/actions/estimated_hours_spec.rb index 3f4283692c..e740f0ef44 100644 --- a/spec/models/custom_actions/actions/estimated_hours_spec.rb +++ b/spec/models/custom_actions/actions/estimated_hours_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/notify_spec.rb b/spec/models/custom_actions/actions/notify_spec.rb index 6ac04da1aa..1cfeabe491 100644 --- a/spec/models/custom_actions/actions/notify_spec.rb +++ b/spec/models/custom_actions/actions/notify_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/priority_spec.rb b/spec/models/custom_actions/actions/priority_spec.rb index 627e1c2849..f7a9385e0f 100644 --- a/spec/models/custom_actions/actions/priority_spec.rb +++ b/spec/models/custom_actions/actions/priority_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/project_spec.rb b/spec/models/custom_actions/actions/project_spec.rb index e116e73fd8..84e2349c2a 100644 --- a/spec/models/custom_actions/actions/project_spec.rb +++ b/spec/models/custom_actions/actions/project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/responsible_spec.rb b/spec/models/custom_actions/actions/responsible_spec.rb index 7b47fc87cc..ef9a1c1807 100644 --- a/spec/models/custom_actions/actions/responsible_spec.rb +++ b/spec/models/custom_actions/actions/responsible_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/start_date_spec.rb b/spec/models/custom_actions/actions/start_date_spec.rb index 15fd33e357..df79837073 100644 --- a/spec/models/custom_actions/actions/start_date_spec.rb +++ b/spec/models/custom_actions/actions/start_date_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/status_spec.rb b/spec/models/custom_actions/actions/status_spec.rb index 93b6a1f7b5..77872f180b 100644 --- a/spec/models/custom_actions/actions/status_spec.rb +++ b/spec/models/custom_actions/actions/status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/actions/type_spec.rb b/spec/models/custom_actions/actions/type_spec.rb index 62c60bd768..d36ad7dfb9 100644 --- a/spec/models/custom_actions/actions/type_spec.rb +++ b/spec/models/custom_actions/actions/type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/conditions/project_spec.rb b/spec/models/custom_actions/conditions/project_spec.rb index 93c06ec243..acb6c023f5 100644 --- a/spec/models/custom_actions/conditions/project_spec.rb +++ b/spec/models/custom_actions/conditions/project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/conditions/role_spec.rb b/spec/models/custom_actions/conditions/role_spec.rb index 11a6568e72..ca0e719481 100644 --- a/spec/models/custom_actions/conditions/role_spec.rb +++ b/spec/models/custom_actions/conditions/role_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/conditions/status_spec.rb b/spec/models/custom_actions/conditions/status_spec.rb index 00bc34428d..7a972ceef2 100644 --- a/spec/models/custom_actions/conditions/status_spec.rb +++ b/spec/models/custom_actions/conditions/status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/conditions/type_spec.rb b/spec/models/custom_actions/conditions/type_spec.rb index df65a3ffda..4e54c974b8 100644 --- a/spec/models/custom_actions/conditions/type_spec.rb +++ b/spec/models/custom_actions/conditions/type_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_actions/shared_expectations.rb b/spec/models/custom_actions/shared_expectations.rb index 2d3e7d47ea..9a375a0ebd 100644 --- a/spec/models/custom_actions/shared_expectations.rb +++ b/spec/models/custom_actions/shared_expectations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_field_spec.rb b/spec/models/custom_field_spec.rb index cec9bbefdd..62731d517f 100644 --- a/spec/models/custom_field_spec.rb +++ b/spec/models/custom_field_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_option_spec.rb b/spec/models/custom_option_spec.rb index 9c4e4aebb9..d9d7edc81e 100644 --- a/spec/models/custom_option_spec.rb +++ b/spec/models/custom_option_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/bool_strategy_spec.rb b/spec/models/custom_value/bool_strategy_spec.rb index 8d5544716f..ea308c1983 100644 --- a/spec/models/custom_value/bool_strategy_spec.rb +++ b/spec/models/custom_value/bool_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/date_strategy_spec.rb b/spec/models/custom_value/date_strategy_spec.rb index 429bbc3fd7..8f0655f237 100644 --- a/spec/models/custom_value/date_strategy_spec.rb +++ b/spec/models/custom_value/date_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/float_strategy_spec.rb b/spec/models/custom_value/float_strategy_spec.rb index ae1c8ba4c3..93d5453e97 100644 --- a/spec/models/custom_value/float_strategy_spec.rb +++ b/spec/models/custom_value/float_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/format_strategy_spec.rb b/spec/models/custom_value/format_strategy_spec.rb index 06d7f2beb0..19cce8ad8a 100644 --- a/spec/models/custom_value/format_strategy_spec.rb +++ b/spec/models/custom_value/format_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/int_strategy_spec.rb b/spec/models/custom_value/int_strategy_spec.rb index 364e709b66..f2cdee3331 100644 --- a/spec/models/custom_value/int_strategy_spec.rb +++ b/spec/models/custom_value/int_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/list_strategy_integration_spec.rb b/spec/models/custom_value/list_strategy_integration_spec.rb index 6695959d05..05a09ea3db 100644 --- a/spec/models/custom_value/list_strategy_integration_spec.rb +++ b/spec/models/custom_value/list_strategy_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/list_strategy_spec.rb b/spec/models/custom_value/list_strategy_spec.rb index e7eabfcaba..45cc6bd141 100644 --- a/spec/models/custom_value/list_strategy_spec.rb +++ b/spec/models/custom_value/list_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/string_strategy_spec.rb b/spec/models/custom_value/string_strategy_spec.rb index b86d661973..e5be2de66e 100644 --- a/spec/models/custom_value/string_strategy_spec.rb +++ b/spec/models/custom_value/string_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/user_strategy_spec.rb b/spec/models/custom_value/user_strategy_spec.rb index 9f3efb82fd..bb4978ae59 100644 --- a/spec/models/custom_value/user_strategy_spec.rb +++ b/spec/models/custom_value/user_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value/version_strategy_spec.rb b/spec/models/custom_value/version_strategy_spec.rb index 830c4c624a..65058e93a7 100644 --- a/spec/models/custom_value/version_strategy_spec.rb +++ b/spec/models/custom_value/version_strategy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/custom_value_spec.rb b/spec/models/custom_value_spec.rb index d3cbd18500..6c06a2a2e1 100644 --- a/spec/models/custom_value_spec.rb +++ b/spec/models/custom_value_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/deleted_user_spec.rb b/spec/models/deleted_user_spec.rb index 64eb5791b0..c526204972 100644 --- a/spec/models/deleted_user_spec.rb +++ b/spec/models/deleted_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/enabled_module_spec.rb b/spec/models/enabled_module_spec.rb index bf11a3f0c3..bd5ac0b7ac 100644 --- a/spec/models/enabled_module_spec.rb +++ b/spec/models/enabled_module_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/forum_spec.rb b/spec/models/forum_spec.rb index f78104a33f..09f6b186bb 100644 --- a/spec/models/forum_spec.rb +++ b/spec/models/forum_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/global_role_spec.rb b/spec/models/global_role_spec.rb index 27dc118d6a..ca434c5ff8 100644 --- a/spec/models/global_role_spec.rb +++ b/spec/models/global_role_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/group_performance_spec.rb b/spec/models/group_performance_spec.rb index 32615c1a0c..574ad39ce0 100644 --- a/spec/models/group_performance_spec.rb +++ b/spec/models/group_performance_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/group_spec.rb b/spec/models/group_spec.rb index 239fc939b0..e86c3fa7bc 100644 --- a/spec/models/group_spec.rb +++ b/spec/models/group_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/issue_priority_spec.rb b/spec/models/issue_priority_spec.rb index 0d2bea40a9..a178796623 100644 --- a/spec/models/issue_priority_spec.rb +++ b/spec/models/issue_priority_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/journal/notification_configuration_spec.rb b/spec/models/journal/notification_configuration_spec.rb index 30dcc9e964..1752f0b5bb 100644 --- a/spec/models/journal/notification_configuration_spec.rb +++ b/spec/models/journal/notification_configuration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/journal_spec.rb b/spec/models/journal_spec.rb index a93ad00ab1..ea3cf39075 100644 --- a/spec/models/journal_spec.rb +++ b/spec/models/journal_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/ldap_auth_source_spec.rb b/spec/models/ldap_auth_source_spec.rb index 28db2e8b35..c541db3eb5 100644 --- a/spec/models/ldap_auth_source_spec.rb +++ b/spec/models/ldap_auth_source_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/mail_handler_spec.rb b/spec/models/mail_handler_spec.rb index ed0316c664..18f90855d3 100644 --- a/spec/models/mail_handler_spec.rb +++ b/spec/models/mail_handler_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/member_spec.rb b/spec/models/member_spec.rb index 4a5bf40878..9f9fa6fd6f 100644 --- a/spec/models/member_spec.rb +++ b/spec/models/member_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/members/roles_diff_spec.rb b/spec/models/members/roles_diff_spec.rb index eda98b975f..d33e00cd07 100644 --- a/spec/models/members/roles_diff_spec.rb +++ b/spec/models/members/roles_diff_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/members/scopes/not_locked_spec.rb b/spec/models/members/scopes/not_locked_spec.rb index 1ae7ed3a75..722f1efe41 100644 --- a/spec/models/members/scopes/not_locked_spec.rb +++ b/spec/models/members/scopes/not_locked_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/menu_item_spec.rb b/spec/models/menu_item_spec.rb index fed6403f50..5fce1a924d 100644 --- a/spec/models/menu_item_spec.rb +++ b/spec/models/menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/menu_items/wiki_menu_item_spec.rb b/spec/models/menu_items/wiki_menu_item_spec.rb index d93f67d6ce..4bea501882 100644 --- a/spec/models/menu_items/wiki_menu_item_spec.rb +++ b/spec/models/menu_items/wiki_menu_item_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/messages/acts_as_journalized_spec.rb b/spec/models/messages/acts_as_journalized_spec.rb index e755d84497..a8f352cc02 100644 --- a/spec/models/messages/acts_as_journalized_spec.rb +++ b/spec/models/messages/acts_as_journalized_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/messages_spec.rb b/spec/models/messages_spec.rb index a7aa6d2ab3..1abf4613ca 100644 --- a/spec/models/messages_spec.rb +++ b/spec/models/messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/news_spec.rb b/spec/models/news_spec.rb index bf225337e1..d74872e050 100644 --- a/spec/models/news_spec.rb +++ b/spec/models/news_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/notification_settings/scopes/applicable_spec.rb b/spec/models/notification_settings/scopes/applicable_spec.rb index 191d52b9c2..8f8b7e87ec 100644 --- a/spec/models/notification_settings/scopes/applicable_spec.rb +++ b/spec/models/notification_settings/scopes/applicable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/notification_spec.rb b/spec/models/notification_spec.rb index 2885849efc..6df385fb6b 100644 --- a/spec/models/notification_spec.rb +++ b/spec/models/notification_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/notifications/scopes/reminder_mail_unsent_spec.rb b/spec/models/notifications/scopes/reminder_mail_unsent_spec.rb index 8f8795b9c8..ecb56538e6 100644 --- a/spec/models/notifications/scopes/reminder_mail_unsent_spec.rb +++ b/spec/models/notifications/scopes/reminder_mail_unsent_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/notifications/scopes/unsent_reminders_before_spec.rb b/spec/models/notifications/scopes/unsent_reminders_before_spec.rb index 58e43c9a06..aa5faef1db 100644 --- a/spec/models/notifications/scopes/unsent_reminders_before_spec.rb +++ b/spec/models/notifications/scopes/unsent_reminders_before_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/notifications/scopes/visible_spec.rb b/spec/models/notifications/scopes/visible_spec.rb index 12c625d485..0077290d3d 100644 --- a/spec/models/notifications/scopes/visible_spec.rb +++ b/spec/models/notifications/scopes/visible_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/permitted_params_spec.rb b/spec/models/permitted_params_spec.rb index adfab76df5..6f1e7fbeb5 100644 --- a/spec/models/permitted_params_spec.rb +++ b/spec/models/permitted_params_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/placeholder_users/placeholder_user_spec.rb b/spec/models/placeholder_users/placeholder_user_spec.rb index 107795af9c..b8eb312b43 100644 --- a/spec/models/placeholder_users/placeholder_user_spec.rb +++ b/spec/models/placeholder_users/placeholder_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/placeholder_users/scopes/visible_spec.rb b/spec/models/placeholder_users/scopes/visible_spec.rb index 823ec4335c..a6dbfa2f33 100644 --- a/spec/models/placeholder_users/scopes/visible_spec.rb +++ b/spec/models/placeholder_users/scopes/visible_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principal_spec.rb b/spec/models/principal_spec.rb index 789fb54548..9922d9f37d 100644 --- a/spec/models/principal_spec.rb +++ b/spec/models/principal_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/human_spec.rb b/spec/models/principals/scopes/human_spec.rb index 5cdc9a4ae5..15ffdbd561 100644 --- a/spec/models/principals/scopes/human_spec.rb +++ b/spec/models/principals/scopes/human_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/like_spec.rb b/spec/models/principals/scopes/like_spec.rb index d0ec603a84..422363edd8 100644 --- a/spec/models/principals/scopes/like_spec.rb +++ b/spec/models/principals/scopes/like_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/not_builtin_spec.rb b/spec/models/principals/scopes/not_builtin_spec.rb index dc52141c3a..b9dcbf34b0 100644 --- a/spec/models/principals/scopes/not_builtin_spec.rb +++ b/spec/models/principals/scopes/not_builtin_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/ordered_by_name_spec.rb b/spec/models/principals/scopes/ordered_by_name_spec.rb index d997d2f398..1247e27ac4 100644 --- a/spec/models/principals/scopes/ordered_by_name_spec.rb +++ b/spec/models/principals/scopes/ordered_by_name_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/possible_assignee_spec.rb b/spec/models/principals/scopes/possible_assignee_spec.rb index 18a459bad2..313b66acfb 100644 --- a/spec/models/principals/scopes/possible_assignee_spec.rb +++ b/spec/models/principals/scopes/possible_assignee_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/possible_member_spec.rb b/spec/models/principals/scopes/possible_member_spec.rb index bef3403f12..b6429ea1ab 100644 --- a/spec/models/principals/scopes/possible_member_spec.rb +++ b/spec/models/principals/scopes/possible_member_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/user_spec.rb b/spec/models/principals/scopes/user_spec.rb index eca7a27ed1..ba9a270cca 100644 --- a/spec/models/principals/scopes/user_spec.rb +++ b/spec/models/principals/scopes/user_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/principals/scopes/visible_spec.rb b/spec/models/principals/scopes/visible_spec.rb index 48b2c11821..14aad4c5b9 100644 --- a/spec/models/principals/scopes/visible_spec.rb +++ b/spec/models/principals/scopes/visible_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb index ff439ea56c..ba6bfc196b 100644 --- a/spec/models/project_spec.rb +++ b/spec/models/project_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/activity_spec.rb b/spec/models/projects/activity_spec.rb index 78586ca409..2161209e03 100644 --- a/spec/models/projects/activity_spec.rb +++ b/spec/models/projects/activity_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/allowed_to_scope_spec.rb b/spec/models/projects/allowed_to_scope_spec.rb index c1cc327a35..923efe349c 100644 --- a/spec/models/projects/allowed_to_scope_spec.rb +++ b/spec/models/projects/allowed_to_scope_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/customizable_spec.rb b/spec/models/projects/customizable_spec.rb index 249bd0f3e2..9bfd78eb28 100644 --- a/spec/models/projects/customizable_spec.rb +++ b/spec/models/projects/customizable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/exporter/csv_integration_spec.rb b/spec/models/projects/exporter/csv_integration_spec.rb index 225df104de..6d9f2dba72 100644 --- a/spec/models/projects/exporter/csv_integration_spec.rb +++ b/spec/models/projects/exporter/csv_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/exporter/exportable_project_context.rb b/spec/models/projects/exporter/exportable_project_context.rb index 15cb547174..5f120bfaae 100644 --- a/spec/models/projects/exporter/exportable_project_context.rb +++ b/spec/models/projects/exporter/exportable_project_context.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/reorder_nested_set_spec.rb b/spec/models/projects/reorder_nested_set_spec.rb index 64e2f87111..e6fc5e12d9 100644 --- a/spec/models/projects/reorder_nested_set_spec.rb +++ b/spec/models/projects/reorder_nested_set_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/status_spec.rb b/spec/models/projects/status_spec.rb index efb988c8f2..5f8c77585f 100644 --- a/spec/models/projects/status_spec.rb +++ b/spec/models/projects/status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/projects/storage_spec.rb b/spec/models/projects/storage_spec.rb index 5c75a1de59..02981cc4aa 100644 --- a/spec/models/projects/storage_spec.rb +++ b/spec/models/projects/storage_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/capabilities/capability_query_spec.rb b/spec/models/queries/capabilities/capability_query_spec.rb index cc1d66e2ad..f4b3572fab 100644 --- a/spec/models/queries/capabilities/capability_query_spec.rb +++ b/spec/models/queries/capabilities/capability_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/capabilities/filters/action_filter_spec.rb b/spec/models/queries/capabilities/filters/action_filter_spec.rb index 232704c64d..83b4f73493 100644 --- a/spec/models/queries/capabilities/filters/action_filter_spec.rb +++ b/spec/models/queries/capabilities/filters/action_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/capabilities/filters/context_filter_spec.rb b/spec/models/queries/capabilities/filters/context_filter_spec.rb index e9b86d1997..abdade6c5b 100644 --- a/spec/models/queries/capabilities/filters/context_filter_spec.rb +++ b/spec/models/queries/capabilities/filters/context_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/capabilities/filters/id_filter_spec.rb b/spec/models/queries/capabilities/filters/id_filter_spec.rb index c59f6acbf8..2a6c198cd0 100644 --- a/spec/models/queries/capabilities/filters/id_filter_spec.rb +++ b/spec/models/queries/capabilities/filters/id_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/capabilities/filters/principal_id_filter_spec.rb b/spec/models/queries/capabilities/filters/principal_id_filter_spec.rb index bbf393af08..ecf79bedbd 100644 --- a/spec/models/queries/capabilities/filters/principal_id_filter_spec.rb +++ b/spec/models/queries/capabilities/filters/principal_id_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/filters/available_filters_spec.rb b/spec/models/queries/filters/available_filters_spec.rb index 3236509fb0..10b26dde10 100644 --- a/spec/models/queries/filters/available_filters_spec.rb +++ b/spec/models/queries/filters/available_filters_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/filters/base_spec.rb b/spec/models/queries/filters/base_spec.rb index 866766c5bb..db9a755c9a 100644 --- a/spec/models/queries/filters/base_spec.rb +++ b/spec/models/queries/filters/base_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/blocked_filter_spec.rb b/spec/models/queries/members/filters/blocked_filter_spec.rb index e0dd563cfb..47207d658d 100644 --- a/spec/models/queries/members/filters/blocked_filter_spec.rb +++ b/spec/models/queries/members/filters/blocked_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/created_at_filter_spec.rb b/spec/models/queries/members/filters/created_at_filter_spec.rb index 75e4b6162f..fb213d16b6 100644 --- a/spec/models/queries/members/filters/created_at_filter_spec.rb +++ b/spec/models/queries/members/filters/created_at_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/group_filter_spec.rb b/spec/models/queries/members/filters/group_filter_spec.rb index 8dd4d589b4..6929183423 100644 --- a/spec/models/queries/members/filters/group_filter_spec.rb +++ b/spec/models/queries/members/filters/group_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/name_filter_spec.rb b/spec/models/queries/members/filters/name_filter_spec.rb index 890234a34e..fb76bdd753 100644 --- a/spec/models/queries/members/filters/name_filter_spec.rb +++ b/spec/models/queries/members/filters/name_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/principal_filter_spec.rb b/spec/models/queries/members/filters/principal_filter_spec.rb index 42fa98d0e6..80b374a1be 100644 --- a/spec/models/queries/members/filters/principal_filter_spec.rb +++ b/spec/models/queries/members/filters/principal_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/project_filter_spec.rb b/spec/models/queries/members/filters/project_filter_spec.rb index 047a3f57a7..b7ae617809 100644 --- a/spec/models/queries/members/filters/project_filter_spec.rb +++ b/spec/models/queries/members/filters/project_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/role_filter_spec.rb b/spec/models/queries/members/filters/role_filter_spec.rb index a4325bcee8..101a0acbfa 100644 --- a/spec/models/queries/members/filters/role_filter_spec.rb +++ b/spec/models/queries/members/filters/role_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/status_filter_spec.rb b/spec/models/queries/members/filters/status_filter_spec.rb index 509b34e13e..6345fd9c8a 100644 --- a/spec/models/queries/members/filters/status_filter_spec.rb +++ b/spec/models/queries/members/filters/status_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/members/filters/updated_at_filter_spec.rb b/spec/models/queries/members/filters/updated_at_filter_spec.rb index ba57bc3a6e..78737d2fdd 100644 --- a/spec/models/queries/members/filters/updated_at_filter_spec.rb +++ b/spec/models/queries/members/filters/updated_at_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/news/filters/project_filter_spec.rb b/spec/models/queries/news/filters/project_filter_spec.rb index 7953c25c85..586e4ce6eb 100644 --- a/spec/models/queries/news/filters/project_filter_spec.rb +++ b/spec/models/queries/news/filters/project_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/news/news_query_spec.rb b/spec/models/queries/news/news_query_spec.rb index 9c2193b0bc..f156283567 100644 --- a/spec/models/queries/news/news_query_spec.rb +++ b/spec/models/queries/news/news_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/notifications/filters/id_filter_spec.rb b/spec/models/queries/notifications/filters/id_filter_spec.rb index ecd45af4a0..66afd10b77 100644 --- a/spec/models/queries/notifications/filters/id_filter_spec.rb +++ b/spec/models/queries/notifications/filters/id_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/notifications/filters/read_ian_filter_spec.rb b/spec/models/queries/notifications/filters/read_ian_filter_spec.rb index a27f3b05f7..661513e9bc 100644 --- a/spec/models/queries/notifications/filters/read_ian_filter_spec.rb +++ b/spec/models/queries/notifications/filters/read_ian_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/notifications/notification_query_spec.rb b/spec/models/queries/notifications/notification_query_spec.rb index 73b265e03d..15ebcc52c1 100644 --- a/spec/models/queries/notifications/notification_query_spec.rb +++ b/spec/models/queries/notifications/notification_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/placeholder_users/placeholder_user_query_spec.rb b/spec/models/queries/placeholder_users/placeholder_user_query_spec.rb index 6a0d83cce4..1972813aef 100644 --- a/spec/models/queries/placeholder_users/placeholder_user_query_spec.rb +++ b/spec/models/queries/placeholder_users/placeholder_user_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/principals/principal_query_integrations_spec.rb b/spec/models/queries/principals/principal_query_integrations_spec.rb index 2675a5d982..21f31527cf 100644 --- a/spec/models/queries/principals/principal_query_integrations_spec.rb +++ b/spec/models/queries/principals/principal_query_integrations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/active_filter_spec.rb b/spec/models/queries/projects/filters/active_filter_spec.rb index 4a1e8d4bc6..f27707e30b 100644 --- a/spec/models/queries/projects/filters/active_filter_spec.rb +++ b/spec/models/queries/projects/filters/active_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/created_at_filter_spec.rb b/spec/models/queries/projects/filters/created_at_filter_spec.rb index 35538ae660..f977980de7 100644 --- a/spec/models/queries/projects/filters/created_at_filter_spec.rb +++ b/spec/models/queries/projects/filters/created_at_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/custom_field_filter_spec.rb b/spec/models/queries/projects/filters/custom_field_filter_spec.rb index df412adb48..3cc28e43bd 100644 --- a/spec/models/queries/projects/filters/custom_field_filter_spec.rb +++ b/spec/models/queries/projects/filters/custom_field_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/latest_activity_at_filter_spec.rb b/spec/models/queries/projects/filters/latest_activity_at_filter_spec.rb index 7a08562c45..ca17835459 100644 --- a/spec/models/queries/projects/filters/latest_activity_at_filter_spec.rb +++ b/spec/models/queries/projects/filters/latest_activity_at_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/name_and_identifier_filter_spec.rb b/spec/models/queries/projects/filters/name_and_identifier_filter_spec.rb index 0eae6ef4b9..6d9fab6ead 100644 --- a/spec/models/queries/projects/filters/name_and_identifier_filter_spec.rb +++ b/spec/models/queries/projects/filters/name_and_identifier_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/parent_filter_spec.rb b/spec/models/queries/projects/filters/parent_filter_spec.rb index 83ec677e86..256580489e 100644 --- a/spec/models/queries/projects/filters/parent_filter_spec.rb +++ b/spec/models/queries/projects/filters/parent_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/principal_filter_spec.rb b/spec/models/queries/projects/filters/principal_filter_spec.rb index ea2605d520..c742fde555 100644 --- a/spec/models/queries/projects/filters/principal_filter_spec.rb +++ b/spec/models/queries/projects/filters/principal_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/project_status_filter_spec.rb b/spec/models/queries/projects/filters/project_status_filter_spec.rb index 454229bc6b..5b5fe431ed 100644 --- a/spec/models/queries/projects/filters/project_status_filter_spec.rb +++ b/spec/models/queries/projects/filters/project_status_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/public_filter_spec.rb b/spec/models/queries/projects/filters/public_filter_spec.rb index 628fbe327b..ebc7d39ce1 100644 --- a/spec/models/queries/projects/filters/public_filter_spec.rb +++ b/spec/models/queries/projects/filters/public_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/type_filter_spec.rb b/spec/models/queries/projects/filters/type_filter_spec.rb index aed9f67b95..885eab4ab2 100644 --- a/spec/models/queries/projects/filters/type_filter_spec.rb +++ b/spec/models/queries/projects/filters/type_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/user_action_filter_spec.rb b/spec/models/queries/projects/filters/user_action_filter_spec.rb index 026d13da88..4477741b13 100644 --- a/spec/models/queries/projects/filters/user_action_filter_spec.rb +++ b/spec/models/queries/projects/filters/user_action_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/filters/visible_filter_spec.rb b/spec/models/queries/projects/filters/visible_filter_spec.rb index 908db013b6..c95a67dcec 100644 --- a/spec/models/queries/projects/filters/visible_filter_spec.rb +++ b/spec/models/queries/projects/filters/visible_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/orders/latest_activity_at_order_spec.rb b/spec/models/queries/projects/orders/latest_activity_at_order_spec.rb index c54054ef90..5cc426175f 100644 --- a/spec/models/queries/projects/orders/latest_activity_at_order_spec.rb +++ b/spec/models/queries/projects/orders/latest_activity_at_order_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/orders/required_disk_space_order_spec.rb b/spec/models/queries/projects/orders/required_disk_space_order_spec.rb index 0f912a830e..88d63f7af2 100644 --- a/spec/models/queries/projects/orders/required_disk_space_order_spec.rb +++ b/spec/models/queries/projects/orders/required_disk_space_order_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/projects/project_query_spec.rb b/spec/models/queries/projects/project_query_spec.rb index 3d0f28117a..5733ceb33d 100644 --- a/spec/models/queries/projects/project_query_spec.rb +++ b/spec/models/queries/projects/project_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/queries/filters/hidden_filter_spec.rb b/spec/models/queries/queries/filters/hidden_filter_spec.rb index d140b6ebc2..48a4425e53 100644 --- a/spec/models/queries/queries/filters/hidden_filter_spec.rb +++ b/spec/models/queries/queries/filters/hidden_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/queries/filters/project_filter_spec.rb b/spec/models/queries/queries/filters/project_filter_spec.rb index 786b548eda..d4ec542b7a 100644 --- a/spec/models/queries/queries/filters/project_filter_spec.rb +++ b/spec/models/queries/queries/filters/project_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/queries/filters/updated_at_filter_spec.rb b/spec/models/queries/queries/filters/updated_at_filter_spec.rb index 084bea10cb..5b401cc997 100644 --- a/spec/models/queries/queries/filters/updated_at_filter_spec.rb +++ b/spec/models/queries/queries/filters/updated_at_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/queries/query_query_spec.rb b/spec/models/queries/queries/query_query_spec.rb index 7020429448..06945c16d7 100644 --- a/spec/models/queries/queries/query_query_spec.rb +++ b/spec/models/queries/queries/query_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/relations/filters/from_filter_spec.rb b/spec/models/queries/relations/filters/from_filter_spec.rb index 8a578475fc..60ae366e30 100644 --- a/spec/models/queries/relations/filters/from_filter_spec.rb +++ b/spec/models/queries/relations/filters/from_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/relations/filters/involved_filter_spec.rb b/spec/models/queries/relations/filters/involved_filter_spec.rb index 798702753c..801aa901a1 100644 --- a/spec/models/queries/relations/filters/involved_filter_spec.rb +++ b/spec/models/queries/relations/filters/involved_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/relations/filters/to_filter_spec.rb b/spec/models/queries/relations/filters/to_filter_spec.rb index 5de7d0606d..9c77f19dc3 100644 --- a/spec/models/queries/relations/filters/to_filter_spec.rb +++ b/spec/models/queries/relations/filters/to_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/relations/relation_query_spec.rb b/spec/models/queries/relations/relation_query_spec.rb index 3411d0f1ed..07bebdf815 100644 --- a/spec/models/queries/relations/relation_query_spec.rb +++ b/spec/models/queries/relations/relation_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/roles/filters/grantable_filter_spec.rb b/spec/models/queries/roles/filters/grantable_filter_spec.rb index 0daf3fa58e..752dfdeeec 100644 --- a/spec/models/queries/roles/filters/grantable_filter_spec.rb +++ b/spec/models/queries/roles/filters/grantable_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/roles/filters/unit_filter_spec.rb b/spec/models/queries/roles/filters/unit_filter_spec.rb index b34176bd1b..2a7a0492ca 100644 --- a/spec/models/queries/roles/filters/unit_filter_spec.rb +++ b/spec/models/queries/roles/filters/unit_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/users/filters/any_name_attribute_filter_spec.rb b/spec/models/queries/users/filters/any_name_attribute_filter_spec.rb index eef564d6de..2b7943c8d4 100644 --- a/spec/models/queries/users/filters/any_name_attribute_filter_spec.rb +++ b/spec/models/queries/users/filters/any_name_attribute_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/users/filters/group_filter_spec.rb b/spec/models/queries/users/filters/group_filter_spec.rb index 1d0d4f5d8a..35bd9feda3 100644 --- a/spec/models/queries/users/filters/group_filter_spec.rb +++ b/spec/models/queries/users/filters/group_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/users/filters/name_filter_spec.rb b/spec/models/queries/users/filters/name_filter_spec.rb index c3848e4680..c663b8b19a 100644 --- a/spec/models/queries/users/filters/name_filter_spec.rb +++ b/spec/models/queries/users/filters/name_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/users/filters/status_filter_spec.rb b/spec/models/queries/users/filters/status_filter_spec.rb index 907357fd68..13ab80b133 100644 --- a/spec/models/queries/users/filters/status_filter_spec.rb +++ b/spec/models/queries/users/filters/status_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/users/user_query_spec.rb b/spec/models/queries/users/user_query_spec.rb index f323b560b9..627f89d081 100644 --- a/spec/models/queries/users/user_query_spec.rb +++ b/spec/models/queries/users/user_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/views/filters/type_filter_spec.rb b/spec/models/queries/views/filters/type_filter_spec.rb index 6cf0af2d06..969cf35324 100644 --- a/spec/models/queries/views/filters/type_filter_spec.rb +++ b/spec/models/queries/views/filters/type_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/custom_field_column_spec.rb b/spec/models/queries/work_packages/columns/custom_field_column_spec.rb index 82343e843f..a6a6e76eeb 100644 --- a/spec/models/queries/work_packages/columns/custom_field_column_spec.rb +++ b/spec/models/queries/work_packages/columns/custom_field_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/property_column_spec.rb b/spec/models/queries/work_packages/columns/property_column_spec.rb index 15881bc622..534eae5d79 100644 --- a/spec/models/queries/work_packages/columns/property_column_spec.rb +++ b/spec/models/queries/work_packages/columns/property_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/relation_of_type_column_spec.rb b/spec/models/queries/work_packages/columns/relation_of_type_column_spec.rb index a69cccec93..cd205838f5 100644 --- a/spec/models/queries/work_packages/columns/relation_of_type_column_spec.rb +++ b/spec/models/queries/work_packages/columns/relation_of_type_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/relation_to_type_column_spec.rb b/spec/models/queries/work_packages/columns/relation_to_type_column_spec.rb index 3201c38dcf..55ff0151b4 100644 --- a/spec/models/queries/work_packages/columns/relation_to_type_column_spec.rb +++ b/spec/models/queries/work_packages/columns/relation_to_type_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/shared_query_column_specs.rb b/spec/models/queries/work_packages/columns/shared_query_column_specs.rb index 48dc8d7f2c..f07e2daa99 100644 --- a/spec/models/queries/work_packages/columns/shared_query_column_specs.rb +++ b/spec/models/queries/work_packages/columns/shared_query_column_specs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/columns/work_package_column_spec.rb b/spec/models/queries/work_packages/columns/work_package_column_spec.rb index 24140c1815..df89593e97 100644 --- a/spec/models/queries/work_packages/columns/work_package_column_spec.rb +++ b/spec/models/queries/work_packages/columns/work_package_column_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/assigned_to_filter_spec.rb b/spec/models/queries/work_packages/filter/assigned_to_filter_spec.rb index 765bc0c66a..8a7d432db1 100644 --- a/spec/models/queries/work_packages/filter/assigned_to_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/assigned_to_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/assignee_or_group_filter_spec.rb b/spec/models/queries/work_packages/filter/assignee_or_group_filter_spec.rb index 0b431286e1..0309f59dcf 100644 --- a/spec/models/queries/work_packages/filter/assignee_or_group_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/assignee_or_group_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/attachment_content_filter_spec.rb b/spec/models/queries/work_packages/filter/attachment_content_filter_spec.rb index b59937be49..f464bdec92 100644 --- a/spec/models/queries/work_packages/filter/attachment_content_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/attachment_content_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/attachment_file_name_filter_spec.rb b/spec/models/queries/work_packages/filter/attachment_file_name_filter_spec.rb index c4667e6e83..4959205cc4 100644 --- a/spec/models/queries/work_packages/filter/attachment_file_name_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/attachment_file_name_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/author_filter_spec.rb b/spec/models/queries/work_packages/filter/author_filter_spec.rb index 8faded46f9..b7719c8c51 100644 --- a/spec/models/queries/work_packages/filter/author_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/author_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/blocked_filter_spec.rb b/spec/models/queries/work_packages/filter/blocked_filter_spec.rb index afe8e652a4..bb9affa5e8 100644 --- a/spec/models/queries/work_packages/filter/blocked_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/blocked_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/blocks_filter_spec.rb b/spec/models/queries/work_packages/filter/blocks_filter_spec.rb index dd134f6b8d..3aa8cc974f 100644 --- a/spec/models/queries/work_packages/filter/blocks_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/blocks_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/category_filter_spec.rb b/spec/models/queries/work_packages/filter/category_filter_spec.rb index 003d0cdb92..261ee9e129 100644 --- a/spec/models/queries/work_packages/filter/category_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/category_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/comment_filter_spec.rb b/spec/models/queries/work_packages/filter/comment_filter_spec.rb index 54010ff15e..c9cea143ac 100644 --- a/spec/models/queries/work_packages/filter/comment_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/comment_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/created_at_filter_spec.rb b/spec/models/queries/work_packages/filter/created_at_filter_spec.rb index d4f4126895..760586ff76 100644 --- a/spec/models/queries/work_packages/filter/created_at_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/created_at_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/custom_fields/contains_text_custom_field_filter_spec.rb b/spec/models/queries/work_packages/filter/custom_fields/contains_text_custom_field_filter_spec.rb index 070a946643..bc2a9a8116 100644 --- a/spec/models/queries/work_packages/filter/custom_fields/contains_text_custom_field_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/custom_fields/contains_text_custom_field_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/custom_fields/custom_field_filter_spec.rb b/spec/models/queries/work_packages/filter/custom_fields/custom_field_filter_spec.rb index e23c4efb2b..6e55ad8126 100644 --- a/spec/models/queries/work_packages/filter/custom_fields/custom_field_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/custom_fields/custom_field_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/dates_interval_filter_spec.rb b/spec/models/queries/work_packages/filter/dates_interval_filter_spec.rb index 529ff6f0c9..58169cf91d 100644 --- a/spec/models/queries/work_packages/filter/dates_interval_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/dates_interval_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/description_filter_spec.rb b/spec/models/queries/work_packages/filter/description_filter_spec.rb index 3528b4b679..7449ea6af8 100644 --- a/spec/models/queries/work_packages/filter/description_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/description_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/done_ratio_filter_spec.rb b/spec/models/queries/work_packages/filter/done_ratio_filter_spec.rb index 36eb2509a9..354e09c2cb 100644 --- a/spec/models/queries/work_packages/filter/done_ratio_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/done_ratio_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/due_date_filter_spec.rb b/spec/models/queries/work_packages/filter/due_date_filter_spec.rb index d0c2ae71c0..ad2dc9f129 100644 --- a/spec/models/queries/work_packages/filter/due_date_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/due_date_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/duplicated_filter_spec.rb b/spec/models/queries/work_packages/filter/duplicated_filter_spec.rb index 722a5a0fff..4d933c543c 100644 --- a/spec/models/queries/work_packages/filter/duplicated_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/duplicated_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/duplicates_filter_spec.rb b/spec/models/queries/work_packages/filter/duplicates_filter_spec.rb index e76b74fac7..6bb617e263 100644 --- a/spec/models/queries/work_packages/filter/duplicates_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/duplicates_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/estimated_hours_filter_spec.rb b/spec/models/queries/work_packages/filter/estimated_hours_filter_spec.rb index 08ca26de35..c286f10add 100644 --- a/spec/models/queries/work_packages/filter/estimated_hours_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/estimated_hours_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/follows_filter_spec.rb b/spec/models/queries/work_packages/filter/follows_filter_spec.rb index 6618d8e51b..8634702b89 100644 --- a/spec/models/queries/work_packages/filter/follows_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/follows_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/group_filter_spec.rb b/spec/models/queries/work_packages/filter/group_filter_spec.rb index a6027cb04d..2ee355ce7a 100644 --- a/spec/models/queries/work_packages/filter/group_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/group_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/id_filter_spec.rb b/spec/models/queries/work_packages/filter/id_filter_spec.rb index 655be1f7ff..ec3cb9afb4 100644 --- a/spec/models/queries/work_packages/filter/id_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/id_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/includes_filter_spec.rb b/spec/models/queries/work_packages/filter/includes_filter_spec.rb index 4be9188307..dec0de1873 100644 --- a/spec/models/queries/work_packages/filter/includes_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/includes_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/manual_sort_filter_spec.rb b/spec/models/queries/work_packages/filter/manual_sort_filter_spec.rb index c9659011df..c7aa052a5f 100644 --- a/spec/models/queries/work_packages/filter/manual_sort_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/manual_sort_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/milestone_filter_spec.rb b/spec/models/queries/work_packages/filter/milestone_filter_spec.rb index 6006f9975d..7587f24587 100644 --- a/spec/models/queries/work_packages/filter/milestone_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/milestone_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/parent_filter_spec.rb b/spec/models/queries/work_packages/filter/parent_filter_spec.rb index 8efd67ebf7..249fec483e 100644 --- a/spec/models/queries/work_packages/filter/parent_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/parent_filter_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/partof_filter_spec.rb b/spec/models/queries/work_packages/filter/partof_filter_spec.rb index 063f64d245..676f9f36e0 100644 --- a/spec/models/queries/work_packages/filter/partof_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/partof_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/precedes_filter_spec.rb b/spec/models/queries/work_packages/filter/precedes_filter_spec.rb index 00e4254f78..0172120af9 100644 --- a/spec/models/queries/work_packages/filter/precedes_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/precedes_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/principal_loader_spec.rb b/spec/models/queries/work_packages/filter/principal_loader_spec.rb index af19f5753c..1189ef89cc 100644 --- a/spec/models/queries/work_packages/filter/principal_loader_spec.rb +++ b/spec/models/queries/work_packages/filter/principal_loader_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/priority_filter_spec.rb b/spec/models/queries/work_packages/filter/priority_filter_spec.rb index 50cdf9c9ab..7c70770db9 100644 --- a/spec/models/queries/work_packages/filter/priority_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/priority_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/project_filter_instance_spec.rb b/spec/models/queries/work_packages/filter/project_filter_instance_spec.rb index c420d16014..a64df43d87 100644 --- a/spec/models/queries/work_packages/filter/project_filter_instance_spec.rb +++ b/spec/models/queries/work_packages/filter/project_filter_instance_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/project_filter_spec.rb b/spec/models/queries/work_packages/filter/project_filter_spec.rb index 2eaa7cad9b..d1f77b4995 100644 --- a/spec/models/queries/work_packages/filter/project_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/project_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/relates_filter_spec.rb b/spec/models/queries/work_packages/filter/relates_filter_spec.rb index dd1aec8e01..513282a90e 100644 --- a/spec/models/queries/work_packages/filter/relates_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/relates_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/required_filter_spec.rb b/spec/models/queries/work_packages/filter/required_filter_spec.rb index 8dd07526a5..ec3a457c57 100644 --- a/spec/models/queries/work_packages/filter/required_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/required_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/requires_filter_spec.rb b/spec/models/queries/work_packages/filter/requires_filter_spec.rb index c58fd94ba3..cadf961292 100644 --- a/spec/models/queries/work_packages/filter/requires_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/requires_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/responsible_filter_spec.rb b/spec/models/queries/work_packages/filter/responsible_filter_spec.rb index f50ee6632d..a0bae96e2f 100644 --- a/spec/models/queries/work_packages/filter/responsible_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/responsible_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/role_filter_spec.rb b/spec/models/queries/work_packages/filter/role_filter_spec.rb index af516273d7..4e5abde341 100644 --- a/spec/models/queries/work_packages/filter/role_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/role_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/search_filter_spec.rb b/spec/models/queries/work_packages/filter/search_filter_spec.rb index 79d59c20e9..2fd573c03f 100644 --- a/spec/models/queries/work_packages/filter/search_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/search_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/start_date_filter_spec.rb b/spec/models/queries/work_packages/filter/start_date_filter_spec.rb index 61b6fceab6..9d4865f714 100644 --- a/spec/models/queries/work_packages/filter/start_date_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/start_date_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/status_filter_spec.rb b/spec/models/queries/work_packages/filter/status_filter_spec.rb index 8183240665..487ee4fc76 100644 --- a/spec/models/queries/work_packages/filter/status_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/status_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/subject_filter_spec.rb b/spec/models/queries/work_packages/filter/subject_filter_spec.rb index 9be844424d..9936f0a63d 100644 --- a/spec/models/queries/work_packages/filter/subject_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/subject_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/subject_or_id_filter_spec.rb b/spec/models/queries/work_packages/filter/subject_or_id_filter_spec.rb index f776245c41..747e9ef740 100644 --- a/spec/models/queries/work_packages/filter/subject_or_id_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/subject_or_id_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/subproject_filter_spec.rb b/spec/models/queries/work_packages/filter/subproject_filter_spec.rb index 54551f64cb..fd7f6aa4ae 100644 --- a/spec/models/queries/work_packages/filter/subproject_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/subproject_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/type_filter_spec.rb b/spec/models/queries/work_packages/filter/type_filter_spec.rb index 0b211a5c59..13f6bdc063 100644 --- a/spec/models/queries/work_packages/filter/type_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/type_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/updated_at_filter_spec.rb b/spec/models/queries/work_packages/filter/updated_at_filter_spec.rb index 07ad5ccace..8379bb974d 100644 --- a/spec/models/queries/work_packages/filter/updated_at_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/updated_at_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/version_filter_spec.rb b/spec/models/queries/work_packages/filter/version_filter_spec.rb index d334c333af..a49d134f01 100644 --- a/spec/models/queries/work_packages/filter/version_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/version_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/filter/watcher_filter_spec.rb b/spec/models/queries/work_packages/filter/watcher_filter_spec.rb index abe0d17ac2..f88208d6c5 100644 --- a/spec/models/queries/work_packages/filter/watcher_filter_spec.rb +++ b/spec/models/queries/work_packages/filter/watcher_filter_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/queries/work_packages/manual_sorting_spec.rb b/spec/models/queries/work_packages/manual_sorting_spec.rb index 25452c5045..df3ac93d7c 100644 --- a/spec/models/queries/work_packages/manual_sorting_spec.rb +++ b/spec/models/queries/work_packages/manual_sorting_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/default_query_spec.rb b/spec/models/query/default_query_spec.rb index 3aef29b5b9..be5c8c34ce 100644 --- a/spec/models/query/default_query_spec.rb +++ b/spec/models/query/default_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_cf_sorting_integration_spec.rb b/spec/models/query/results_cf_sorting_integration_spec.rb index 0f9dd2aa25..93d92c55cb 100644 --- a/spec/models/query/results_cf_sorting_integration_spec.rb +++ b/spec/models/query/results_cf_sorting_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_spec.rb b/spec/models/query/results_spec.rb index 6517f07c80..8da8901b0e 100644 --- a/spec/models/query/results_spec.rb +++ b/spec/models/query/results_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_subject_filter_integration_spec.rb b/spec/models/query/results_subject_filter_integration_spec.rb index ea72d5c049..d97ddfae71 100644 --- a/spec/models/query/results_subject_filter_integration_spec.rb +++ b/spec/models/query/results_subject_filter_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_subproject_filter_integration_spec.rb b/spec/models/query/results_subproject_filter_integration_spec.rb index 80979d4fad..52adc6bb80 100644 --- a/spec/models/query/results_subproject_filter_integration_spec.rb +++ b/spec/models/query/results_subproject_filter_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_sums_integration_spec.rb b/spec/models/query/results_sums_integration_spec.rb index 2b3b916837..0b0dba8606 100644 --- a/spec/models/query/results_sums_integration_spec.rb +++ b/spec/models/query/results_sums_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/results_version_integration_spec.rb b/spec/models/query/results_version_integration_spec.rb index 31f5f95db4..acb1297d56 100644 --- a/spec/models/query/results_version_integration_spec.rb +++ b/spec/models/query/results_version_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/scopes/visible_spec.rb b/spec/models/query/scopes/visible_spec.rb index 97d8e75970..c769c84a6b 100644 --- a/spec/models/query/scopes/visible_spec.rb +++ b/spec/models/query/scopes/visible_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query/sort_criteria_spec.rb b/spec/models/query/sort_criteria_spec.rb index d2cc4e9228..d46d6603d3 100644 --- a/spec/models/query/sort_criteria_spec.rb +++ b/spec/models/query/sort_criteria_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/query_spec.rb b/spec/models/query_spec.rb index 6b13a17b51..8690bb1a92 100644 --- a/spec/models/query_spec.rb +++ b/spec/models/query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/relation_spec.rb b/spec/models/relation_spec.rb index 21cc5e5290..78306cd469 100644 --- a/spec/models/relation_spec.rb +++ b/spec/models/relation_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/relations/scopes/visible_spec.rb b/spec/models/relations/scopes/visible_spec.rb index a56c1b58f0..81a7b69026 100644 --- a/spec/models/relations/scopes/visible_spec.rb +++ b/spec/models/relations/scopes/visible_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/reports_services_spec.rb b/spec/models/reports_services_spec.rb index 9b3f09681e..e9a3a54b34 100644 --- a/spec/models/reports_services_spec.rb +++ b/spec/models/reports_services_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/repository/git_spec.rb b/spec/models/repository/git_spec.rb index 3299da83a7..73befb1c8d 100644 --- a/spec/models/repository/git_spec.rb +++ b/spec/models/repository/git_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/repository/subversion_spec.rb b/spec/models/repository/subversion_spec.rb index 46ea5973ea..cd8f9cb401 100644 --- a/spec/models/repository/subversion_spec.rb +++ b/spec/models/repository/subversion_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/role_spec.rb b/spec/models/role_spec.rb index a101e9fdf6..85b3c892c7 100644 --- a/spec/models/role_spec.rb +++ b/spec/models/role_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/sessions/active_record_sessions_spec.rb b/spec/models/sessions/active_record_sessions_spec.rb index 0e90a60da4..20fa35789c 100644 --- a/spec/models/sessions/active_record_sessions_spec.rb +++ b/spec/models/sessions/active_record_sessions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/sessions/sql_bypass_sessions_spec.rb b/spec/models/sessions/sql_bypass_sessions_spec.rb index 162818d374..549587e141 100644 --- a/spec/models/sessions/sql_bypass_sessions_spec.rb +++ b/spec/models/sessions/sql_bypass_sessions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/setting_spec.rb b/spec/models/setting_spec.rb index 5b093ba11a..b96d4e9398 100644 --- a/spec/models/setting_spec.rb +++ b/spec/models/setting_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/status_spec.rb b/spec/models/status_spec.rb index 6794bce400..7f7f149807 100644 --- a/spec/models/status_spec.rb +++ b/spec/models/status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/system_user_spec.rb b/spec/models/system_user_spec.rb index 58c1528e9e..8d482ad254 100644 --- a/spec/models/system_user_spec.rb +++ b/spec/models/system_user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/token/base_token_spec.rb b/spec/models/token/base_token_spec.rb index 33f7db74b4..51621d5b36 100644 --- a/spec/models/token/base_token_spec.rb +++ b/spec/models/token/base_token_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/token/hashed_token_spec.rb b/spec/models/token/hashed_token_spec.rb index e5293480be..896c9bd0f2 100644 --- a/spec/models/token/hashed_token_spec.rb +++ b/spec/models/token/hashed_token_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/type/attribute_groups_spec.rb b/spec/models/type/attribute_groups_spec.rb index fcfeb9c41c..189cf3e568 100644 --- a/spec/models/type/attribute_groups_spec.rb +++ b/spec/models/type/attribute_groups_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/type_spec.rb b/spec/models/type_spec.rb index 9bdfb62045..f258f54109 100644 --- a/spec/models/type_spec.rb +++ b/spec/models/type_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/types/scopes/milestone_spec.rb b/spec/models/types/scopes/milestone_spec.rb index ed9fc45fe5..bb6f7ec872 100644 --- a/spec/models/types/scopes/milestone_spec.rb +++ b/spec/models/types/scopes/milestone_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/user_password_spec.rb b/spec/models/user_password_spec.rb index 45f7826500..398201367d 100644 --- a/spec/models/user_password_spec.rb +++ b/spec/models/user_password_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/user_passwords/sha1_spec.rb b/spec/models/user_passwords/sha1_spec.rb index 1f73fed45d..cf85b3bb9a 100644 --- a/spec/models/user_passwords/sha1_spec.rb +++ b/spec/models/user_passwords/sha1_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/user_preference_spec.rb b/spec/models/user_preference_spec.rb index e80ee4a65a..bb8a88a5cb 100644 --- a/spec/models/user_preference_spec.rb +++ b/spec/models/user_preference_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index dbbb521c94..8453cbbdcd 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/allowed_scope_spec.rb b/spec/models/users/allowed_scope_spec.rb index 5c34d6a90d..24a9ce072f 100644 --- a/spec/models/users/allowed_scope_spec.rb +++ b/spec/models/users/allowed_scope_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/allowed_to_spec.rb b/spec/models/users/allowed_to_spec.rb index 869dcd3aa9..f61f7b4806 100644 --- a/spec/models/users/allowed_to_spec.rb +++ b/spec/models/users/allowed_to_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/default_timezone_spec.rb b/spec/models/users/default_timezone_spec.rb index 195bde98e8..b4192e61a1 100644 --- a/spec/models/users/default_timezone_spec.rb +++ b/spec/models/users/default_timezone_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/scopes/find_by_login_spec.rb b/spec/models/users/scopes/find_by_login_spec.rb index 840724446a..81204eba43 100644 --- a/spec/models/users/scopes/find_by_login_spec.rb +++ b/spec/models/users/scopes/find_by_login_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/scopes/having_reminder_mail_to_send_spec.rb b/spec/models/users/scopes/having_reminder_mail_to_send_spec.rb index 584509e1f9..978389161e 100644 --- a/spec/models/users/scopes/having_reminder_mail_to_send_spec.rb +++ b/spec/models/users/scopes/having_reminder_mail_to_send_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/users/scopes/newest_spec.rb b/spec/models/users/scopes/newest_spec.rb index d88028630a..875f17bd85 100644 --- a/spec/models/users/scopes/newest_spec.rb +++ b/spec/models/users/scopes/newest_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/version_spec.rb b/spec/models/version_spec.rb index 966971de63..fdf122e06f 100644 --- a/spec/models/version_spec.rb +++ b/spec/models/version_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/versions/scopes/rolled_up_spec.rb b/spec/models/versions/scopes/rolled_up_spec.rb index 2cb295b5e9..1a9c427d53 100644 --- a/spec/models/versions/scopes/rolled_up_spec.rb +++ b/spec/models/versions/scopes/rolled_up_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/versions/scopes/shared_with_spec.rb b/spec/models/versions/scopes/shared_with_spec.rb index 71fcb86392..6f06b296ea 100644 --- a/spec/models/versions/scopes/shared_with_spec.rb +++ b/spec/models/versions/scopes/shared_with_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/watcher_spec.rb b/spec/models/watcher_spec.rb index ad0c9cb843..2952fd3a21 100644 --- a/spec/models/watcher_spec.rb +++ b/spec/models/watcher_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/wiki_content_spec.rb b/spec/models/wiki_content_spec.rb index 9515a42571..524dcd32e5 100644 --- a/spec/models/wiki_content_spec.rb +++ b/spec/models/wiki_content_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/wiki_page_spec.rb b/spec/models/wiki_page_spec.rb index 9e6d3d792d..8ad97f7dbe 100644 --- a/spec/models/wiki_page_spec.rb +++ b/spec/models/wiki_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/wiki_redirect_spec.rb b/spec/models/wiki_redirect_spec.rb index c3e35143ed..6aa5683436 100644 --- a/spec/models/wiki_redirect_spec.rb +++ b/spec/models/wiki_redirect_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/wiki_spec.rb b/spec/models/wiki_spec.rb index 5ff3987c2e..60aaf02a49 100644 --- a/spec/models/wiki_spec.rb +++ b/spec/models/wiki_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/aggregate_ancestors_spec.rb b/spec/models/work_package/aggregate_ancestors_spec.rb index 27092cbe88..5d36fd051d 100644 --- a/spec/models/work_package/aggregate_ancestors_spec.rb +++ b/spec/models/work_package/aggregate_ancestors_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/ask_before_destruction_spec.rb b/spec/models/work_package/ask_before_destruction_spec.rb index 8073e1d03b..664cdc2c2f 100644 --- a/spec/models/work_package/ask_before_destruction_spec.rb +++ b/spec/models/work_package/ask_before_destruction_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/exporter/csv_integration_spec.rb b/spec/models/work_package/exporter/csv_integration_spec.rb index 55e4c1b716..c95b9e1d7e 100644 --- a/spec/models/work_package/exporter/csv_integration_spec.rb +++ b/spec/models/work_package/exporter/csv_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/hooks_spec.rb b/spec/models/work_package/hooks_spec.rb index 8ed5574bf3..614d3cd51e 100644 --- a/spec/models/work_package/hooks_spec.rb +++ b/spec/models/work_package/hooks_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/openproject_notifications_spec.rb b/spec/models/work_package/openproject_notifications_spec.rb index 1a8145af80..667964be94 100644 --- a/spec/models/work_package/openproject_notifications_spec.rb +++ b/spec/models/work_package/openproject_notifications_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_acts_as_event_spec.rb b/spec/models/work_package/work_package_acts_as_event_spec.rb index c4026a0630..742d0a207f 100644 --- a/spec/models/work_package/work_package_acts_as_event_spec.rb +++ b/spec/models/work_package/work_package_acts_as_event_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_acts_as_journalized_spec.rb b/spec/models/work_package/work_package_acts_as_journalized_spec.rb index 3c7c4a5639..d00c1d082f 100644 --- a/spec/models/work_package/work_package_acts_as_journalized_spec.rb +++ b/spec/models/work_package/work_package_acts_as_journalized_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_acts_as_searchable_spec.rb b/spec/models/work_package/work_package_acts_as_searchable_spec.rb index 3d259447d8..648c14c06d 100644 --- a/spec/models/work_package/work_package_acts_as_searchable_spec.rb +++ b/spec/models/work_package/work_package_acts_as_searchable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_acts_as_watchable_spec.rb b/spec/models/work_package/work_package_acts_as_watchable_spec.rb index 375521d8af..482ae3e78f 100644 --- a/spec/models/work_package/work_package_acts_as_watchable_spec.rb +++ b/spec/models/work_package/work_package_acts_as_watchable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_custom_actions_spec.rb b/spec/models/work_package/work_package_custom_actions_spec.rb index f3843c7b49..eb8cd4b671 100644 --- a/spec/models/work_package/work_package_custom_actions_spec.rb +++ b/spec/models/work_package/work_package_custom_actions_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_custom_fields_spec.rb b/spec/models/work_package/work_package_custom_fields_spec.rb index eaf058c8ca..531c1bd6af 100644 --- a/spec/models/work_package/work_package_custom_fields_spec.rb +++ b/spec/models/work_package/work_package_custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_multi_value_custom_fields_spec.rb b/spec/models/work_package/work_package_multi_value_custom_fields_spec.rb index 3f7ead715d..72358f4551 100644 --- a/spec/models/work_package/work_package_multi_value_custom_fields_spec.rb +++ b/spec/models/work_package/work_package_multi_value_custom_fields_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_relations_spec.rb b/spec/models/work_package/work_package_relations_spec.rb index deb6bb6983..ee6da784bc 100644 --- a/spec/models/work_package/work_package_relations_spec.rb +++ b/spec/models/work_package/work_package_relations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_scheduling_spec.rb b/spec/models/work_package/work_package_scheduling_spec.rb index 51a1594603..b9bb62de59 100644 --- a/spec/models/work_package/work_package_scheduling_spec.rb +++ b/spec/models/work_package/work_package_scheduling_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_status_spec.rb b/spec/models/work_package/work_package_status_spec.rb index c23a6f361b..fc12e08809 100644 --- a/spec/models/work_package/work_package_status_spec.rb +++ b/spec/models/work_package/work_package_status_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package/work_package_visibility_spec.rb b/spec/models/work_package/work_package_visibility_spec.rb index d85527fbee..a01fe1aa50 100644 --- a/spec/models/work_package/work_package_visibility_spec.rb +++ b/spec/models/work_package/work_package_visibility_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package_custom_field_spec.rb b/spec/models/work_package_custom_field_spec.rb index da46c10c2c..d142fb31f2 100644 --- a/spec/models/work_package_custom_field_spec.rb +++ b/spec/models/work_package_custom_field_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_package_spec.rb b/spec/models/work_package_spec.rb index 5d98169225..38d4eff5eb 100644 --- a/spec/models/work_package_spec.rb +++ b/spec/models/work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_packages/derived_dates_spec.rb b/spec/models/work_packages/derived_dates_spec.rb index 69939ef129..1fb8f5121c 100644 --- a/spec/models/work_packages/derived_dates_spec.rb +++ b/spec/models/work_packages/derived_dates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_packages/scopes/for_scheduling_spec.rb b/spec/models/work_packages/scopes/for_scheduling_spec.rb index 1032ef8448..fcf5845ee9 100644 --- a/spec/models/work_packages/scopes/for_scheduling_spec.rb +++ b/spec/models/work_packages/scopes/for_scheduling_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/work_packages/spent_time_spec.rb b/spec/models/work_packages/spent_time_spec.rb index 8ff01eb226..2e7ab9e652 100644 --- a/spec/models/work_packages/spent_time_spec.rb +++ b/spec/models/work_packages/spent_time_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/models/workflow_spec.rb b/spec/models/workflow_spec.rb index 1f621cfe6a..a33731eeed 100644 --- a/spec/models/workflow_spec.rb +++ b/spec/models/workflow_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/add_messages_spec.rb b/spec/permissions/add_messages_spec.rb index f35e4e8c33..d993379426 100644 --- a/spec/permissions/add_messages_spec.rb +++ b/spec/permissions/add_messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/copy_projects_spec.rb b/spec/permissions/copy_projects_spec.rb index 836264cc00..d0521b01a7 100644 --- a/spec/permissions/copy_projects_spec.rb +++ b/spec/permissions/copy_projects_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/delete_work_packages_spec.rb b/spec/permissions/delete_work_packages_spec.rb index 4b6fed8e9f..339a872e36 100644 --- a/spec/permissions/delete_work_packages_spec.rb +++ b/spec/permissions/delete_work_packages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/edit_messages_spec.rb b/spec/permissions/edit_messages_spec.rb index 22aa5da53e..9664be313d 100644 --- a/spec/permissions/edit_messages_spec.rb +++ b/spec/permissions/edit_messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/edit_own_messages_spec.rb b/spec/permissions/edit_own_messages_spec.rb index aeb75bd44e..1ad9cf857f 100644 --- a/spec/permissions/edit_own_messages_spec.rb +++ b/spec/permissions/edit_own_messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/edit_wiki_pages_spec.rb b/spec/permissions/edit_wiki_pages_spec.rb index 16c4de0578..a9f12dfd1a 100644 --- a/spec/permissions/edit_wiki_pages_spec.rb +++ b/spec/permissions/edit_wiki_pages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/export_work_packages_spec.rb b/spec/permissions/export_work_packages_spec.rb index 854de41e60..c37cf5dc80 100644 --- a/spec/permissions/export_work_packages_spec.rb +++ b/spec/permissions/export_work_packages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/manage_forums_spec.rb b/spec/permissions/manage_forums_spec.rb index 97b3b1909e..9b3b5655ab 100644 --- a/spec/permissions/manage_forums_spec.rb +++ b/spec/permissions/manage_forums_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/manage_news_spec.rb b/spec/permissions/manage_news_spec.rb index 767bf7ca68..43de1fd2f8 100644 --- a/spec/permissions/manage_news_spec.rb +++ b/spec/permissions/manage_news_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/manage_repositories_spec.rb b/spec/permissions/manage_repositories_spec.rb index eff5f0dcd9..5fa95e47bd 100644 --- a/spec/permissions/manage_repositories_spec.rb +++ b/spec/permissions/manage_repositories_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/view_work_packages_spec.rb b/spec/permissions/view_work_packages_spec.rb index 3ef95a9eff..b75dab366e 100644 --- a/spec/permissions/view_work_packages_spec.rb +++ b/spec/permissions/view_work_packages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/permissions/work_packages_bulk_spec.rb b/spec/permissions/work_packages_bulk_spec.rb index 18d6e5497c..6982f1aaeb 100644 --- a/spec/permissions/work_packages_bulk_spec.rb +++ b/spec/permissions/work_packages_bulk_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/policies/query_policy_spec.rb b/spec/policies/query_policy_spec.rb index 42b3ea8ed1..5400490592 100644 --- a/spec/policies/query_policy_spec.rb +++ b/spec/policies/query_policy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/policies/redirect_policy_spec.rb b/spec/policies/redirect_policy_spec.rb index 792361c218..7cbe428413 100644 --- a/spec/policies/redirect_policy_spec.rb +++ b/spec/policies/redirect_policy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/policies/work_package_policy_spec.rb b/spec/policies/work_package_policy_spec.rb index c59cb8705a..2c50f57d95 100644 --- a/spec/policies/work_package_policy_spec.rb +++ b/spec/policies/work_package_policy_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/action_resource_spec.rb b/spec/requests/api/v3/action_resource_spec.rb index b5d64a12ca..6c444e0786 100644 --- a/spec/requests/api/v3/action_resource_spec.rb +++ b/spec/requests/api/v3/action_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/activities_api_spec.rb b/spec/requests/api/v3/activities_api_spec.rb index cbca66935b..a173bcdbbb 100644 --- a/spec/requests/api/v3/activities_api_spec.rb +++ b/spec/requests/api/v3/activities_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/activities_by_work_package_resource_spec.rb b/spec/requests/api/v3/activities_by_work_package_resource_spec.rb index 745b284ff9..60a303561a 100644 --- a/spec/requests/api/v3/activities_by_work_package_resource_spec.rb +++ b/spec/requests/api/v3/activities_by_work_package_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments/attachment_resource_shared_examples.rb b/spec/requests/api/v3/attachments/attachment_resource_shared_examples.rb index e883287dde..24a7f06314 100644 --- a/spec/requests/api/v3/attachments/attachment_resource_shared_examples.rb +++ b/spec/requests/api/v3/attachments/attachment_resource_shared_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments/forum_message_spec.rb b/spec/requests/api/v3/attachments/forum_message_spec.rb index 871d1362d3..5797bea62e 100644 --- a/spec/requests/api/v3/attachments/forum_message_spec.rb +++ b/spec/requests/api/v3/attachments/forum_message_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments/wiki_page_spec.rb b/spec/requests/api/v3/attachments/wiki_page_spec.rb index 3b21db3df2..d0821e77ff 100644 --- a/spec/requests/api/v3/attachments/wiki_page_spec.rb +++ b/spec/requests/api/v3/attachments/wiki_page_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments/work_package_spec.rb b/spec/requests/api/v3/attachments/work_package_spec.rb index d3bcc2ad8f..fd59d549a0 100644 --- a/spec/requests/api/v3/attachments/work_package_spec.rb +++ b/spec/requests/api/v3/attachments/work_package_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments/work_packages_export_spec.rb b/spec/requests/api/v3/attachments/work_packages_export_spec.rb index 972b5e6fe5..b29ba864d8 100644 --- a/spec/requests/api/v3/attachments/work_packages_export_spec.rb +++ b/spec/requests/api/v3/attachments/work_packages_export_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/attachments_spec.rb b/spec/requests/api/v3/attachments_spec.rb index a923f29309..0a17d7ee62 100644 --- a/spec/requests/api/v3/attachments_spec.rb +++ b/spec/requests/api/v3/attachments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/authentication_spec.rb b/spec/requests/api/v3/authentication_spec.rb index 21a8b2c292..9b624a2e75 100644 --- a/spec/requests/api/v3/authentication_spec.rb +++ b/spec/requests/api/v3/authentication_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/backups/backups_api_spec.rb b/spec/requests/api/v3/backups/backups_api_spec.rb index cd8e32f56b..da043ddea5 100644 --- a/spec/requests/api/v3/backups/backups_api_spec.rb +++ b/spec/requests/api/v3/backups/backups_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/capabilities/contexts/global_resource_spec.rb b/spec/requests/api/v3/capabilities/contexts/global_resource_spec.rb index b91ddcff68..6834837e3c 100644 --- a/spec/requests/api/v3/capabilities/contexts/global_resource_spec.rb +++ b/spec/requests/api/v3/capabilities/contexts/global_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/capability_resource_spec.rb b/spec/requests/api/v3/capability_resource_spec.rb index 807049245a..dc960051d2 100644 --- a/spec/requests/api/v3/capability_resource_spec.rb +++ b/spec/requests/api/v3/capability_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/category_resource_spec.rb b/spec/requests/api/v3/category_resource_spec.rb index 722b3ad04d..c7dde53153 100644 --- a/spec/requests/api/v3/category_resource_spec.rb +++ b/spec/requests/api/v3/category_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/configuration_resource_spec.rb b/spec/requests/api/v3/configuration_resource_spec.rb index c7f2f77a97..5488c6898f 100644 --- a/spec/requests/api/v3/configuration_resource_spec.rb +++ b/spec/requests/api/v3/configuration_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/cors_header_spec.rb b/spec/requests/api/v3/cors_header_spec.rb index 2c0103352c..cb7fdfe43b 100644 --- a/spec/requests/api/v3/cors_header_spec.rb +++ b/spec/requests/api/v3/cors_header_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/custom_actions/custom_actions_api_spec.rb b/spec/requests/api/v3/custom_actions/custom_actions_api_spec.rb index a0d2dc9fe1..fc83b591fa 100644 --- a/spec/requests/api/v3/custom_actions/custom_actions_api_spec.rb +++ b/spec/requests/api/v3/custom_actions/custom_actions_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/custom_options/custom_options_resource_spec.rb b/spec/requests/api/v3/custom_options/custom_options_resource_spec.rb index 248498b0c7..517bcc8e40 100644 --- a/spec/requests/api/v3/custom_options/custom_options_resource_spec.rb +++ b/spec/requests/api/v3/custom_options/custom_options_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/groups/group_resource_spec.rb b/spec/requests/api/v3/groups/group_resource_spec.rb index c79ac932d2..05dffe17b7 100644 --- a/spec/requests/api/v3/groups/group_resource_spec.rb +++ b/spec/requests/api/v3/groups/group_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/help_texts/help_texts_resource_spec.rb b/spec/requests/api/v3/help_texts/help_texts_resource_spec.rb index fe6189d3ab..1e3336361b 100644 --- a/spec/requests/api/v3/help_texts/help_texts_resource_spec.rb +++ b/spec/requests/api/v3/help_texts/help_texts_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/locale_spec.rb b/spec/requests/api/v3/locale_spec.rb index 44652f177f..c38365c674 100644 --- a/spec/requests/api/v3/locale_spec.rb +++ b/spec/requests/api/v3/locale_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/membership_resources_spec.rb b/spec/requests/api/v3/membership_resources_spec.rb index 6df6b20de1..9349c62bfe 100644 --- a/spec/requests/api/v3/membership_resources_spec.rb +++ b/spec/requests/api/v3/membership_resources_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/memberships/available_projects_resource_spec.rb b/spec/requests/api/v3/memberships/available_projects_resource_spec.rb index d64d58fed2..dc256ca78b 100644 --- a/spec/requests/api/v3/memberships/available_projects_resource_spec.rb +++ b/spec/requests/api/v3/memberships/available_projects_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/memberships/schemas/membership_schema_resource_spec.rb b/spec/requests/api/v3/memberships/schemas/membership_schema_resource_spec.rb index a1726a3703..a8f41c9382 100644 --- a/spec/requests/api/v3/memberships/schemas/membership_schema_resource_spec.rb +++ b/spec/requests/api/v3/memberships/schemas/membership_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/news_resource_spec.rb b/spec/requests/api/v3/news_resource_spec.rb index 08de316715..f4946fb34f 100644 --- a/spec/requests/api/v3/news_resource_spec.rb +++ b/spec/requests/api/v3/news_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/posts_resource_spec.rb b/spec/requests/api/v3/posts_resource_spec.rb index 5e752e916b..7ff191791d 100644 --- a/spec/requests/api/v3/posts_resource_spec.rb +++ b/spec/requests/api/v3/posts_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/principals/principals_resource_spec.rb b/spec/requests/api/v3/principals/principals_resource_spec.rb index db5c9d8fa4..ca7ba5308a 100644 --- a/spec/requests/api/v3/principals/principals_resource_spec.rb +++ b/spec/requests/api/v3/principals/principals_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/priority_resource_spec.rb b/spec/requests/api/v3/priority_resource_spec.rb index 5eb606bc78..1f4509c874 100644 --- a/spec/requests/api/v3/priority_resource_spec.rb +++ b/spec/requests/api/v3/priority_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/available_assignees_api_spec.rb b/spec/requests/api/v3/projects/available_assignees_api_spec.rb index 3741fc19dc..9e3d3fa470 100644 --- a/spec/requests/api/v3/projects/available_assignees_api_spec.rb +++ b/spec/requests/api/v3/projects/available_assignees_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/available_parents_resource_spec.rb b/spec/requests/api/v3/projects/available_parents_resource_spec.rb index f116751ca2..bbe223a286 100644 --- a/spec/requests/api/v3/projects/available_parents_resource_spec.rb +++ b/spec/requests/api/v3/projects/available_parents_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/available_responsibles_api_spec.rb b/spec/requests/api/v3/projects/available_responsibles_api_spec.rb index 08860ccd4b..bdb2111e80 100644 --- a/spec/requests/api/v3/projects/available_responsibles_api_spec.rb +++ b/spec/requests/api/v3/projects/available_responsibles_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/create_resource_spec.rb b/spec/requests/api/v3/projects/create_resource_spec.rb index b6bb63052b..f015668219 100644 --- a/spec/requests/api/v3/projects/create_resource_spec.rb +++ b/spec/requests/api/v3/projects/create_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/delete_resource_spec.rb b/spec/requests/api/v3/projects/delete_resource_spec.rb index fe93208a89..efb977bf81 100644 --- a/spec/requests/api/v3/projects/delete_resource_spec.rb +++ b/spec/requests/api/v3/projects/delete_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/index_resource_spec.rb b/spec/requests/api/v3/projects/index_resource_spec.rb index e612033e96..67931a8996 100644 --- a/spec/requests/api/v3/projects/index_resource_spec.rb +++ b/spec/requests/api/v3/projects/index_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/schemas/project_schema_resource_spec.rb b/spec/requests/api/v3/projects/schemas/project_schema_resource_spec.rb index 7513f03301..30f3b19034 100644 --- a/spec/requests/api/v3/projects/schemas/project_schema_resource_spec.rb +++ b/spec/requests/api/v3/projects/schemas/project_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/show_resource_spec.rb b/spec/requests/api/v3/projects/show_resource_spec.rb index a1303075a5..bb152fafed 100644 --- a/spec/requests/api/v3/projects/show_resource_spec.rb +++ b/spec/requests/api/v3/projects/show_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/statuses/project_status_resource_spec.rb b/spec/requests/api/v3/projects/statuses/project_status_resource_spec.rb index da212613f7..306e4829ca 100644 --- a/spec/requests/api/v3/projects/statuses/project_status_resource_spec.rb +++ b/spec/requests/api/v3/projects/statuses/project_status_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/update_resource_spec.rb b/spec/requests/api/v3/projects/update_resource_spec.rb index dfb5734e78..ab00536460 100644 --- a/spec/requests/api/v3/projects/update_resource_spec.rb +++ b/spec/requests/api/v3/projects/update_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/projects/version_resource_spec.rb b/spec/requests/api/v3/projects/version_resource_spec.rb index 59e1d2876e..ccce8c05ab 100644 --- a/spec/requests/api/v3/projects/version_resource_spec.rb +++ b/spec/requests/api/v3/projects/version_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/columns/query_columns_resource_spec.rb b/spec/requests/api/v3/queries/columns/query_columns_resource_spec.rb index ca9a0e8f57..7591fc7666 100644 --- a/spec/requests/api/v3/queries/columns/query_columns_resource_spec.rb +++ b/spec/requests/api/v3/queries/columns/query_columns_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/create_query_spec.rb b/spec/requests/api/v3/queries/create_query_spec.rb index b77e3cd304..ab8a117b9e 100644 --- a/spec/requests/api/v3/queries/create_query_spec.rb +++ b/spec/requests/api/v3/queries/create_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/filters/query_filters_resource_spec.rb b/spec/requests/api/v3/queries/filters/query_filters_resource_spec.rb index d40a9ce5a5..4210d8c0d1 100644 --- a/spec/requests/api/v3/queries/filters/query_filters_resource_spec.rb +++ b/spec/requests/api/v3/queries/filters/query_filters_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/group_bys/query_group_bys_resource_spec.rb b/spec/requests/api/v3/queries/group_bys/query_group_bys_resource_spec.rb index 6dd4293f71..7ed2c97df7 100644 --- a/spec/requests/api/v3/queries/group_bys/query_group_bys_resource_spec.rb +++ b/spec/requests/api/v3/queries/group_bys/query_group_bys_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/operators/query_operators_resource_spec.rb b/spec/requests/api/v3/queries/operators/query_operators_resource_spec.rb index 08ce1e2b05..50753d95c8 100644 --- a/spec/requests/api/v3/queries/operators/query_operators_resource_spec.rb +++ b/spec/requests/api/v3/queries/operators/query_operators_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/queries_by_project_resource_spec.rb b/spec/requests/api/v3/queries/queries_by_project_resource_spec.rb index 36ca3c2245..2a57d97c3c 100644 --- a/spec/requests/api/v3/queries/queries_by_project_resource_spec.rb +++ b/spec/requests/api/v3/queries/queries_by_project_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/query_resource_spec.rb b/spec/requests/api/v3/queries/query_resource_spec.rb index ad8b508b27..1011e014b1 100644 --- a/spec/requests/api/v3/queries/query_resource_spec.rb +++ b/spec/requests/api/v3/queries/query_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/schemas/query_filter_instance_schema_resource_spec.rb b/spec/requests/api/v3/queries/schemas/query_filter_instance_schema_resource_spec.rb index e468176532..a12ca535c5 100644 --- a/spec/requests/api/v3/queries/schemas/query_filter_instance_schema_resource_spec.rb +++ b/spec/requests/api/v3/queries/schemas/query_filter_instance_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/schemas/query_project_schema_resource_spec.rb b/spec/requests/api/v3/queries/schemas/query_project_schema_resource_spec.rb index 7d413396b7..bffe5b3c73 100644 --- a/spec/requests/api/v3/queries/schemas/query_project_schema_resource_spec.rb +++ b/spec/requests/api/v3/queries/schemas/query_project_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/schemas/query_schema_resource_spec.rb b/spec/requests/api/v3/queries/schemas/query_schema_resource_spec.rb index 8c5ec6ea5e..f9d3aec16c 100644 --- a/spec/requests/api/v3/queries/schemas/query_schema_resource_spec.rb +++ b/spec/requests/api/v3/queries/schemas/query_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/sort_bys/query_sort_bys_resource_spec.rb b/spec/requests/api/v3/queries/sort_bys/query_sort_bys_resource_spec.rb index 8bd798e467..27297dc236 100644 --- a/spec/requests/api/v3/queries/sort_bys/query_sort_bys_resource_spec.rb +++ b/spec/requests/api/v3/queries/sort_bys/query_sort_bys_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/queries/update_query_spec.rb b/spec/requests/api/v3/queries/update_query_spec.rb index 724d627458..8a50937442 100644 --- a/spec/requests/api/v3/queries/update_query_spec.rb +++ b/spec/requests/api/v3/queries/update_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/rack_deflater_spec.rb b/spec/requests/api/v3/rack_deflater_spec.rb index 6f62c43f50..0cbabbb40e 100644 --- a/spec/requests/api/v3/rack_deflater_spec.rb +++ b/spec/requests/api/v3/rack_deflater_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/relations/relations_api_spec.rb b/spec/requests/api/v3/relations/relations_api_spec.rb index 249c244b8a..6b29fff9e4 100644 --- a/spec/requests/api/v3/relations/relations_api_spec.rb +++ b/spec/requests/api/v3/relations/relations_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/relations/relations_index_spec.rb b/spec/requests/api/v3/relations/relations_index_spec.rb index e5dde2b6a8..d867825dad 100644 --- a/spec/requests/api/v3/relations/relations_index_spec.rb +++ b/spec/requests/api/v3/relations/relations_index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/relations_resource_spec.rb b/spec/requests/api/v3/relations_resource_spec.rb index f6f21dd5b7..d1aeb19a84 100644 --- a/spec/requests/api/v3/relations_resource_spec.rb +++ b/spec/requests/api/v3/relations_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/render_resource_spec.rb b/spec/requests/api/v3/render_resource_spec.rb index a8096dfd46..9579c52a3c 100644 --- a/spec/requests/api/v3/render_resource_spec.rb +++ b/spec/requests/api/v3/render_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/repositories/revisions_by_work_package_resource_spec.rb b/spec/requests/api/v3/repositories/revisions_by_work_package_resource_spec.rb index af8a16643e..1f73e6826f 100644 --- a/spec/requests/api/v3/repositories/revisions_by_work_package_resource_spec.rb +++ b/spec/requests/api/v3/repositories/revisions_by_work_package_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/repositories/revisions_resource_spec.rb b/spec/requests/api/v3/repositories/revisions_resource_spec.rb index 1dc9ab6933..8bc9a4bd74 100644 --- a/spec/requests/api/v3/repositories/revisions_resource_spec.rb +++ b/spec/requests/api/v3/repositories/revisions_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/role_resource_spec.rb b/spec/requests/api/v3/role_resource_spec.rb index f9cb78209f..48b2543f64 100644 --- a/spec/requests/api/v3/role_resource_spec.rb +++ b/spec/requests/api/v3/role_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/root_resource_spec.rb b/spec/requests/api/v3/root_resource_spec.rb index a5eea4bb26..604b09eec4 100644 --- a/spec/requests/api/v3/root_resource_spec.rb +++ b/spec/requests/api/v3/root_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/status_resource_spec.rb b/spec/requests/api/v3/status_resource_spec.rb index 974c73447c..8ca7f018a7 100644 --- a/spec/requests/api/v3/status_resource_spec.rb +++ b/spec/requests/api/v3/status_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/string_objects_resource_spec.rb b/spec/requests/api/v3/string_objects_resource_spec.rb index f6081742ba..201ab8ea32 100644 --- a/spec/requests/api/v3/string_objects_resource_spec.rb +++ b/spec/requests/api/v3/string_objects_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/support/api_helper.rb b/spec/requests/api/v3/support/api_helper.rb index 5874762270..f668dd67d5 100644 --- a/spec/requests/api/v3/support/api_helper.rb +++ b/spec/requests/api/v3/support/api_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/support/api_v3_collection_response.rb b/spec/requests/api/v3/support/api_v3_collection_response.rb index 3b28e6acd0..c7fe071f4e 100644 --- a/spec/requests/api/v3/support/api_v3_collection_response.rb +++ b/spec/requests/api/v3/support/api_v3_collection_response.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/support/authorization.rb b/spec/requests/api/v3/support/authorization.rb index 0189a9ccb4..b974b04d46 100644 --- a/spec/requests/api/v3/support/authorization.rb +++ b/spec/requests/api/v3/support/authorization.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/support/response_examples.rb b/spec/requests/api/v3/support/response_examples.rb index f1d3c704eb..7ce92bedb8 100644 --- a/spec/requests/api/v3/support/response_examples.rb +++ b/spec/requests/api/v3/support/response_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/types/type_resource_spec.rb b/spec/requests/api/v3/types/type_resource_spec.rb index 82fa499551..43b489331b 100644 --- a/spec/requests/api/v3/types/type_resource_spec.rb +++ b/spec/requests/api/v3/types/type_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/types/types_by_project_resource_spec.rb b/spec/requests/api/v3/types/types_by_project_resource_spec.rb index 9b056fb87c..fe6bcd3cb9 100644 --- a/spec/requests/api/v3/types/types_by_project_resource_spec.rb +++ b/spec/requests/api/v3/types/types_by_project_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/user/schemas/user_schema_resource_spec.rb b/spec/requests/api/v3/user/schemas/user_schema_resource_spec.rb index c7a7cebe54..492eb90adb 100644 --- a/spec/requests/api/v3/user/schemas/user_schema_resource_spec.rb +++ b/spec/requests/api/v3/user/schemas/user_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/user/user_resource_spec.rb b/spec/requests/api/v3/user/user_resource_spec.rb index 279d7e8e88..e27b493dc3 100644 --- a/spec/requests/api/v3/user/user_resource_spec.rb +++ b/spec/requests/api/v3/user/user_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/user/userlock_resource_spec.rb b/spec/requests/api/v3/user/userlock_resource_spec.rb index 282faf1bda..87dc0a4ee9 100644 --- a/spec/requests/api/v3/user/userlock_resource_spec.rb +++ b/spec/requests/api/v3/user/userlock_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/user_preferences/user_preferences_resource_spec.rb b/spec/requests/api/v3/user_preferences/user_preferences_resource_spec.rb index c08302fee2..d128fa7485 100644 --- a/spec/requests/api/v3/user_preferences/user_preferences_resource_spec.rb +++ b/spec/requests/api/v3/user_preferences/user_preferences_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/version_resource_spec.rb b/spec/requests/api/v3/version_resource_spec.rb index 6aa86e808a..2190946cbf 100644 --- a/spec/requests/api/v3/version_resource_spec.rb +++ b/spec/requests/api/v3/version_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/versions/available_projects_resource_spec.rb b/spec/requests/api/v3/versions/available_projects_resource_spec.rb index 887b25e2b2..870f30071a 100644 --- a/spec/requests/api/v3/versions/available_projects_resource_spec.rb +++ b/spec/requests/api/v3/versions/available_projects_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/versions/project_resource_spec.rb b/spec/requests/api/v3/versions/project_resource_spec.rb index 62256658f6..a9c34734f1 100644 --- a/spec/requests/api/v3/versions/project_resource_spec.rb +++ b/spec/requests/api/v3/versions/project_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/versions/schemas/version_schema_resource_spec.rb b/spec/requests/api/v3/versions/schemas/version_schema_resource_spec.rb index 7d055ba79c..a0f42844d2 100644 --- a/spec/requests/api/v3/versions/schemas/version_schema_resource_spec.rb +++ b/spec/requests/api/v3/versions/schemas/version_schema_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/watcher_resource_spec.rb b/spec/requests/api/v3/watcher_resource_spec.rb index 945df2ee15..162f9e70df 100644 --- a/spec/requests/api/v3/watcher_resource_spec.rb +++ b/spec/requests/api/v3/watcher_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/wiki_pages_resource_spec.rb b/spec/requests/api/v3/wiki_pages_resource_spec.rb index 44c886f571..04f69bdb67 100644 --- a/spec/requests/api/v3/wiki_pages_resource_spec.rb +++ b/spec/requests/api/v3/wiki_pages_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/available_projects_on_create_api_spec.rb b/spec/requests/api/v3/work_packages/available_projects_on_create_api_spec.rb index 524c1b2e71..de1e6307f8 100644 --- a/spec/requests/api/v3/work_packages/available_projects_on_create_api_spec.rb +++ b/spec/requests/api/v3/work_packages/available_projects_on_create_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/available_projects_on_edit_api_spec.rb b/spec/requests/api/v3/work_packages/available_projects_on_edit_api_spec.rb index 6e23810d5e..6ac3924d70 100644 --- a/spec/requests/api/v3/work_packages/available_projects_on_edit_api_spec.rb +++ b/spec/requests/api/v3/work_packages/available_projects_on_edit_api_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/available_relation_candidates_spec.rb b/spec/requests/api/v3/work_packages/available_relation_candidates_spec.rb index 524f565c5c..e09e260979 100644 --- a/spec/requests/api/v3/work_packages/available_relation_candidates_spec.rb +++ b/spec/requests/api/v3/work_packages/available_relation_candidates_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/create_resource_spec.rb b/spec/requests/api/v3/work_packages/create_resource_spec.rb index 6521258850..b5dc3d7d2b 100644 --- a/spec/requests/api/v3/work_packages/create_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/create_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/delete_resource_spec.rb b/spec/requests/api/v3/work_packages/delete_resource_spec.rb index deac12b9d1..f61895eed7 100644 --- a/spec/requests/api/v3/work_packages/delete_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/delete_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/dependent_errors_spec.rb b/spec/requests/api/v3/work_packages/dependent_errors_spec.rb index b181c4e664..e123b84aa8 100644 --- a/spec/requests/api/v3/work_packages/dependent_errors_spec.rb +++ b/spec/requests/api/v3/work_packages/dependent_errors_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/form/work_package_form_resource_spec.rb b/spec/requests/api/v3/work_packages/form/work_package_form_resource_spec.rb index c2f5d45ed3..63b67cf332 100644 --- a/spec/requests/api/v3/work_packages/form/work_package_form_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/form/work_package_form_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/index_resource_spec.rb b/spec/requests/api/v3/work_packages/index_resource_spec.rb index 368e243fca..72085ad21d 100644 --- a/spec/requests/api/v3/work_packages/index_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/index_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/show_resource_spec.rb b/spec/requests/api/v3/work_packages/show_resource_spec.rb index 3f9c9496c1..b5af92218c 100644 --- a/spec/requests/api/v3/work_packages/show_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/show_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/update_resource_spec.rb b/spec/requests/api/v3/work_packages/update_resource_spec.rb index af2b13bd5c..8beebcbba9 100644 --- a/spec/requests/api/v3/work_packages/update_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/update_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/api/v3/work_packages/work_packages_schemas_resource_spec.rb b/spec/requests/api/v3/work_packages/work_packages_schemas_resource_spec.rb index ae7b7b0999..d7cc6f9164 100644 --- a/spec/requests/api/v3/work_packages/work_packages_schemas_resource_spec.rb +++ b/spec/requests/api/v3/work_packages/work_packages_schemas_resource_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/auth/auth_source_sso_spec.rb b/spec/requests/auth/auth_source_sso_spec.rb index 0c72e8d062..a4b3eb9cfa 100644 --- a/spec/requests/auth/auth_source_sso_spec.rb +++ b/spec/requests/auth/auth_source_sso_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/auth/oauth_login_csp_spec.rb b/spec/requests/auth/oauth_login_csp_spec.rb index e2abd0c352..140a86dd55 100644 --- a/spec/requests/auth/oauth_login_csp_spec.rb +++ b/spec/requests/auth/oauth_login_csp_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/auth/token_based_access_spec.rb b/spec/requests/auth/token_based_access_spec.rb index 118e5f3d07..b012117807 100644 --- a/spec/requests/auth/token_based_access_spec.rb +++ b/spec/requests/auth/token_based_access_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/requests/oauth/client_credentials_flow_spec.rb b/spec/requests/oauth/client_credentials_flow_spec.rb index 1f78cc5acf..5120b5b30e 100644 --- a/spec/requests/oauth/client_credentials_flow_spec.rb +++ b/spec/requests/oauth/client_credentials_flow_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/account_spec.rb b/spec/routing/account_spec.rb index 113df478d0..92b6aeaf6b 100644 --- a/spec/routing/account_spec.rb +++ b/spec/routing/account_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/activities_spec.rb b/spec/routing/activities_spec.rb index c38f99577e..192759df36 100644 --- a/spec/routing/activities_spec.rb +++ b/spec/routing/activities_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/admin/incoming_mails_spec.rb b/spec/routing/admin/incoming_mails_spec.rb index ce99aca40f..434586b751 100644 --- a/spec/routing/admin/incoming_mails_spec.rb +++ b/spec/routing/admin/incoming_mails_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/admin/mail_notifications_spec.rb b/spec/routing/admin/mail_notifications_spec.rb index 7f53155c49..9cc1bea817 100644 --- a/spec/routing/admin/mail_notifications_spec.rb +++ b/spec/routing/admin/mail_notifications_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/admin_spec.rb b/spec/routing/admin_spec.rb index 1ca2c50868..18f0a0774e 100644 --- a/spec/routing/admin_spec.rb +++ b/spec/routing/admin_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/attachments_spec.rb b/spec/routing/attachments_spec.rb index be47b9f2f7..388dd59784 100644 --- a/spec/routing/attachments_spec.rb +++ b/spec/routing/attachments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/attribute_help_text_spec.rb b/spec/routing/attribute_help_text_spec.rb index 69996c1e16..aca6b2467f 100644 --- a/spec/routing/attribute_help_text_spec.rb +++ b/spec/routing/attribute_help_text_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/categories_spec.rb b/spec/routing/categories_spec.rb index ffb9f15d1d..ed5aeb5102 100644 --- a/spec/routing/categories_spec.rb +++ b/spec/routing/categories_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/custom_actions_spec.rb b/spec/routing/custom_actions_spec.rb index 7950ad73f2..df52fe0ca3 100644 --- a/spec/routing/custom_actions_spec.rb +++ b/spec/routing/custom_actions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/enterprise_routing_spec.rb b/spec/routing/enterprise_routing_spec.rb index f941a70717..38261bd269 100644 --- a/spec/routing/enterprise_routing_spec.rb +++ b/spec/routing/enterprise_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/enumerations_spec.rb b/spec/routing/enumerations_spec.rb index add8ef0099..48af19f06b 100644 --- a/spec/routing/enumerations_spec.rb +++ b/spec/routing/enumerations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/errors_routing_spec.rb b/spec/routing/errors_routing_spec.rb index 15cba3469e..c235e38ec4 100644 --- a/spec/routing/errors_routing_spec.rb +++ b/spec/routing/errors_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/forums_routing_spec.rb b/spec/routing/forums_routing_spec.rb index ddeecd187f..0519e7ae81 100644 --- a/spec/routing/forums_routing_spec.rb +++ b/spec/routing/forums_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/groups_spec.rb b/spec/routing/groups_spec.rb index 90d0cc9748..c4c7e67805 100644 --- a/spec/routing/groups_spec.rb +++ b/spec/routing/groups_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/help_routing_spec.rb b/spec/routing/help_routing_spec.rb index 7435014dbc..25382d8e68 100644 --- a/spec/routing/help_routing_spec.rb +++ b/spec/routing/help_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/homescreen_spec.rb b/spec/routing/homescreen_spec.rb index bd44f067fd..b7b3f0aedc 100644 --- a/spec/routing/homescreen_spec.rb +++ b/spec/routing/homescreen_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/journals_spec.rb b/spec/routing/journals_spec.rb index 70483106c8..86c550d8b1 100644 --- a/spec/routing/journals_spec.rb +++ b/spec/routing/journals_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/members_spec.rb b/spec/routing/members_spec.rb index f1734a5840..a206099d59 100644 --- a/spec/routing/members_spec.rb +++ b/spec/routing/members_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/messages_spec.rb b/spec/routing/messages_spec.rb index c4a155cf94..d394dc17d7 100644 --- a/spec/routing/messages_spec.rb +++ b/spec/routing/messages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/my_spec.rb b/spec/routing/my_spec.rb index b29f3e3538..3338c6174d 100644 --- a/spec/routing/my_spec.rb +++ b/spec/routing/my_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/news_comments_spec.rb b/spec/routing/news_comments_spec.rb index 3c3bb725ec..09f9910c51 100644 --- a/spec/routing/news_comments_spec.rb +++ b/spec/routing/news_comments_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/news_spec.rb b/spec/routing/news_spec.rb index ffb1fbf06b..aec429e811 100644 --- a/spec/routing/news_spec.rb +++ b/spec/routing/news_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/old_issue_2_wp_spec.rb b/spec/routing/old_issue_2_wp_spec.rb index 7fa60a43fc..6f1fafcaa0 100644 --- a/spec/routing/old_issue_2_wp_spec.rb +++ b/spec/routing/old_issue_2_wp_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb index 485554a0ef..edec764731 100644 --- a/spec/routing/project_routing_spec.rb +++ b/spec/routing/project_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/project_settings_routing_spec.rb b/spec/routing/project_settings_routing_spec.rb index 6243c7a1f1..3a36ab6571 100644 --- a/spec/routing/project_settings_routing_spec.rb +++ b/spec/routing/project_settings_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/repositories_routing_spec.rb b/spec/routing/repositories_routing_spec.rb index ee1c35fa6a..ce50f6874c 100644 --- a/spec/routing/repositories_routing_spec.rb +++ b/spec/routing/repositories_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/roles_spec.rb b/spec/routing/roles_spec.rb index dba71bdd51..c299eed357 100644 --- a/spec/routing/roles_spec.rb +++ b/spec/routing/roles_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/search_spec.rb b/spec/routing/search_spec.rb index 3e2a0bdb78..961b3b90e1 100644 --- a/spec/routing/search_spec.rb +++ b/spec/routing/search_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/settings_spec.rb b/spec/routing/settings_spec.rb index e3f3c2f9a8..a8a37f9734 100644 --- a/spec/routing/settings_spec.rb +++ b/spec/routing/settings_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/short_uri_wp_spec.rb b/spec/routing/short_uri_wp_spec.rb index 2402b8d1e9..ef8b8bffba 100644 --- a/spec/routing/short_uri_wp_spec.rb +++ b/spec/routing/short_uri_wp_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/status_routing_spec.rb b/spec/routing/status_routing_spec.rb index 34494c1280..e414178b6a 100644 --- a/spec/routing/status_routing_spec.rb +++ b/spec/routing/status_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/types_spec.rb b/spec/routing/types_spec.rb index 43d97331d0..75b60bf43a 100644 --- a/spec/routing/types_spec.rb +++ b/spec/routing/types_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/user_memberships_routing_spec.rb b/spec/routing/user_memberships_routing_spec.rb index 744aaa07ca..6c9553276f 100644 --- a/spec/routing/user_memberships_routing_spec.rb +++ b/spec/routing/user_memberships_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/users_routing_spec.rb b/spec/routing/users_routing_spec.rb index 7f4459ae1c..d41853ed85 100644 --- a/spec/routing/users_routing_spec.rb +++ b/spec/routing/users_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/versions_spec.rb b/spec/routing/versions_spec.rb index e3e77c8755..137c32844c 100644 --- a/spec/routing/versions_spec.rb +++ b/spec/routing/versions_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/watchers_spec.rb b/spec/routing/watchers_spec.rb index 51df991f9b..196cbccda6 100644 --- a/spec/routing/watchers_spec.rb +++ b/spec/routing/watchers_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/wiki_routing_spec.rb b/spec/routing/wiki_routing_spec.rb index a0f4d08bd8..8e837a35db 100644 --- a/spec/routing/wiki_routing_spec.rb +++ b/spec/routing/wiki_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/work_package/auto_completes_routing_spec.rb b/spec/routing/work_package/auto_completes_routing_spec.rb index ab5e2d60c8..015ed851d4 100644 --- a/spec/routing/work_package/auto_completes_routing_spec.rb +++ b/spec/routing/work_package/auto_completes_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/work_package/reports_routing_spec.rb b/spec/routing/work_package/reports_routing_spec.rb index 1daa4a6222..5fceb564f3 100644 --- a/spec/routing/work_package/reports_routing_spec.rb +++ b/spec/routing/work_package/reports_routing_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/work_package_bulk_spec.rb b/spec/routing/work_package_bulk_spec.rb index 991acb9dbf..b4d412e79a 100644 --- a/spec/routing/work_package_bulk_spec.rb +++ b/spec/routing/work_package_bulk_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/work_packages_spec.rb b/spec/routing/work_packages_spec.rb index 8d81dc46bc..cd9fee440a 100644 --- a/spec/routing/work_packages_spec.rb +++ b/spec/routing/work_packages_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/routing/workflows_spec.rb b/spec/routing/workflows_spec.rb index 35607d4d37..e90b193aa0 100644 --- a/spec/routing/workflows_spec.rb +++ b/spec/routing/workflows_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/security/active_support_to_json_spec.rb b/spec/security/active_support_to_json_spec.rb index 74360da780..8396f0a2d5 100644 --- a/spec/security/active_support_to_json_spec.rb +++ b/spec/security/active_support_to_json_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/seeders/demo_data_seeder_spec.rb b/spec/seeders/demo_data_seeder_spec.rb index afd9aa4772..75c84627cc 100644 --- a/spec/seeders/demo_data_seeder_spec.rb +++ b/spec/seeders/demo_data_seeder_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/seeders/setting_seeder_spec.rb b/spec/seeders/setting_seeder_spec.rb index 79a327746a..8d60519502 100644 --- a/spec/seeders/setting_seeder_spec.rb +++ b/spec/seeders/setting_seeder_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/add_work_package_note_service_spec.rb b/spec/services/add_work_package_note_service_spec.rb index 06d01a64e1..4a5eafaa2a 100644 --- a/spec/services/add_work_package_note_service_spec.rb +++ b/spec/services/add_work_package_note_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/api/v3/parse_query_params_service_spec.rb b/spec/services/api/v3/parse_query_params_service_spec.rb index c318a1c2a7..dbbaed851b 100644 --- a/spec/services/api/v3/parse_query_params_service_spec.rb +++ b/spec/services/api/v3/parse_query_params_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/api/v3/update_query_from_v3_params_service_spec.rb b/spec/services/api/v3/update_query_from_v3_params_service_spec.rb index afcca848d8..8ece8ec78f 100644 --- a/spec/services/api/v3/update_query_from_v3_params_service_spec.rb +++ b/spec/services/api/v3/update_query_from_v3_params_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/api/v3/work_package_collection_from_query_params_service_spec.rb b/spec/services/api/v3/work_package_collection_from_query_params_service_spec.rb index 24a2288a3f..3a4b1a52aa 100644 --- a/spec/services/api/v3/work_package_collection_from_query_params_service_spec.rb +++ b/spec/services/api/v3/work_package_collection_from_query_params_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/api/v3/work_package_collection_from_query_service_spec.rb b/spec/services/api/v3/work_package_collection_from_query_service_spec.rb index 8cdbd387d8..af24e004a8 100644 --- a/spec/services/api/v3/work_package_collection_from_query_service_spec.rb +++ b/spec/services/api/v3/work_package_collection_from_query_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/enterprise_service_spec.rb b/spec/services/authorization/enterprise_service_spec.rb index 2429713732..c5cbc78b0e 100644 --- a/spec/services/authorization/enterprise_service_spec.rb +++ b/spec/services/authorization/enterprise_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/query_transformation_spec.rb b/spec/services/authorization/query_transformation_spec.rb index a760a40f9b..d6a1a4d0ce 100644 --- a/spec/services/authorization/query_transformation_spec.rb +++ b/spec/services/authorization/query_transformation_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/query_transformations_spec.rb b/spec/services/authorization/query_transformations_spec.rb index 0904cc8e68..08dc0c950f 100644 --- a/spec/services/authorization/query_transformations_spec.rb +++ b/spec/services/authorization/query_transformations_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/user_allowed_query_spec.rb b/spec/services/authorization/user_allowed_query_spec.rb index 881d88ce45..2cae389152 100644 --- a/spec/services/authorization/user_allowed_query_spec.rb +++ b/spec/services/authorization/user_allowed_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/user_allowed_service_spec.rb b/spec/services/authorization/user_allowed_service_spec.rb index 3251cdf25b..8422a582cd 100644 --- a/spec/services/authorization/user_allowed_service_spec.rb +++ b/spec/services/authorization/user_allowed_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/user_global_roles_query_spec.rb b/spec/services/authorization/user_global_roles_query_spec.rb index b9cf619c72..e8da7472a3 100644 --- a/spec/services/authorization/user_global_roles_query_spec.rb +++ b/spec/services/authorization/user_global_roles_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/authorization/user_project_roles_query_spec.rb b/spec/services/authorization/user_project_roles_query_spec.rb index 09a2134e02..f3ea31c2f7 100644 --- a/spec/services/authorization/user_project_roles_query_spec.rb +++ b/spec/services/authorization/user_project_roles_query_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/backups/create_service_spec.rb b/spec/services/backups/create_service_spec.rb index e9e06a0ad8..97f0381bfa 100644 --- a/spec/services/backups/create_service_spec.rb +++ b/spec/services/backups/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/base/base_callable_spec.rb b/spec/services/base/base_callable_spec.rb index e18d1709ca..6e2148ddbb 100644 --- a/spec/services/base/base_callable_spec.rb +++ b/spec/services/base/base_callable_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/base_services/behaves_like_create_service.rb b/spec/services/base_services/behaves_like_create_service.rb index 3257db50d5..727da8b15b 100644 --- a/spec/services/base_services/behaves_like_create_service.rb +++ b/spec/services/base_services/behaves_like_create_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/base_services/behaves_like_delete_service.rb b/spec/services/base_services/behaves_like_delete_service.rb index a6d118d8fc..e38eb99d65 100644 --- a/spec/services/base_services/behaves_like_delete_service.rb +++ b/spec/services/base_services/behaves_like_delete_service.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/base_services/behaves_like_update_service.rb b/spec/services/base_services/behaves_like_update_service.rb index 179498a83a..fd53b4ac81 100644 --- a/spec/services/base_services/behaves_like_update_service.rb +++ b/spec/services/base_services/behaves_like_update_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/create_type_service_spec.rb b/spec/services/create_type_service_spec.rb index d32c901346..ea5e9d99fc 100644 --- a/spec/services/create_type_service_spec.rb +++ b/spec/services/create_type_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/custom_actions/update_service_spec.rb b/spec/services/custom_actions/update_service_spec.rb index 8341d17a18..15c89e0352 100644 --- a/spec/services/custom_actions/update_service_spec.rb +++ b/spec/services/custom_actions/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/custom_actions/update_work_package_service_spec.rb b/spec/services/custom_actions/update_work_package_service_spec.rb index e92ef766eb..a7a67c7d54 100644 --- a/spec/services/custom_actions/update_work_package_service_spec.rb +++ b/spec/services/custom_actions/update_work_package_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/custom_fields/create_service_spec.rb b/spec/services/custom_fields/create_service_spec.rb index 2a269eb4b4..58733dfeca 100644 --- a/spec/services/custom_fields/create_service_spec.rb +++ b/spec/services/custom_fields/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/custom_fields/set_attributes_service_spec.rb b/spec/services/custom_fields/set_attributes_service_spec.rb index 8c65d955c1..f2548e7d35 100644 --- a/spec/services/custom_fields/set_attributes_service_spec.rb +++ b/spec/services/custom_fields/set_attributes_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/custom_fields/update_service_spec.rb b/spec/services/custom_fields/update_service_spec.rb index f3eb99eeed..74a01bbd72 100644 --- a/spec/services/custom_fields/update_service_spec.rb +++ b/spec/services/custom_fields/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/groups/add_users_service_integration_spec.rb b/spec/services/groups/add_users_service_integration_spec.rb index 1afde48a18..09464099ae 100644 --- a/spec/services/groups/add_users_service_integration_spec.rb +++ b/spec/services/groups/add_users_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/groups/cleanup_inherited_roles_service_integration_spec.rb b/spec/services/groups/cleanup_inherited_roles_service_integration_spec.rb index e7d0cd5714..3bdbf7c17e 100644 --- a/spec/services/groups/cleanup_inherited_roles_service_integration_spec.rb +++ b/spec/services/groups/cleanup_inherited_roles_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/groups/set_attributes_service_spec.rb b/spec/services/groups/set_attributes_service_spec.rb index 32a31355c0..dbeff49c9f 100644 --- a/spec/services/groups/set_attributes_service_spec.rb +++ b/spec/services/groups/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/groups/update_roles_service_integration_spec.rb b/spec/services/groups/update_roles_service_integration_spec.rb index a6363b7f54..6e1078fe6d 100644 --- a/spec/services/groups/update_roles_service_integration_spec.rb +++ b/spec/services/groups/update_roles_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/groups/update_service_spec.rb b/spec/services/groups/update_service_spec.rb index f57b04b0e6..bb8e9d3961 100644 --- a/spec/services/groups/update_service_spec.rb +++ b/spec/services/groups/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/members/cleanup_service_integration_spec.rb b/spec/services/members/cleanup_service_integration_spec.rb index 550bd2d696..3cbcc5e00c 100644 --- a/spec/services/members/cleanup_service_integration_spec.rb +++ b/spec/services/members/cleanup_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/members/create_service_spec.rb b/spec/services/members/create_service_spec.rb index 2ef203d2e7..58c4bd332b 100644 --- a/spec/services/members/create_service_spec.rb +++ b/spec/services/members/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/members/delete_service_spec.rb b/spec/services/members/delete_service_spec.rb index b62129ea80..8a1c4ceb3b 100644 --- a/spec/services/members/delete_service_spec.rb +++ b/spec/services/members/delete_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/members/set_attributes_service_spec.rb b/spec/services/members/set_attributes_service_spec.rb index b8fbf12cab..6e64e70b6d 100644 --- a/spec/services/members/set_attributes_service_spec.rb +++ b/spec/services/members/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/members/update_service_spec.rb b/spec/services/members/update_service_spec.rb index 052026d72b..03dd67ea65 100644 --- a/spec/services/members/update_service_spec.rb +++ b/spec/services/members/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/messages/create_service_spec.rb b/spec/services/messages/create_service_spec.rb index 18af9caeb3..f6bb48aa9f 100644 --- a/spec/services/messages/create_service_spec.rb +++ b/spec/services/messages/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/messages/set_attributes_service_spec.rb b/spec/services/messages/set_attributes_service_spec.rb index 3ebbcbd6a7..ae8e612628 100644 --- a/spec/services/messages/set_attributes_service_spec.rb +++ b/spec/services/messages/set_attributes_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/messages/update_service_spec.rb b/spec/services/messages/update_service_spec.rb index 9684aa1dc1..d0e0f49c6d 100644 --- a/spec/services/messages/update_service_spec.rb +++ b/spec/services/messages/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/aggregated_journal_service_integration_spec.rb b/spec/services/notifications/aggregated_journal_service_integration_spec.rb index c40cef5861..cb19ebfe63 100644 --- a/spec/services/notifications/aggregated_journal_service_integration_spec.rb +++ b/spec/services/notifications/aggregated_journal_service_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_journal_job_shared.rb b/spec/services/notifications/create_from_journal_job_shared.rb index 1afee48b3b..6ab7360bee 100644 --- a/spec/services/notifications/create_from_journal_job_shared.rb +++ b/spec/services/notifications/create_from_journal_job_shared.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_model_service_comment_spec.rb b/spec/services/notifications/create_from_model_service_comment_spec.rb index a91fd3fe8d..6b0994b273 100644 --- a/spec/services/notifications/create_from_model_service_comment_spec.rb +++ b/spec/services/notifications/create_from_model_service_comment_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_model_service_message_spec.rb b/spec/services/notifications/create_from_model_service_message_spec.rb index 52985f956c..7a878e53a6 100644 --- a/spec/services/notifications/create_from_model_service_message_spec.rb +++ b/spec/services/notifications/create_from_model_service_message_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_model_service_news_spec.rb b/spec/services/notifications/create_from_model_service_news_spec.rb index 36c9f39108..0263e8d436 100644 --- a/spec/services/notifications/create_from_model_service_news_spec.rb +++ b/spec/services/notifications/create_from_model_service_news_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_model_service_wiki_spec.rb b/spec/services/notifications/create_from_model_service_wiki_spec.rb index 75606f2239..5be48670e8 100644 --- a/spec/services/notifications/create_from_model_service_wiki_spec.rb +++ b/spec/services/notifications/create_from_model_service_wiki_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_from_model_service_work_package_spec.rb b/spec/services/notifications/create_from_model_service_work_package_spec.rb index ed4f5063bb..32bcf1c03f 100644 --- a/spec/services/notifications/create_from_model_service_work_package_spec.rb +++ b/spec/services/notifications/create_from_model_service_work_package_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_service_intergration_spec.rb b/spec/services/notifications/create_service_intergration_spec.rb index 1c5975edbe..5cefe1c99f 100644 --- a/spec/services/notifications/create_service_intergration_spec.rb +++ b/spec/services/notifications/create_service_intergration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/create_service_spec.rb b/spec/services/notifications/create_service_spec.rb index 0b91752dd6..35c5d1e143 100644 --- a/spec/services/notifications/create_service_spec.rb +++ b/spec/services/notifications/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/mail_service_mentioned_integration_spec.rb b/spec/services/notifications/mail_service_mentioned_integration_spec.rb index bcc6ffd54c..1bb2b78185 100644 --- a/spec/services/notifications/mail_service_mentioned_integration_spec.rb +++ b/spec/services/notifications/mail_service_mentioned_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/mail_service_spec.rb b/spec/services/notifications/mail_service_spec.rb index 34f2220929..b2c5201c35 100644 --- a/spec/services/notifications/mail_service_spec.rb +++ b/spec/services/notifications/mail_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/mentioned_journals_shared.rb b/spec/services/notifications/mentioned_journals_shared.rb index 14f583ca68..2789d73033 100644 --- a/spec/services/notifications/mentioned_journals_shared.rb +++ b/spec/services/notifications/mentioned_journals_shared.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/notifications/set_attributes_service_spec.rb b/spec/services/notifications/set_attributes_service_spec.rb index 818c1980e9..55ce3c3829 100644 --- a/spec/services/notifications/set_attributes_service_spec.rb +++ b/spec/services/notifications/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/placeholder_users/create_service_spec.rb b/spec/services/placeholder_users/create_service_spec.rb index 6177b3c778..c7b877a003 100644 --- a/spec/services/placeholder_users/create_service_spec.rb +++ b/spec/services/placeholder_users/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/placeholder_users/delete_service_spec.rb b/spec/services/placeholder_users/delete_service_spec.rb index 17f3502e4a..6c337a5b1b 100644 --- a/spec/services/placeholder_users/delete_service_spec.rb +++ b/spec/services/placeholder_users/delete_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/placeholder_users/set_attributes_service_spec.rb b/spec/services/placeholder_users/set_attributes_service_spec.rb index 986e44446e..986c6b1e4d 100644 --- a/spec/services/placeholder_users/set_attributes_service_spec.rb +++ b/spec/services/placeholder_users/set_attributes_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/placeholder_users/update_service_spec.rb b/spec/services/placeholder_users/update_service_spec.rb index ba03328308..e04f2843ea 100644 --- a/spec/services/placeholder_users/update_service_spec.rb +++ b/spec/services/placeholder_users/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/principals/replace_references_service_call_integration_spec.rb b/spec/services/principals/replace_references_service_call_integration_spec.rb index b4b6439ebf..45817a214d 100644 --- a/spec/services/principals/replace_references_service_call_integration_spec.rb +++ b/spec/services/principals/replace_references_service_call_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/copy_service_integration_spec.rb b/spec/services/projects/copy_service_integration_spec.rb index 17c19a21d5..0216705dbe 100644 --- a/spec/services/projects/copy_service_integration_spec.rb +++ b/spec/services/projects/copy_service_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/create_service_spec.rb b/spec/services/projects/create_service_spec.rb index c443d106e8..09235fc9ca 100644 --- a/spec/services/projects/create_service_spec.rb +++ b/spec/services/projects/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/delete_service_spec.rb b/spec/services/projects/delete_service_spec.rb index b1bfcde87d..7c2b666746 100644 --- a/spec/services/projects/delete_service_spec.rb +++ b/spec/services/projects/delete_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/gantt_query_generator_service_spec.rb b/spec/services/projects/gantt_query_generator_service_spec.rb index f2bbea1b81..91706e7a02 100644 --- a/spec/services/projects/gantt_query_generator_service_spec.rb +++ b/spec/services/projects/gantt_query_generator_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/schedule_deletion_service_spec.rb b/spec/services/projects/schedule_deletion_service_spec.rb index 8712544abd..b702f3158b 100644 --- a/spec/services/projects/schedule_deletion_service_spec.rb +++ b/spec/services/projects/schedule_deletion_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/set_attributes_service_integration_spec.rb b/spec/services/projects/set_attributes_service_integration_spec.rb index b6ef3f3b2d..18aa6b5018 100644 --- a/spec/services/projects/set_attributes_service_integration_spec.rb +++ b/spec/services/projects/set_attributes_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/set_attributes_service_spec.rb b/spec/services/projects/set_attributes_service_spec.rb index 1914c85f48..b39c372f58 100644 --- a/spec/services/projects/set_attributes_service_spec.rb +++ b/spec/services/projects/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/update_service_integration_spec.rb b/spec/services/projects/update_service_integration_spec.rb index c6d15dbf7b..7b4b644561 100644 --- a/spec/services/projects/update_service_integration_spec.rb +++ b/spec/services/projects/update_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/projects/update_service_spec.rb b/spec/services/projects/update_service_spec.rb index 986ac7071c..b19c937418 100644 --- a/spec/services/projects/update_service_spec.rb +++ b/spec/services/projects/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/queries/create_service_spec.rb b/spec/services/queries/create_service_spec.rb index 856b646000..ac3659b1ad 100644 --- a/spec/services/queries/create_service_spec.rb +++ b/spec/services/queries/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/queries/filter_mappper_spec.rb b/spec/services/queries/filter_mappper_spec.rb index 37a9f7f343..b2910582d6 100644 --- a/spec/services/queries/filter_mappper_spec.rb +++ b/spec/services/queries/filter_mappper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/queries/update_from_params_service_spec.rb b/spec/services/queries/update_from_params_service_spec.rb index e60c4e8010..8190bf0e6a 100644 --- a/spec/services/queries/update_from_params_service_spec.rb +++ b/spec/services/queries/update_from_params_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/queries/update_service_spec.rb b/spec/services/queries/update_service_spec.rb index ecd479f364..18cec89f4f 100644 --- a/spec/services/queries/update_service_spec.rb +++ b/spec/services/queries/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/relations/create_service_spec.rb b/spec/services/relations/create_service_spec.rb index 59bffeb9d4..e977fd6ed5 100644 --- a/spec/services/relations/create_service_spec.rb +++ b/spec/services/relations/create_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/relations/update_service_spec.rb b/spec/services/relations/update_service_spec.rb index 422b796d9b..bea574a79a 100644 --- a/spec/services/relations/update_service_spec.rb +++ b/spec/services/relations/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/service_result_spec.rb b/spec/services/service_result_spec.rb index 687ca54bbe..2fcefadddb 100644 --- a/spec/services/service_result_spec.rb +++ b/spec/services/service_result_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/services/create_service_spec.rb b/spec/services/services/create_service_spec.rb index 3b5a6fdba3..ad35ad371a 100644 --- a/spec/services/services/create_service_spec.rb +++ b/spec/services/services/create_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/shared/service_context_integration_spec.rb b/spec/services/shared/service_context_integration_spec.rb index 4fb63b11ce..4cfb08d414 100644 --- a/spec/services/shared/service_context_integration_spec.rb +++ b/spec/services/shared/service_context_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/shared_type_service.rb b/spec/services/shared_type_service.rb index 2fbfe2ab5b..34f1b7e5bb 100644 --- a/spec/services/shared_type_service.rb +++ b/spec/services/shared_type_service.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/update_query_from_params_service_spec.rb b/spec/services/update_query_from_params_service_spec.rb index a247a937a3..6df209460c 100644 --- a/spec/services/update_query_from_params_service_spec.rb +++ b/spec/services/update_query_from_params_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/update_type_service_spec.rb b/spec/services/update_type_service_spec.rb index a65c39e5e8..e0cc1b7b82 100644 --- a/spec/services/update_type_service_spec.rb +++ b/spec/services/update_type_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/user_preferences/update_service_integration_spec.rb b/spec/services/user_preferences/update_service_integration_spec.rb index cdab997979..abacfda53e 100644 --- a/spec/services/user_preferences/update_service_integration_spec.rb +++ b/spec/services/user_preferences/update_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/user_preferences/update_service_spec.rb b/spec/services/user_preferences/update_service_spec.rb index cf100680e6..dfd731e11f 100644 --- a/spec/services/user_preferences/update_service_spec.rb +++ b/spec/services/user_preferences/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/users/delete_service_integration_spec.rb b/spec/services/users/delete_service_integration_spec.rb index f1b8e0b4e3..b90ded03db 100644 --- a/spec/services/users/delete_service_integration_spec.rb +++ b/spec/services/users/delete_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/users/delete_service_spec.rb b/spec/services/users/delete_service_spec.rb index c761d245bf..bf5af0afd5 100644 --- a/spec/services/users/delete_service_spec.rb +++ b/spec/services/users/delete_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/users/login_service_spec.rb b/spec/services/users/login_service_spec.rb index a8779f2ba1..a9c3559815 100644 --- a/spec/services/users/login_service_spec.rb +++ b/spec/services/users/login_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/users/set_attributes_service_integration_spec.rb b/spec/services/users/set_attributes_service_integration_spec.rb index 3e0af9084b..e0bb973b98 100644 --- a/spec/services/users/set_attributes_service_integration_spec.rb +++ b/spec/services/users/set_attributes_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/users/set_attributes_service_spec.rb b/spec/services/users/set_attributes_service_spec.rb index 88d5c4d04d..14d229a2e3 100644 --- a/spec/services/users/set_attributes_service_spec.rb +++ b/spec/services/users/set_attributes_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/wiki_pages/copy_service_integration_spec.rb b/spec/services/wiki_pages/copy_service_integration_spec.rb index 34a3d7270f..18cff43fa8 100644 --- a/spec/services/wiki_pages/copy_service_integration_spec.rb +++ b/spec/services/wiki_pages/copy_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/wiki_pages/set_attributes_service_spec.rb b/spec/services/wiki_pages/set_attributes_service_spec.rb index a7a95cde71..89e9c160bb 100644 --- a/spec/services/wiki_pages/set_attributes_service_spec.rb +++ b/spec/services/wiki_pages/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/copy_service_integration_spec.rb b/spec/services/work_packages/copy_service_integration_spec.rb index 52e9687bad..603978c1b0 100644 --- a/spec/services/work_packages/copy_service_integration_spec.rb +++ b/spec/services/work_packages/copy_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/create_service_integration_spec.rb b/spec/services/work_packages/create_service_integration_spec.rb index 0fc0c8cd29..e75b632430 100644 --- a/spec/services/work_packages/create_service_integration_spec.rb +++ b/spec/services/work_packages/create_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/delete_service_integration_spec.rb b/spec/services/work_packages/delete_service_integration_spec.rb index 23012710f6..3b0c1ee44a 100644 --- a/spec/services/work_packages/delete_service_integration_spec.rb +++ b/spec/services/work_packages/delete_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/delete_service_spec.rb b/spec/services/work_packages/delete_service_spec.rb index eedafae3e1..f118b98cc2 100644 --- a/spec/services/work_packages/delete_service_spec.rb +++ b/spec/services/work_packages/delete_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/set_attributes_service_spec.rb b/spec/services/work_packages/set_attributes_service_spec.rb index 9598c75502..d461037d85 100644 --- a/spec/services/work_packages/set_attributes_service_spec.rb +++ b/spec/services/work_packages/set_attributes_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/set_schedule_service_spec.rb b/spec/services/work_packages/set_schedule_service_spec.rb index f356f747a6..9c2c0f54ca 100644 --- a/spec/services/work_packages/set_schedule_service_spec.rb +++ b/spec/services/work_packages/set_schedule_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/update_ancestors_service_spec.rb b/spec/services/work_packages/update_ancestors_service_spec.rb index e55952b99d..d6f77c38ba 100644 --- a/spec/services/work_packages/update_ancestors_service_spec.rb +++ b/spec/services/work_packages/update_ancestors_service_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/update_service_integration_spec.rb b/spec/services/work_packages/update_service_integration_spec.rb index c76ad4315e..fc46b99454 100644 --- a/spec/services/work_packages/update_service_integration_spec.rb +++ b/spec/services/work_packages/update_service_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/work_packages/update_service_spec.rb b/spec/services/work_packages/update_service_spec.rb index 17052e6fa0..b33109c25b 100644 --- a/spec/services/work_packages/update_service_spec.rb +++ b/spec/services/work_packages/update_service_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/services/workflows/bulk_update_service_integration_spec.rb b/spec/services/workflows/bulk_update_service_integration_spec.rb index b768870477..18645ab56f 100644 --- a/spec/services/workflows/bulk_update_service_integration_spec.rb +++ b/spec/services/workflows/bulk_update_service_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/active_record_timestamps.rb b/spec/support/active_record_timestamps.rb index 03aad0ddea..87687423f7 100644 --- a/spec/support/active_record_timestamps.rb +++ b/spec/support/active_record_timestamps.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/angular.rb b/spec/support/angular.rb index 72f5790539..b283938578 100644 --- a/spec/support/angular.rb +++ b/spec/support/angular.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/api/v3/shared_available_principals_examples.rb b/spec/support/api/v3/shared_available_principals_examples.rb index 06ad760f21..cce464c79b 100644 --- a/spec/support/api/v3/shared_available_principals_examples.rb +++ b/spec/support/api/v3/shared_available_principals_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/api/v3/work_packages/work_package_representer_eager_loading.rb b/spec/support/api/v3/work_packages/work_package_representer_eager_loading.rb index 4dde06c149..63ebf64df4 100644 --- a/spec/support/api/v3/work_packages/work_package_representer_eager_loading.rb +++ b/spec/support/api/v3/work_packages/work_package_representer_eager_loading.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/authentication_helpers.rb b/spec/support/authentication_helpers.rb index 9b74437110..b984deb097 100644 --- a/spec/support/authentication_helpers.rb +++ b/spec/support/authentication_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/carrierwave.rb b/spec/support/carrierwave.rb index 8db470cab9..eec981a9fc 100644 --- a/spec/support/carrierwave.rb +++ b/spec/support/carrierwave.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/clear_notification_subscriptions.rb b/spec/support/clear_notification_subscriptions.rb index 11ee91452b..6e3f4be518 100644 --- a/spec/support/clear_notification_subscriptions.rb +++ b/spec/support/clear_notification_subscriptions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/admin/type_configuration_form.rb b/spec/support/components/admin/type_configuration_form.rb index b31a58b332..f235561a99 100644 --- a/spec/support/components/admin/type_configuration_form.rb +++ b/spec/support/components/admin/type_configuration_form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/common/modal.rb b/spec/support/components/common/modal.rb index b23e913666..4edcc3336c 100644 --- a/spec/support/components/common/modal.rb +++ b/spec/support/components/common/modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/common/sidemenu.rb b/spec/support/components/common/sidemenu.rb index a04395923f..7143b29611 100644 --- a/spec/support/components/common/sidemenu.rb +++ b/spec/support/components/common/sidemenu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/confirmation_dialog.rb b/spec/support/components/confirmation_dialog.rb index f841923b4f..a34eeba76e 100644 --- a/spec/support/components/confirmation_dialog.rb +++ b/spec/support/components/confirmation_dialog.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/html_title.rb b/spec/support/components/html_title.rb index 15d9c5a1fb..8e7985c22f 100644 --- a/spec/support/components/html_title.rb +++ b/spec/support/components/html_title.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/menu/dropdown.rb b/spec/support/components/menu/dropdown.rb index 415d69139a..22c108755f 100644 --- a/spec/support/components/menu/dropdown.rb +++ b/spec/support/components/menu/dropdown.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/menu/quick_add_menu.rb b/spec/support/components/menu/quick_add_menu.rb index 24ed92c0d1..0b7874d552 100644 --- a/spec/support/components/menu/quick_add_menu.rb +++ b/spec/support/components/menu/quick_add_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/password_confirmation_dialog.rb b/spec/support/components/password_confirmation_dialog.rb index e69977073b..4335034980 100644 --- a/spec/support/components/password_confirmation_dialog.rb +++ b/spec/support/components/password_confirmation_dialog.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/project_include_component.rb b/spec/support/components/project_include_component.rb index e0d1f385d0..7a53ee396b 100644 --- a/spec/support/components/project_include_component.rb +++ b/spec/support/components/project_include_component.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/projects/top_menu.rb b/spec/support/components/projects/top_menu.rb index 70af678bb0..2e47f4651c 100644 --- a/spec/support/components/projects/top_menu.rb +++ b/spec/support/components/projects/top_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/table_pagination.rb b/spec/support/components/table_pagination.rb index e3fcea5279..e7f09d194e 100644 --- a/spec/support/components/table_pagination.rb +++ b/spec/support/components/table_pagination.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/timelines/configuration_modal.rb b/spec/support/components/timelines/configuration_modal.rb index 4032041751..0dd745ce43 100644 --- a/spec/support/components/timelines/configuration_modal.rb +++ b/spec/support/components/timelines/configuration_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/timelines/timeline_row.rb b/spec/support/components/timelines/timeline_row.rb index a87f8b97d1..01fce192f9 100644 --- a/spec/support/components/timelines/timeline_row.rb +++ b/spec/support/components/timelines/timeline_row.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/users/invite_user_modal.rb b/spec/support/components/users/invite_user_modal.rb index 18355ca365..88784783fe 100644 --- a/spec/support/components/users/invite_user_modal.rb +++ b/spec/support/components/users/invite_user_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/activities.rb b/spec/support/components/work_packages/activities.rb index b139173327..339b82843b 100644 --- a/spec/support/components/work_packages/activities.rb +++ b/spec/support/components/work_packages/activities.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/columns.rb b/spec/support/components/work_packages/columns.rb index ebd8880946..affed22628 100644 --- a/spec/support/components/work_packages/columns.rb +++ b/spec/support/components/work_packages/columns.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/context_menu.rb b/spec/support/components/work_packages/context_menu.rb index d53f56172f..24dc21ca73 100644 --- a/spec/support/components/work_packages/context_menu.rb +++ b/spec/support/components/work_packages/context_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/destroy_modal.rb b/spec/support/components/work_packages/destroy_modal.rb index de5eb7c5b6..be3a7d5afa 100644 --- a/spec/support/components/work_packages/destroy_modal.rb +++ b/spec/support/components/work_packages/destroy_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/display_representation.rb b/spec/support/components/work_packages/display_representation.rb index 9dabd01d85..f43a950312 100644 --- a/spec/support/components/work_packages/display_representation.rb +++ b/spec/support/components/work_packages/display_representation.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/filters.rb b/spec/support/components/work_packages/filters.rb index 3958150fae..d87de5cc1d 100644 --- a/spec/support/components/work_packages/filters.rb +++ b/spec/support/components/work_packages/filters.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/group_by.rb b/spec/support/components/work_packages/group_by.rb index 7dec61fdd0..a14cf4f4c6 100644 --- a/spec/support/components/work_packages/group_by.rb +++ b/spec/support/components/work_packages/group_by.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/hierarchies.rb b/spec/support/components/work_packages/hierarchies.rb index 13cb617d2f..85883536f8 100644 --- a/spec/support/components/work_packages/hierarchies.rb +++ b/spec/support/components/work_packages/hierarchies.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/query_menu.rb b/spec/support/components/work_packages/query_menu.rb index 5852769163..5c8d3ef1c3 100644 --- a/spec/support/components/work_packages/query_menu.rb +++ b/spec/support/components/work_packages/query_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/query_title.rb b/spec/support/components/work_packages/query_title.rb index 0a6c750ada..b99333736b 100644 --- a/spec/support/components/work_packages/query_title.rb +++ b/spec/support/components/work_packages/query_title.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/relations.rb b/spec/support/components/work_packages/relations.rb index 2a82b78fc9..bfdb863480 100644 --- a/spec/support/components/work_packages/relations.rb +++ b/spec/support/components/work_packages/relations.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/settings_menu.rb b/spec/support/components/work_packages/settings_menu.rb index b1c65b774b..7cfbe17a96 100644 --- a/spec/support/components/work_packages/settings_menu.rb +++ b/spec/support/components/work_packages/settings_menu.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/sort_by.rb b/spec/support/components/work_packages/sort_by.rb index 4d067b073e..643562e135 100644 --- a/spec/support/components/work_packages/sort_by.rb +++ b/spec/support/components/work_packages/sort_by.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/table_configuration/filters.rb b/spec/support/components/work_packages/table_configuration/filters.rb index edfbe79d96..670394a810 100644 --- a/spec/support/components/work_packages/table_configuration/filters.rb +++ b/spec/support/components/work_packages/table_configuration/filters.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/table_configuration/graph_general.rb b/spec/support/components/work_packages/table_configuration/graph_general.rb index a8557e31d7..99e571ed7b 100644 --- a/spec/support/components/work_packages/table_configuration/graph_general.rb +++ b/spec/support/components/work_packages/table_configuration/graph_general.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/table_configuration/highlighting.rb b/spec/support/components/work_packages/table_configuration/highlighting.rb index 50bb45294c..3e47877f90 100644 --- a/spec/support/components/work_packages/table_configuration/highlighting.rb +++ b/spec/support/components/work_packages/table_configuration/highlighting.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/components/work_packages/table_configuration_modal.rb b/spec/support/components/work_packages/table_configuration_modal.rb index 10f900168a..01880f9c75 100644 --- a/spec/support/components/work_packages/table_configuration_modal.rb +++ b/spec/support/components/work_packages/table_configuration_modal.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/enterprise_token_helper.rb b/spec/support/enterprise_token_helper.rb index a616e34c0f..76d38736a5 100644 --- a/spec/support/enterprise_token_helper.rb +++ b/spec/support/enterprise_token_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/file_helpers.rb b/spec/support/file_helpers.rb index 5ee260c00b..db1fc4970b 100644 --- a/spec/support/file_helpers.rb +++ b/spec/support/file_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/flash.rb b/spec/support/flash.rb index c5fa4a9fdb..197c5c6699 100644 --- a/spec/support/flash.rb +++ b/spec/support/flash.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/identical_ext.rb b/spec/support/identical_ext.rb index a935ae48d5..3ebeb07855 100644 --- a/spec/support/identical_ext.rb +++ b/spec/support/identical_ext.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/local_storage_cleanup.rb b/spec/support/local_storage_cleanup.rb index b158fc8968..758e21dd09 100644 --- a/spec/support/local_storage_cleanup.rb +++ b/spec/support/local_storage_cleanup.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/matchers/be_html_eql.rb b/spec/support/matchers/be_html_eql.rb index ead2a731f2..d6fca6e359 100644 --- a/spec/support/matchers/be_html_eql.rb +++ b/spec/support/matchers/be_html_eql.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/matchers/has_conditional_selector.rb b/spec/support/matchers/has_conditional_selector.rb index b5f487d48b..4f5de10f14 100644 --- a/spec/support/matchers/has_conditional_selector.rb +++ b/spec/support/matchers/has_conditional_selector.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/matchers/has_focus_on.rb b/spec/support/matchers/has_focus_on.rb index 1707cad909..4bf6d075d9 100644 --- a/spec/support/matchers/has_focus_on.rb +++ b/spec/support/matchers/has_focus_on.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/matchers/raise_if_found.rb b/spec/support/matchers/raise_if_found.rb index 80f4a0912b..9f384d4552 100644 --- a/spec/support/matchers/raise_if_found.rb +++ b/spec/support/matchers/raise_if_found.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/noop_contract.rb b/spec/support/noop_contract.rb index 07ae5624f4..3ce9fa9349 100644 --- a/spec/support/noop_contract.rb +++ b/spec/support/noop_contract.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/onboarding_helper.rb b/spec/support/onboarding_helper.rb index 4fa1002341..43c27c38d9 100644 --- a/spec/support/onboarding_helper.rb +++ b/spec/support/onboarding_helper.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/custom_actions/edit.rb b/spec/support/pages/admin/custom_actions/edit.rb index 8176012da4..fdf082de97 100644 --- a/spec/support/pages/admin/custom_actions/edit.rb +++ b/spec/support/pages/admin/custom_actions/edit.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/custom_actions/form.rb b/spec/support/pages/admin/custom_actions/form.rb index 9771f06e3d..95ec16080d 100644 --- a/spec/support/pages/admin/custom_actions/form.rb +++ b/spec/support/pages/admin/custom_actions/form.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/custom_actions/index.rb b/spec/support/pages/admin/custom_actions/index.rb index 458497d6b4..d51bf749b1 100644 --- a/spec/support/pages/admin/custom_actions/index.rb +++ b/spec/support/pages/admin/custom_actions/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/custom_actions/new.rb b/spec/support/pages/admin/custom_actions/new.rb index fcdf31ed13..8a119ffb2b 100644 --- a/spec/support/pages/admin/custom_actions/new.rb +++ b/spec/support/pages/admin/custom_actions/new.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/individual_principals/edit.rb b/spec/support/pages/admin/individual_principals/edit.rb index 40d29a80e1..68e731f84d 100644 --- a/spec/support/pages/admin/individual_principals/edit.rb +++ b/spec/support/pages/admin/individual_principals/edit.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/placeholder_users/index.rb b/spec/support/pages/admin/placeholder_users/index.rb index 230c0e4198..4f3865d645 100644 --- a/spec/support/pages/admin/placeholder_users/index.rb +++ b/spec/support/pages/admin/placeholder_users/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/users/edit.rb b/spec/support/pages/admin/users/edit.rb index 9a1c971c7f..e4295dbe07 100644 --- a/spec/support/pages/admin/users/edit.rb +++ b/spec/support/pages/admin/users/edit.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/admin/users/index.rb b/spec/support/pages/admin/users/index.rb index 934f6d6c92..6c11bb4d49 100644 --- a/spec/support/pages/admin/users/index.rb +++ b/spec/support/pages/admin/users/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/custom_fields.rb b/spec/support/pages/custom_fields.rb index 4e116382ec..8f6c6943e3 100644 --- a/spec/support/pages/custom_fields.rb +++ b/spec/support/pages/custom_fields.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/form_filler.rb b/spec/support/pages/form_filler.rb index 58e38eb927..4b08aba4b8 100644 --- a/spec/support/pages/form_filler.rb +++ b/spec/support/pages/form_filler.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/groups.rb b/spec/support/pages/groups.rb index 1b9f532706..fe09e1f49e 100644 --- a/spec/support/pages/groups.rb +++ b/spec/support/pages/groups.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/home.rb b/spec/support/pages/home.rb index 1df29e36dc..597a20a065 100644 --- a/spec/support/pages/home.rb +++ b/spec/support/pages/home.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/members.rb b/spec/support/pages/members.rb index 9acf74170f..da43e79c20 100644 --- a/spec/support/pages/members.rb +++ b/spec/support/pages/members.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/messages/base.rb b/spec/support/pages/messages/base.rb index 8b7888202f..727870fc95 100644 --- a/spec/support/pages/messages/base.rb +++ b/spec/support/pages/messages/base.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/messages/create.rb b/spec/support/pages/messages/create.rb index 1618d46917..a5f6a354a7 100644 --- a/spec/support/pages/messages/create.rb +++ b/spec/support/pages/messages/create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/messages/index.rb b/spec/support/pages/messages/index.rb index 5e22abab89..71525b67fd 100644 --- a/spec/support/pages/messages/index.rb +++ b/spec/support/pages/messages/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/messages/show.rb b/spec/support/pages/messages/show.rb index 6b840a0da5..1dac4313ba 100644 --- a/spec/support/pages/messages/show.rb +++ b/spec/support/pages/messages/show.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/my/notifications.rb b/spec/support/pages/my/notifications.rb index c132d704dc..424550a157 100644 --- a/spec/support/pages/my/notifications.rb +++ b/spec/support/pages/my/notifications.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/my/password_page.rb b/spec/support/pages/my/password_page.rb index 97c175ee9b..351adce279 100644 --- a/spec/support/pages/my/password_page.rb +++ b/spec/support/pages/my/password_page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/my/reminders.rb b/spec/support/pages/my/reminders.rb index 13daca47d6..279497e8b7 100644 --- a/spec/support/pages/my/reminders.rb +++ b/spec/support/pages/my/reminders.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/new_placeholder_user.rb b/spec/support/pages/new_placeholder_user.rb index fa2dda07d1..7c69728fae 100644 --- a/spec/support/pages/new_placeholder_user.rb +++ b/spec/support/pages/new_placeholder_user.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/new_user.rb b/spec/support/pages/new_user.rb index ecec9f8a70..bc504937a9 100644 --- a/spec/support/pages/new_user.rb +++ b/spec/support/pages/new_user.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/notifications/center.rb b/spec/support/pages/notifications/center.rb index 024432b62c..50000e4f6e 100644 --- a/spec/support/pages/notifications/center.rb +++ b/spec/support/pages/notifications/center.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/notifications/settings.rb b/spec/support/pages/notifications/settings.rb index 93331667a7..1edb5bc77a 100644 --- a/spec/support/pages/notifications/settings.rb +++ b/spec/support/pages/notifications/settings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/notifications/split_screen.rb b/spec/support/pages/notifications/split_screen.rb index dfa53fcc69..7d7a0e8cdf 100644 --- a/spec/support/pages/notifications/split_screen.rb +++ b/spec/support/pages/notifications/split_screen.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/page.rb b/spec/support/pages/page.rb index 45f648be0e..e9e0bd0c71 100644 --- a/spec/support/pages/page.rb +++ b/spec/support/pages/page.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/projects/destroy.rb b/spec/support/pages/projects/destroy.rb index 4b85b922c3..198b82113c 100644 --- a/spec/support/pages/projects/destroy.rb +++ b/spec/support/pages/projects/destroy.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/projects/index.rb b/spec/support/pages/projects/index.rb index 25bc1b9f6e..e41a0e80d3 100644 --- a/spec/support/pages/projects/index.rb +++ b/spec/support/pages/projects/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/projects/settings.rb b/spec/support/pages/projects/settings.rb index 22b3254d84..550d3c9a6d 100644 --- a/spec/support/pages/projects/settings.rb +++ b/spec/support/pages/projects/settings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/reminders/settings.rb b/spec/support/pages/reminders/settings.rb index 23c251f164..14112b115b 100644 --- a/spec/support/pages/reminders/settings.rb +++ b/spec/support/pages/reminders/settings.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/types/index.rb b/spec/support/pages/types/index.rb index 7289037b45..288e10623a 100644 --- a/spec/support/pages/types/index.rb +++ b/spec/support/pages/types/index.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/abstract_work_package.rb b/spec/support/pages/work_packages/abstract_work_package.rb index c27d1c50fc..c3c4cbded2 100644 --- a/spec/support/pages/work_packages/abstract_work_package.rb +++ b/spec/support/pages/work_packages/abstract_work_package.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/abstract_work_package_create.rb b/spec/support/pages/work_packages/abstract_work_package_create.rb index 948b2b318f..de28b29696 100644 --- a/spec/support/pages/work_packages/abstract_work_package_create.rb +++ b/spec/support/pages/work_packages/abstract_work_package_create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/concerns/work_package_by_button_creator.rb b/spec/support/pages/work_packages/concerns/work_package_by_button_creator.rb index 8893a655e7..03feb0dbbd 100644 --- a/spec/support/pages/work_packages/concerns/work_package_by_button_creator.rb +++ b/spec/support/pages/work_packages/concerns/work_package_by_button_creator.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/embedded_work_packages_table.rb b/spec/support/pages/work_packages/embedded_work_packages_table.rb index 931efa72ba..096688d526 100644 --- a/spec/support/pages/work_packages/embedded_work_packages_table.rb +++ b/spec/support/pages/work_packages/embedded_work_packages_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/full_work_package.rb b/spec/support/pages/work_packages/full_work_package.rb index 45176d6e73..a1919134fa 100644 --- a/spec/support/pages/work_packages/full_work_package.rb +++ b/spec/support/pages/work_packages/full_work_package.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/full_work_package_create.rb b/spec/support/pages/work_packages/full_work_package_create.rb index 53fcc78999..d0c19f8bab 100644 --- a/spec/support/pages/work_packages/full_work_package_create.rb +++ b/spec/support/pages/work_packages/full_work_package_create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/split_work_package.rb b/spec/support/pages/work_packages/split_work_package.rb index 65c3258f5b..2a087e56fb 100644 --- a/spec/support/pages/work_packages/split_work_package.rb +++ b/spec/support/pages/work_packages/split_work_package.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/split_work_package_create.rb b/spec/support/pages/work_packages/split_work_package_create.rb index f954d73924..95fbb25605 100644 --- a/spec/support/pages/work_packages/split_work_package_create.rb +++ b/spec/support/pages/work_packages/split_work_package_create.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/work_package_card.rb b/spec/support/pages/work_packages/work_package_card.rb index 000e31b3a9..0a1e651980 100644 --- a/spec/support/pages/work_packages/work_package_card.rb +++ b/spec/support/pages/work_packages/work_package_card.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/work_package_cards.rb b/spec/support/pages/work_packages/work_package_cards.rb index 5442d654c7..7281d5c256 100644 --- a/spec/support/pages/work_packages/work_package_cards.rb +++ b/spec/support/pages/work_packages/work_package_cards.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/work_packages_table.rb b/spec/support/pages/work_packages/work_packages_table.rb index c13af3755d..b8497c0049 100644 --- a/spec/support/pages/work_packages/work_packages_table.rb +++ b/spec/support/pages/work_packages/work_packages_table.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/pages/work_packages/work_packages_timeline.rb b/spec/support/pages/work_packages/work_packages_timeline.rb index e2dfa1acec..092562637f 100644 --- a/spec/support/pages/work_packages/work_packages_timeline.rb +++ b/spec/support/pages/work_packages/work_packages_timeline.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/permission_specs.rb b/spec/support/permission_specs.rb index 77be1b8ccc..420219961f 100644 --- a/spec/support/permission_specs.rb +++ b/spec/support/permission_specs.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/puffing_billy_proxy.rb b/spec/support/puffing_billy_proxy.rb index d7b3928919..6d8d4def72 100644 --- a/spec/support/puffing_billy_proxy.rb +++ b/spec/support/puffing_billy_proxy.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/queries/filters/shared_filter_examples.rb b/spec/support/queries/filters/shared_filter_examples.rb index b065d6fc88..901a280dc7 100644 --- a/spec/support/queries/filters/shared_filter_examples.rb +++ b/spec/support/queries/filters/shared_filter_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/queries/shared_get_individual_query_examples.rb b/spec/support/queries/shared_get_individual_query_examples.rb index 983d778edb..27d9fca9d0 100644 --- a/spec/support/queries/shared_get_individual_query_examples.rb +++ b/spec/support/queries/shared_get_individual_query_examples.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/repository_helpers.rb b/spec/support/repository_helpers.rb index 8d98779abb..e5326cb683 100644 --- a/spec/support/repository_helpers.rb +++ b/spec/support/repository_helpers.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/roles.rb b/spec/support/roles.rb index ee6dbb7edf..ac818b8459 100644 --- a/spec/support/roles.rb +++ b/spec/support/roles.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/rspec_expect_it.rb b/spec/support/rspec_expect_it.rb index 7588c17777..c740da3df0 100644 --- a/spec/support/rspec_expect_it.rb +++ b/spec/support/rspec_expect_it.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/schedule_reminder_mails.rb b/spec/support/schedule_reminder_mails.rb index e30e8ab4d7..1284f209a0 100644 --- a/spec/support/schedule_reminder_mails.rb +++ b/spec/support/schedule_reminder_mails.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/selector_helpers.rb b/spec/support/selector_helpers.rb index ce6cb632dc..33f86ee17a 100644 --- a/spec/support/selector_helpers.rb +++ b/spec/support/selector_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/acts_as_attachable.rb b/spec/support/shared/acts_as_attachable.rb index b77e479c24..137b4f78f0 100644 --- a/spec/support/shared/acts_as_attachable.rb +++ b/spec/support/shared/acts_as_attachable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/acts_as_watchable.rb b/spec/support/shared/acts_as_watchable.rb index 578ce36ac2..7eaab7502a 100644 --- a/spec/support/shared/acts_as_watchable.rb +++ b/spec/support/shared/acts_as_watchable.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/as_user.rb b/spec/support/shared/as_user.rb index a1fe8b8c6d..8264301e24 100644 --- a/spec/support/shared/as_user.rb +++ b/spec/support/shared/as_user.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/become_member.rb b/spec/support/shared/become_member.rb index 89c12b93c3..da6e6b4a57 100644 --- a/spec/support/shared/become_member.rb +++ b/spec/support/shared/become_member.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/clear_cache.rb b/spec/support/shared/clear_cache.rb index 2fc3c8debc..9c0f8cbfef 100644 --- a/spec/support/shared/clear_cache.rb +++ b/spec/support/shared/clear_cache.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/drag_and_drop_helper_spec.rb b/spec/support/shared/drag_and_drop_helper_spec.rb index bf6bdf4c46..96cfca0c53 100644 --- a/spec/support/shared/drag_and_drop_helper_spec.rb +++ b/spec/support/shared/drag_and_drop_helper_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/forms_html.rb b/spec/support/shared/forms_html.rb index dee85c0aef..979aeef9f0 100644 --- a/spec/support/shared/forms_html.rb +++ b/spec/support/shared/forms_html.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/loading_indicator_saveguard.rb b/spec/support/shared/loading_indicator_saveguard.rb index 1dbaaaeadb..cc7430f80c 100644 --- a/spec/support/shared/loading_indicator_saveguard.rb +++ b/spec/support/shared/loading_indicator_saveguard.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/permissions.rb b/spec/support/shared/permissions.rb index 8426085a2a..0507a553a2 100644 --- a/spec/support/shared/permissions.rb +++ b/spec/support/shared/permissions.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/rake.rb b/spec/support/shared/rake.rb index 3123c9c91d..977089d8c4 100644 --- a/spec/support/shared/rake.rb +++ b/spec/support/shared/rake.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/scroll_into_view_helpers.rb b/spec/support/shared/scroll_into_view_helpers.rb index c2a8f41a5f..7c8bac0a5b 100644 --- a/spec/support/shared/scroll_into_view_helpers.rb +++ b/spec/support/shared/scroll_into_view_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/selenium_workarounds.rb b/spec/support/shared/selenium_workarounds.rb index 34e30a41bd..9650aea5ef 100644 --- a/spec/support/shared/selenium_workarounds.rb +++ b/spec/support/shared/selenium_workarounds.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/with_config.rb b/spec/support/shared/with_config.rb index 45408c5172..d8146ab0fc 100644 --- a/spec/support/shared/with_config.rb +++ b/spec/support/shared/with_config.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/with_direct_uploads.rb b/spec/support/shared/with_direct_uploads.rb index 855834419f..0690e14da0 100644 --- a/spec/support/shared/with_direct_uploads.rb +++ b/spec/support/shared/with_direct_uploads.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/with_ee.rb b/spec/support/shared/with_ee.rb index e619562105..7431313d99 100644 --- a/spec/support/shared/with_ee.rb +++ b/spec/support/shared/with_ee.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared/with_settings.rb b/spec/support/shared/with_settings.rb index 29afaee8ff..3caad5dd9f 100644 --- a/spec/support/shared/with_settings.rb +++ b/spec/support/shared/with_settings.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/shared_let.rb b/spec/support/shared_let.rb index 849213d72a..02d664afe9 100644 --- a/spec/support/shared_let.rb +++ b/spec/support/shared_let.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/tempdir.rb b/spec/support/tempdir.rb index d0b7ea1db3..f7d30e6902 100644 --- a/spec/support/tempdir.rb +++ b/spec/support/tempdir.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/webmock.rb b/spec/support/webmock.rb index 0164a3f87d..e163b70772 100644 --- a/spec/support/webmock.rb +++ b/spec/support/webmock.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/work_packages.rb b/spec/support/work_packages.rb index 102c7e9659..256c850308 100644 --- a/spec/support/work_packages.rb +++ b/spec/support/work_packages.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/support/work_packages/work_package_cards.rb b/spec/support/work_packages/work_package_cards.rb index bf40ffa1d0..c6a57681f9 100644 --- a/spec/support/work_packages/work_package_cards.rb +++ b/spec/support/work_packages/work_package_cards.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/tasks/backup_specs.rb b/spec/tasks/backup_specs.rb index ec330a7b08..0dba177268 100644 --- a/spec/tasks/backup_specs.rb +++ b/spec/tasks/backup_specs.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/account/login.html.erb_spec.rb b/spec/views/account/login.html.erb_spec.rb index c7ebfb8799..e670a843f6 100644 --- a/spec/views/account/login.html.erb_spec.rb +++ b/spec/views/account/login.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/account/register.html.erb_spec.rb b/spec/views/account/register.html.erb_spec.rb index 74e9af77ff..6bc872b38c 100644 --- a/spec/views/account/register.html.erb_spec.rb +++ b/spec/views/account/register.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/admin/enterprises/_current.html.erb_spec.rb b/spec/views/admin/enterprises/_current.html.erb_spec.rb index 0efa623941..f97d25754e 100644 --- a/spec/views/admin/enterprises/_current.html.erb_spec.rb +++ b/spec/views/admin/enterprises/_current.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/admin/settings/authentication/show.html.erb_spec.rb b/spec/views/admin/settings/authentication/show.html.erb_spec.rb index f397c8c217..47cdf94f8d 100644 --- a/spec/views/admin/settings/authentication/show.html.erb_spec.rb +++ b/spec/views/admin/settings/authentication/show.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/common/validation_error.html.erb_spec.rb b/spec/views/common/validation_error.html.erb_spec.rb index dbdb2d78ca..c058b1206b 100644 --- a/spec/views/common/validation_error.html.erb_spec.rb +++ b/spec/views/common/validation_error.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/custom_styles/show.html.erb_spec.rb b/spec/views/custom_styles/show.html.erb_spec.rb index e41874d29d..6053e1e7c4 100644 --- a/spec/views/custom_styles/show.html.erb_spec.rb +++ b/spec/views/custom_styles/show.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/layouts/admin.html.erb_spec.rb b/spec/views/layouts/admin.html.erb_spec.rb index 907dbc1862..d33ecc8568 100644 --- a/spec/views/layouts/admin.html.erb_spec.rb +++ b/spec/views/layouts/admin.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/layouts/base.html.erb_spec.rb b/spec/views/layouts/base.html.erb_spec.rb index 8ce33a9d28..a2e1c6ca54 100644 --- a/spec/views/layouts/base.html.erb_spec.rb +++ b/spec/views/layouts/base.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/projects/settings/general/show.html.erb_spec.rb b/spec/views/projects/settings/general/show.html.erb_spec.rb index 470650a265..6e7b020710 100644 --- a/spec/views/projects/settings/general/show.html.erb_spec.rb +++ b/spec/views/projects/settings/general/show.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/repositories/stats.html.erb_spec.rb b/spec/views/repositories/stats.html.erb_spec.rb index 78533e074c..80d5eae7fb 100644 --- a/spec/views/repositories/stats.html.erb_spec.rb +++ b/spec/views/repositories/stats.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/users/edit.html.erb_spec.rb b/spec/views/users/edit.html.erb_spec.rb index fdbd84d392..c3eda44864 100644 --- a/spec/views/users/edit.html.erb_spec.rb +++ b/spec/views/users/edit.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/users/index.html.erb_spec.rb b/spec/views/users/index.html.erb_spec.rb index 769c55350c..2200f36373 100644 --- a/spec/views/users/index.html.erb_spec.rb +++ b/spec/views/users/index.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/users/show.html.erb_spec.rb b/spec/views/users/show.html.erb_spec.rb index 2b92a514ec..7704ae729f 100644 --- a/spec/views/users/show.html.erb_spec.rb +++ b/spec/views/users/show.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/wiki/new.html.erb_spec.rb b/spec/views/wiki/new.html.erb_spec.rb index fbac560b5f..8832fb8596 100644 --- a/spec/views/wiki/new.html.erb_spec.rb +++ b/spec/views/wiki/new.html.erb_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/views/work_package/auto_complete/index_spec.rb b/spec/views/work_package/auto_complete/index_spec.rb index 9d0c7ecaad..f3d30a10cc 100644 --- a/spec/views/work_package/auto_complete/index_spec.rb +++ b/spec/views/work_package/auto_complete/index_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/application_job_spec.rb b/spec/workers/application_job_spec.rb index 305dcd46f8..3be502df8e 100644 --- a/spec/workers/application_job_spec.rb +++ b/spec/workers/application_job_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/attachments/cleanup_uncontainered_job_integration_spec.rb b/spec/workers/attachments/cleanup_uncontainered_job_integration_spec.rb index d113aa58eb..488c5a7f62 100644 --- a/spec/workers/attachments/cleanup_uncontainered_job_integration_spec.rb +++ b/spec/workers/attachments/cleanup_uncontainered_job_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/backup_job_spec.rb b/spec/workers/backup_job_spec.rb index ee58b4032e..31c44d9e65 100644 --- a/spec/workers/backup_job_spec.rb +++ b/spec/workers/backup_job_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/copy_project_job_spec.rb b/spec/workers/copy_project_job_spec.rb index d9c6353cf8..7205135c53 100644 --- a/spec/workers/copy_project_job_spec.rb +++ b/spec/workers/copy_project_job_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/extract_fulltext_job_spec.rb b/spec/workers/extract_fulltext_job_spec.rb index cc44b95886..ab31c97f95 100644 --- a/spec/workers/extract_fulltext_job_spec.rb +++ b/spec/workers/extract_fulltext_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/journals/completed_job_spec.rb b/spec/workers/journals/completed_job_spec.rb index b8a30b78e8..63c261448d 100644 --- a/spec/workers/journals/completed_job_spec.rb +++ b/spec/workers/journals/completed_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/member_created_job_spec.rb b/spec/workers/mails/member_created_job_spec.rb index 041a080df6..88d7e60f8a 100644 --- a/spec/workers/mails/member_created_job_spec.rb +++ b/spec/workers/mails/member_created_job_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/member_updated_job_spec.rb b/spec/workers/mails/member_updated_job_spec.rb index 0e3d097f6a..58c68cdd00 100644 --- a/spec/workers/mails/member_updated_job_spec.rb +++ b/spec/workers/mails/member_updated_job_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/reminder_job_spec.rb b/spec/workers/mails/reminder_job_spec.rb index 64150bd503..199f903270 100644 --- a/spec/workers/mails/reminder_job_spec.rb +++ b/spec/workers/mails/reminder_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/shared/member_job.rb b/spec/workers/mails/shared/member_job.rb index 19bc0d20f7..f1e8b4850b 100644 --- a/spec/workers/mails/shared/member_job.rb +++ b/spec/workers/mails/shared/member_job.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/shared/watcher_job.rb b/spec/workers/mails/shared/watcher_job.rb index f1ac001fc0..e7617ea930 100644 --- a/spec/workers/mails/shared/watcher_job.rb +++ b/spec/workers/mails/shared/watcher_job.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/watcher_added_job_spec.rb b/spec/workers/mails/watcher_added_job_spec.rb index bfa8f5273f..8eef14802f 100644 --- a/spec/workers/mails/watcher_added_job_spec.rb +++ b/spec/workers/mails/watcher_added_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/mails/watcher_removed_job_spec.rb b/spec/workers/mails/watcher_removed_job_spec.rb index 613083c7aa..1c62eb3e52 100644 --- a/spec/workers/mails/watcher_removed_job_spec.rb +++ b/spec/workers/mails/watcher_removed_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/notifications/group_member_altered_job_spec.rb b/spec/workers/notifications/group_member_altered_job_spec.rb index 4773cee0dd..24007b44d6 100644 --- a/spec/workers/notifications/group_member_altered_job_spec.rb +++ b/spec/workers/notifications/group_member_altered_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/notifications/schedule_reminder_mails_job_spec.rb b/spec/workers/notifications/schedule_reminder_mails_job_spec.rb index 5d5cf8569f..1ef470a92e 100644 --- a/spec/workers/notifications/schedule_reminder_mails_job_spec.rb +++ b/spec/workers/notifications/schedule_reminder_mails_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/notifications/workflow_job_spec.rb b/spec/workers/notifications/workflow_job_spec.rb index ec7247bcf5..f9b704dd56 100644 --- a/spec/workers/notifications/workflow_job_spec.rb +++ b/spec/workers/notifications/workflow_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/principals/delete_job_integration_spec.rb b/spec/workers/principals/delete_job_integration_spec.rb index ce3393c1d3..bde8b259f1 100644 --- a/spec/workers/principals/delete_job_integration_spec.rb +++ b/spec/workers/principals/delete_job_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/projects/reorder_children_job_integration_spec.rb b/spec/workers/projects/reorder_children_job_integration_spec.rb index d124db7ef7..dc4605c1ff 100644 --- a/spec/workers/projects/reorder_children_job_integration_spec.rb +++ b/spec/workers/projects/reorder_children_job_integration_spec.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/scm/create_local_repository_job_spec.rb b/spec/workers/scm/create_local_repository_job_spec.rb index 0d76526a56..3de296e198 100644 --- a/spec/workers/scm/create_local_repository_job_spec.rb +++ b/spec/workers/scm/create_local_repository_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/user_job_spec.rb b/spec/workers/user_job_spec.rb index 0108155748..3ec89e0a4f 100644 --- a/spec/workers/user_job_spec.rb +++ b/spec/workers/user_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/work_packages/exports/export_job_integration_spec.rb b/spec/workers/work_packages/exports/export_job_integration_spec.rb index 281ec9c323..30455a714e 100644 --- a/spec/workers/work_packages/exports/export_job_integration_spec.rb +++ b/spec/workers/work_packages/exports/export_job_integration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec/workers/work_packages/exports/export_job_spec.rb b/spec/workers/work_packages/exports/export_job_spec.rb index f12236a2ba..37749cf10e 100644 --- a/spec/workers/work_packages/exports/export_job_spec.rb +++ b/spec/workers/work_packages/exports/export_job_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/attachments.yml b/spec_legacy/fixtures/attachments.yml index a64fea70d0..300ddba898 100644 --- a/spec_legacy/fixtures/attachments.yml +++ b/spec_legacy/fixtures/attachments.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/categories.yml b/spec_legacy/fixtures/categories.yml index 5e4febaafe..80f6bfb3bc 100644 --- a/spec_legacy/fixtures/categories.yml +++ b/spec_legacy/fixtures/categories.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/changes.yml b/spec_legacy/fixtures/changes.yml index 25833eaa5b..9d997c6c33 100644 --- a/spec_legacy/fixtures/changes.yml +++ b/spec_legacy/fixtures/changes.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/changesets.yml b/spec_legacy/fixtures/changesets.yml index e6dfc9f769..2a7c8acae9 100644 --- a/spec_legacy/fixtures/changesets.yml +++ b/spec_legacy/fixtures/changesets.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/comments.yml b/spec_legacy/fixtures/comments.yml index f0606bc591..74b37405dc 100644 --- a/spec_legacy/fixtures/comments.yml +++ b/spec_legacy/fixtures/comments.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/custom_fields.yml b/spec_legacy/fixtures/custom_fields.yml index 7be6fe87be..9e01197289 100644 --- a/spec_legacy/fixtures/custom_fields.yml +++ b/spec_legacy/fixtures/custom_fields.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/custom_fields_projects.yml b/spec_legacy/fixtures/custom_fields_projects.yml index ffb8fdf2c1..6d0f23b27a 100644 --- a/spec_legacy/fixtures/custom_fields_projects.yml +++ b/spec_legacy/fixtures/custom_fields_projects.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/custom_fields_types.yml b/spec_legacy/fixtures/custom_fields_types.yml index 71f911d2c5..3d78da811c 100644 --- a/spec_legacy/fixtures/custom_fields_types.yml +++ b/spec_legacy/fixtures/custom_fields_types.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/custom_options.yml b/spec_legacy/fixtures/custom_options.yml index a9eb464131..5815a3e0de 100644 --- a/spec_legacy/fixtures/custom_options.yml +++ b/spec_legacy/fixtures/custom_options.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/custom_values.yml b/spec_legacy/fixtures/custom_values.yml index a653b28888..1dab703ebe 100644 --- a/spec_legacy/fixtures/custom_values.yml +++ b/spec_legacy/fixtures/custom_values.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/enabled_modules.yml b/spec_legacy/fixtures/enabled_modules.yml index 8656c638a1..71d24d4b85 100644 --- a/spec_legacy/fixtures/enabled_modules.yml +++ b/spec_legacy/fixtures/enabled_modules.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/enumerations.yml b/spec_legacy/fixtures/enumerations.yml index 2e1cdb5937..0a8c6ac6cb 100644 --- a/spec_legacy/fixtures/enumerations.yml +++ b/spec_legacy/fixtures/enumerations.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/files/060719210727_source.rb b/spec_legacy/fixtures/files/060719210727_source.rb index c55032ad53..ff8f1fad18 100644 --- a/spec_legacy/fixtures/files/060719210727_source.rb +++ b/spec_legacy/fixtures/files/060719210727_source.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/forums.yml b/spec_legacy/fixtures/forums.yml index 573346c967..21eaf31e8a 100644 --- a/spec_legacy/fixtures/forums.yml +++ b/spec_legacy/fixtures/forums.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/group_users.yml b/spec_legacy/fixtures/group_users.yml index 8bca42efca..2d35784f1c 100644 --- a/spec_legacy/fixtures/group_users.yml +++ b/spec_legacy/fixtures/group_users.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/member_roles.yml b/spec_legacy/fixtures/member_roles.yml index ad93ea2b60..7a3441dfa4 100644 --- a/spec_legacy/fixtures/member_roles.yml +++ b/spec_legacy/fixtures/member_roles.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/members.yml b/spec_legacy/fixtures/members.yml index 8ecd88b0c0..c8379d83c9 100644 --- a/spec_legacy/fixtures/members.yml +++ b/spec_legacy/fixtures/members.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/menu_items.yml b/spec_legacy/fixtures/menu_items.yml index c786cff420..42f965afe5 100644 --- a/spec_legacy/fixtures/menu_items.yml +++ b/spec_legacy/fixtures/menu_items.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/messages.yml b/spec_legacy/fixtures/messages.yml index 4962484e7f..2987e72eda 100644 --- a/spec_legacy/fixtures/messages.yml +++ b/spec_legacy/fixtures/messages.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/news.yml b/spec_legacy/fixtures/news.yml index 523acf7e36..c17961dd80 100644 --- a/spec_legacy/fixtures/news.yml +++ b/spec_legacy/fixtures/news.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/projects.yml b/spec_legacy/fixtures/projects.yml index 8bfdb49e64..3199bf54be 100644 --- a/spec_legacy/fixtures/projects.yml +++ b/spec_legacy/fixtures/projects.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/projects_types.yml b/spec_legacy/fixtures/projects_types.yml index d2c9af5617..44fb12e637 100644 --- a/spec_legacy/fixtures/projects_types.yml +++ b/spec_legacy/fixtures/projects_types.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/queries.yml b/spec_legacy/fixtures/queries.yml index a6c106af0c..465e506de7 100644 --- a/spec_legacy/fixtures/queries.yml +++ b/spec_legacy/fixtures/queries.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/relations.yml b/spec_legacy/fixtures/relations.yml index 34a694dba8..5ace78efda 100644 --- a/spec_legacy/fixtures/relations.yml +++ b/spec_legacy/fixtures/relations.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/repositories.yml b/spec_legacy/fixtures/repositories.yml index 9710899d25..9f0a803754 100644 --- a/spec_legacy/fixtures/repositories.yml +++ b/spec_legacy/fixtures/repositories.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/role_permissions.yml b/spec_legacy/fixtures/role_permissions.yml index 256a5d95f7..b97c12fd76 100644 --- a/spec_legacy/fixtures/role_permissions.yml +++ b/spec_legacy/fixtures/role_permissions.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/roles.yml b/spec_legacy/fixtures/roles.yml index 1ad3d0597f..26b34f3194 100644 --- a/spec_legacy/fixtures/roles.yml +++ b/spec_legacy/fixtures/roles.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/statuses.yml b/spec_legacy/fixtures/statuses.yml index 2c74972bc7..b4c0bd86a5 100644 --- a/spec_legacy/fixtures/statuses.yml +++ b/spec_legacy/fixtures/statuses.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/time_entries.yml b/spec_legacy/fixtures/time_entries.yml index b221b5619c..ca3ccca28d 100644 --- a/spec_legacy/fixtures/time_entries.yml +++ b/spec_legacy/fixtures/time_entries.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/tokens.yml b/spec_legacy/fixtures/tokens.yml index 4c6c77fc50..6e5a9e1798 100644 --- a/spec_legacy/fixtures/tokens.yml +++ b/spec_legacy/fixtures/tokens.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/types.yml b/spec_legacy/fixtures/types.yml index 7c622886a3..7d77fa3fc9 100644 --- a/spec_legacy/fixtures/types.yml +++ b/spec_legacy/fixtures/types.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/user_passwords.yml b/spec_legacy/fixtures/user_passwords.yml index 2114ead28a..60b74ca3f2 100644 --- a/spec_legacy/fixtures/user_passwords.yml +++ b/spec_legacy/fixtures/user_passwords.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/users.yml b/spec_legacy/fixtures/users.yml index 1ea2406779..3f5baac3a5 100644 --- a/spec_legacy/fixtures/users.yml +++ b/spec_legacy/fixtures/users.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/versions.yml b/spec_legacy/fixtures/versions.yml index b32d2a8b97..2cc8e725fb 100644 --- a/spec_legacy/fixtures/versions.yml +++ b/spec_legacy/fixtures/versions.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/watchers.yml b/spec_legacy/fixtures/watchers.yml index c9d10f23fa..97ecfb50a3 100644 --- a/spec_legacy/fixtures/watchers.yml +++ b/spec_legacy/fixtures/watchers.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/wiki_contents.yml b/spec_legacy/fixtures/wiki_contents.yml index 0814c9576a..7ed34b4628 100644 --- a/spec_legacy/fixtures/wiki_contents.yml +++ b/spec_legacy/fixtures/wiki_contents.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/wiki_pages.yml b/spec_legacy/fixtures/wiki_pages.yml index 088d4a3b7e..bbc0806e15 100644 --- a/spec_legacy/fixtures/wiki_pages.yml +++ b/spec_legacy/fixtures/wiki_pages.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/wikis.yml b/spec_legacy/fixtures/wikis.yml index ec71a4ec62..216ef63afc 100644 --- a/spec_legacy/fixtures/wikis.yml +++ b/spec_legacy/fixtures/wikis.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/work_packages.yml b/spec_legacy/fixtures/work_packages.yml index 36e0c771cc..b166e75f97 100644 --- a/spec_legacy/fixtures/work_packages.yml +++ b/spec_legacy/fixtures/work_packages.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/fixtures/workflows.yml b/spec_legacy/fixtures/workflows.yml index 4b195e21c7..b94712651c 100644 --- a/spec_legacy/fixtures/workflows.yml +++ b/spec_legacy/fixtures/workflows.yml @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/functional/roles_controller_spec.rb b/spec_legacy/functional/roles_controller_spec.rb index 4bc06f00f7..0d8462d347 100644 --- a/spec_legacy/functional/roles_controller_spec.rb +++ b/spec_legacy/functional/roles_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/functional/wiki_controller_spec.rb b/spec_legacy/functional/wiki_controller_spec.rb index 30dc6330c4..0c644d6768 100644 --- a/spec_legacy/functional/wiki_controller_spec.rb +++ b/spec_legacy/functional/wiki_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/functional/workflows_controller_spec.rb b/spec_legacy/functional/workflows_controller_spec.rb index feec8e81e3..f7d1566b8c 100644 --- a/spec_legacy/functional/workflows_controller_spec.rb +++ b/spec_legacy/functional/workflows_controller_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/legacy_spec_helper.rb b/spec_legacy/legacy_spec_helper.rb index 668087c7ce..b2f9f91d46 100644 --- a/spec_legacy/legacy_spec_helper.rb +++ b/spec_legacy/legacy_spec_helper.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/support/legacy_assertions.rb b/spec_legacy/support/legacy_assertions.rb index 0eb3f219dc..0e54120657 100644 --- a/spec_legacy/support/legacy_assertions.rb +++ b/spec_legacy/support/legacy_assertions.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/support/legacy_file_helpers.rb b/spec_legacy/support/legacy_file_helpers.rb index 46abca7821..a656fe70d2 100644 --- a/spec_legacy/support/legacy_file_helpers.rb +++ b/spec_legacy/support/legacy_file_helpers.rb @@ -1,6 +1,6 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/comment_spec.rb b/spec_legacy/unit/comment_spec.rb index bc254ef3f2..825157b910 100644 --- a/spec_legacy/unit/comment_spec.rb +++ b/spec_legacy/unit/comment_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/custom_value_spec.rb b/spec_legacy/unit/custom_value_spec.rb index b66cf895f0..f2dce50565 100644 --- a/spec_legacy/unit/custom_value_spec.rb +++ b/spec_legacy/unit/custom_value_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/enumeration_spec.rb b/spec_legacy/unit/enumeration_spec.rb index 5af3ee96ba..b891985998 100644 --- a/spec_legacy/unit/enumeration_spec.rb +++ b/spec_legacy/unit/enumeration_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/helpers/sort_helper_spec.rb b/spec_legacy/unit/helpers/sort_helper_spec.rb index 4dccff31df..d50e604e54 100644 --- a/spec_legacy/unit/helpers/sort_helper_spec.rb +++ b/spec_legacy/unit/helpers/sort_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/i18n_spec.rb b/spec_legacy/unit/lib/redmine/i18n_spec.rb index 57e93ba389..aeac884342 100644 --- a/spec_legacy/unit/lib/redmine/i18n_spec.rb +++ b/spec_legacy/unit/lib/redmine/i18n_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/menu_manager/mapper_spec.rb b/spec_legacy/unit/lib/redmine/menu_manager/mapper_spec.rb index 14b0d396ce..5ae5749887 100644 --- a/spec_legacy/unit/lib/redmine/menu_manager/mapper_spec.rb +++ b/spec_legacy/unit/lib/redmine/menu_manager/mapper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/menu_manager/menu_helper_spec.rb b/spec_legacy/unit/lib/redmine/menu_manager/menu_helper_spec.rb index d4e2338459..2b8c0483e1 100644 --- a/spec_legacy/unit/lib/redmine/menu_manager/menu_helper_spec.rb +++ b/spec_legacy/unit/lib/redmine/menu_manager/menu_helper_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/menu_manager/menu_item_spec.rb b/spec_legacy/unit/lib/redmine/menu_manager/menu_item_spec.rb index fc268a7b57..d7d1c4a419 100644 --- a/spec_legacy/unit/lib/redmine/menu_manager/menu_item_spec.rb +++ b/spec_legacy/unit/lib/redmine/menu_manager/menu_item_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/plugin_spec.rb b/spec_legacy/unit/lib/redmine/plugin_spec.rb index 13b7d2ff5c..008ab2f6b5 100644 --- a/spec_legacy/unit/lib/redmine/plugin_spec.rb +++ b/spec_legacy/unit/lib/redmine/plugin_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine/unified_diff_spec.rb b/spec_legacy/unit/lib/redmine/unified_diff_spec.rb index 56895c60ec..81eaa9ba6a 100644 --- a/spec_legacy/unit/lib/redmine/unified_diff_spec.rb +++ b/spec_legacy/unit/lib/redmine/unified_diff_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/lib/redmine_spec.rb b/spec_legacy/unit/lib/redmine_spec.rb index 4359fd54fd..7916fe1913 100644 --- a/spec_legacy/unit/lib/redmine_spec.rb +++ b/spec_legacy/unit/lib/redmine_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/mail_handler_spec.rb b/spec_legacy/unit/mail_handler_spec.rb index 3411a848dc..6470fa412e 100644 --- a/spec_legacy/unit/mail_handler_spec.rb +++ b/spec_legacy/unit/mail_handler_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/project_spec.rb b/spec_legacy/unit/project_spec.rb index 74e2054c5b..18b7e99fa2 100644 --- a/spec_legacy/unit/project_spec.rb +++ b/spec_legacy/unit/project_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/role_spec.rb b/spec_legacy/unit/role_spec.rb index 6c98711a13..c61b439eac 100644 --- a/spec_legacy/unit/role_spec.rb +++ b/spec_legacy/unit/role_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/search_spec.rb b/spec_legacy/unit/search_spec.rb index a05dc68951..e290e37b89 100644 --- a/spec_legacy/unit/search_spec.rb +++ b/spec_legacy/unit/search_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/user_spec.rb b/spec_legacy/unit/user_spec.rb index 171c00c79b..5cbcc0cdb7 100644 --- a/spec_legacy/unit/user_spec.rb +++ b/spec_legacy/unit/user_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/version_spec.rb b/spec_legacy/unit/version_spec.rb index d29b355dae..91bfbd21e4 100644 --- a/spec_legacy/unit/version_spec.rb +++ b/spec_legacy/unit/version_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. diff --git a/spec_legacy/unit/wiki_page_spec.rb b/spec_legacy/unit/wiki_page_spec.rb index def67cf976..079a362ac4 100644 --- a/spec_legacy/unit/wiki_page_spec.rb +++ b/spec_legacy/unit/wiki_page_spec.rb @@ -2,7 +2,7 @@ #-- copyright # OpenProject is an open source project management software. -# Copyright (C) 2012-2021 the OpenProject GmbH +# Copyright (C) 2012-2022 the OpenProject GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. From 392f539bf48de3dfe115e3133714a012235f4104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 05:34:50 +0000 Subject: [PATCH 14/20] Bump rails-i18n from 7.0.2 to 7.0.3 Bumps [rails-i18n](https://github.com/svenfuchs/rails-i18n) from 7.0.2 to 7.0.3. - [Release notes](https://github.com/svenfuchs/rails-i18n/releases) - [Changelog](https://github.com/svenfuchs/rails-i18n/blob/master/CHANGELOG.md) - [Commits](https://github.com/svenfuchs/rails-i18n/commits) --- updated-dependencies: - dependency-name: rails-i18n dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 34aa03f55f..aee60f760d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -755,7 +755,7 @@ GEM nokogiri (>= 1.6) rails-html-sanitizer (1.4.2) loofah (~> 2.3) - rails-i18n (7.0.2) + rails-i18n (7.0.3) i18n (>= 0.7, < 2) railties (>= 6.0.0, < 8) railties (6.1.4.6) From 7c3a9e8890f047fb1705b15c7a5cea647e26fd9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 10:23:56 +0000 Subject: [PATCH 15/20] Bump karma from 6.3.14 to 6.3.16 in /frontend Bumps [karma](https://github.com/karma-runner/karma) from 6.3.14 to 6.3.16. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v6.3.14...v6.3.16) --- updated-dependencies: - dependency-name: karma dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- frontend/package-lock.json | 30 ++++++++++++++++++++---------- frontend/package.json | 2 +- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 2e3111e5e6..9ab1c78923 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -7634,9 +7634,9 @@ } }, "engine.io": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.2.tgz", - "integrity": "sha512-v/7eGHxPvO2AWsksyx2PUsQvBafuvqs0jJJQ0FdmJG1b9qIvgSbqDRGwNhfk2XHaTTbTXiC4quRE8Q9nRjsrQQ==", + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.1.3.tgz", + "integrity": "sha512-rqs60YwkvWTLLnfazqgZqLa/aKo+9cueVfEi/dZ8PyGyaf8TLOxj++4QMIgeG3Gn0AhrWiFXvghsoY9L9h25GA==", "dev": true, "requires": { "@types/cookie": "^0.4.1", @@ -7647,7 +7647,7 @@ "cookie": "~0.4.1", "cors": "~2.8.5", "debug": "~4.3.1", - "engine.io-parser": "~5.0.0", + "engine.io-parser": "~5.0.3", "ws": "~8.2.3" }, "dependencies": { @@ -9172,9 +9172,9 @@ "dev": true }, "fs-extra": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", - "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.1.tgz", + "integrity": "sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -11340,9 +11340,9 @@ } }, "karma": { - "version": "6.3.14", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.14.tgz", - "integrity": "sha512-SDFoU5F4LdosEiUVWUDRPCV/C1zQRNtIakx7rWkigf7R4sxGADlSEeOma4S1f/js7YAzvqLW92ByoiQptg+8oQ==", + "version": "6.3.16", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.3.16.tgz", + "integrity": "sha512-nEU50jLvDe5yvXqkEJRf8IuvddUkOY2x5Xc4WXHz6dxINgGDrgD2uqQWeVrJs4hbfNaotn+HQ1LZJ4yOXrL7xQ==", "dev": true, "requires": { "body-parser": "^1.19.0", @@ -11360,6 +11360,7 @@ "log4js": "^6.4.1", "mime": "^2.5.2", "minimatch": "^3.0.4", + "mkdirp": "^0.5.5", "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", @@ -11370,6 +11371,15 @@ "yargs": "^16.1.1" }, "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, "rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", diff --git a/frontend/package.json b/frontend/package.json index 794968c7fe..2625330c62 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -47,7 +47,7 @@ "esprint": "^3.1.0", "jasmine-core": "~3.6.0", "jasmine-spec-reporter": "~5.0.0", - "karma": "~6.3.14", + "karma": "~6.3.16", "karma-chrome-launcher": "~3.1.0", "karma-coverage": "~2.0.3", "karma-coverage-istanbul-reporter": "~3.0.2", From 67b0c375cd063fcb2702ba3d32c5db8af5c71abc Mon Sep 17 00:00:00 2001 From: bsatarnejad Date: Wed, 2 Mar 2022 12:33:08 +0100 Subject: [PATCH 16/20] Check if there is no loading indicator then test --- spec/support/components/project_include_component.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spec/support/components/project_include_component.rb b/spec/support/components/project_include_component.rb index e0d1f385d0..e024567034 100644 --- a/spec/support/components/project_include_component.rb +++ b/spec/support/components/project_include_component.rb @@ -56,6 +56,7 @@ module Components end def expect_checkbox(project_id, checked = false) + no_loading_indicator page.find( "[data-qa-project-include-id='#{project_id}'][data-qa-project-include-checked='#{checked ? '1' : '0'}']", wait: 10 @@ -63,12 +64,14 @@ module Components end def expect_no_checkbox(project_id) + no_loading_indicator unless page.has_no_selector?("[data-qa-project-include-id='#{project_id}']") raise "Expected not to find #{project_id}" end end def search(text) + no_loading_indicator within_body do fill_in "project-include-search", with: text, @@ -101,5 +104,9 @@ module Components def selector '.op-project-include' end + + def no_loading_indicator + expect(page).to have_no_selector("[data-qa-selector='op-project-include--loading']") + end end end From fd36ffba400037709e90a05b1da31e125bd84f50 Mon Sep 17 00:00:00 2001 From: bsatarnejad Date: Wed, 2 Mar 2022 12:34:07 +0100 Subject: [PATCH 17/20] improve the skeleton view --- .../project-include.component.html | 44 +++++++++++++------ .../project-include.component.ts | 7 +-- 2 files changed, 35 insertions(+), 16 deletions(-) diff --git a/frontend/src/app/shared/components/project-include/project-include.component.html b/frontend/src/app/shared/components/project-include/project-include.component.html index b7eb2bdc15..3b8e3ef9a9 100644 --- a/frontend/src/app/shared/components/project-include/project-include.component.html +++ b/frontend/src/app/shared/components/project-include/project-include.component.html @@ -32,7 +32,7 @@ class="spot-body" > - +