From 0780b17f4b4f9a6ab844b91face897edf1252857 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Thu, 26 Dec 2024 19:30:32 +0000 Subject: [PATCH] Add copyright notice --- app/models/group_affinity.rb | 2 ++ db/migrate/20241216231415_create_group_affinities.rb | 2 ++ db/schema.rb | 2 ++ spec/factories/group_affinities.rb | 2 ++ spec/models/group_affinity_spec.rb | 2 ++ spec/requests/affinities_spec.rb | 2 ++ 6 files changed, 12 insertions(+) diff --git a/app/models/group_affinity.rb b/app/models/group_affinity.rb index c33364c..31e1503 100644 --- a/app/models/group_affinity.rb +++ b/app/models/group_affinity.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # == Schema Information # # Table name: group_affinities diff --git a/db/migrate/20241216231415_create_group_affinities.rb b/db/migrate/20241216231415_create_group_affinities.rb index 1c6789d..2b03897 100644 --- a/db/migrate/20241216231415_create_group_affinities.rb +++ b/db/migrate/20241216231415_create_group_affinities.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + class CreateGroupAffinities < ActiveRecord::Migration[8.0] disable_ddl_transaction! diff --git a/db/schema.rb b/db/schema.rb index 5e4178c..f723b74 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # This file is auto-generated from the current state of the database. Instead # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. diff --git a/spec/factories/group_affinities.rb b/spec/factories/group_affinities.rb index 6877218..bc57226 100644 --- a/spec/factories/group_affinities.rb +++ b/spec/factories/group_affinities.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + FactoryBot.define do factory :group_affinity do association :group_a, factory: :group diff --git a/spec/models/group_affinity_spec.rb b/spec/models/group_affinity_spec.rb index d346110..05f9330 100644 --- a/spec/models/group_affinity_spec.rb +++ b/spec/models/group_affinity_spec.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # frozen_string_literal: true require 'rails_helper' diff --git a/spec/requests/affinities_spec.rb b/spec/requests/affinities_spec.rb index a78d569..39f6afd 100644 --- a/spec/requests/affinities_spec.rb +++ b/spec/requests/affinities_spec.rb @@ -1,3 +1,5 @@ +# Copyright (C) 2024 Manuel Bustillo + # frozen_string_literal: true require 'swagger_helper'