diff --git a/app/models/ability/admin.rb b/app/models/ability/admin.rb index 4fed71195a..1109f4e0b9 100644 --- a/app/models/ability/admin.rb +++ b/app/models/ability/admin.rb @@ -73,6 +73,7 @@ def admin_communication can :manage, Communication::Website::Menu, university_id: @user.university_id can :manage, Communication::Website::Menu::Item, university_id: @user.university_id can :manage, Communication::Website::Page, university_id: @user.university_id + can :manage, Communication::Website::Page::Category, university_id: @user.university_id can :manage, Communication::Website::Post, university_id: @user.university_id end diff --git a/app/models/ability/program_manager.rb b/app/models/ability/program_manager.rb index b3da7db0f1..62fdb7264f 100644 --- a/app/models/ability/program_manager.rb +++ b/app/models/ability/program_manager.rb @@ -3,13 +3,18 @@ class Ability::ProgramManager < Ability def initialize(user) super can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Agenda::Event::Localization', about_id: managed_event_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Agenda::Category::Localization', about_id: managed_agenda_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Post::Localization', about_id: managed_post_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Post::Category::Localization', about_id: managed_post_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Education::Program::Localization', about_id: managed_program_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Education::Program::Category::Localization', about_id: managed_program_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'University::Person::Localization', about_id: managed_person_localization_ids can :create, Communication::Block can :read, Communication::Website, university_id: @user.university_id can :manage, Communication::Website::Agenda::Event, university_id: @user.university_id + can :manage, Communication::Website::Agenda::Category, id: managed_agenda_category_ids can :manage, Communication::Website::Post, university_id: @user.university_id + can :manage, Communication::Website::Post::Category, id: managed_post_category_ids can :manage, Education::Program, id: managed_programs_ids can [:read, :children], Education::Program, university_id: @user.university_id cannot :create, Education::Program @@ -37,6 +42,22 @@ def managed_post_localization_ids end end + def managed_agenda_category_ids + @managed_agenda_category_ids ||= Communication::Website::Agenda::Category.where(university_id: @user.university_id, program_id: managed_programs_ids).pluck(:id) + end + + def managed_agenda_category_localization_ids + @managed_agenda_category_localization_ids ||= Communication::Website::Agenda::Category::Localization.where(about_id: managed_agenda_category_ids).pluck(:id) + end + + def managed_post_category_ids + @managed_post_category_ids ||= Communication::Website::Post::Category.where(university_id: @user.university_id, program_id: managed_programs_ids).pluck(:id) + end + + def managed_post_category_localization_ids + @managed_post_category_localization_ids ||= Communication::Website::Post::Category::Localization.where(about_id: managed_post_category_ids).pluck(:id) + end + def managed_programs_ids @managed_programs_ids ||= @user.programs_to_manage.pluck(:id) end @@ -45,6 +66,16 @@ def managed_program_localization_ids @managed_program_localization_ids ||= Education::Program::Localization.where(about_id: managed_program_ids).pluck(:id) end + def managed_program_category_ids + @managed_program_category_ids ||= Education::Program::Category.where(university_id: @user.university_id).pluck(:id) + end + + def managed_program_category_localization_ids + @managed_program_category_localization_ids ||= Education::Program::Category::Localization.where(about_id: managed_program_category_ids).pluck(:id) + end + + + def managed_person_localization_ids @managed_person_localization_ids ||= begin University::Person::Localization diff --git a/app/models/ability/website_manager.rb b/app/models/ability/website_manager.rb index b7db6d5b9e..afc26883e2 100644 --- a/app/models/ability/website_manager.rb +++ b/app/models/ability/website_manager.rb @@ -7,15 +7,17 @@ def initialize(user) can :manage, Communication::Website::Localization, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, Communication::Website::Agenda::Event, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, Communication::Website::Agenda::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids - can :manage, Communication::Website::Post::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids can [:read, :update, :reorder], Communication::Website::Menu, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, Communication::Website::Menu::Item, university_id: @user.university_id, website_id: managed_websites_ids can :create, Communication::Website::Menu::Item, university_id: @user.university_id can :manage, Communication::Website::Page, university_id: @user.university_id, communication_website_id: managed_websites_ids - can :manage, Communication::Website::Portfolio::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids + can :manage, Communication::Website::Page::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, Communication::Website::Portfolio::Project, university_id: @user.university_id, communication_website_id: managed_websites_ids + can :manage, Communication::Website::Portfolio::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, Communication::Website::Post, university_id: @user.university_id, communication_website_id: managed_websites_ids + can :manage, Communication::Website::Post::Category, university_id: @user.university_id, communication_website_id: managed_websites_ids can :manage, University::Organization, university_id: @user.university_id + can :manage, University::Organization::Category, university_id: @user.university_id can :manage, University::Person, university_id: @user.university_id can :manage, University::Person::Category, university_id: @user.university_id can :manage, University::Person::Experience, university_id: @user.university_id @@ -49,6 +51,14 @@ def managed_page_localization_ids end end + def managed_page_category_localization_ids + @managed_page_category_localization_ids ||= begin + Communication::Website::Page::Category::Localization + .where(communication_website_id: managed_websites_ids) + .pluck(:id) + end + end + def managed_portfolio_category_localization_ids @managed_portfolio_category_localization_ids ||= begin Communication::Website::Portfolio::Category::Localization @@ -82,15 +92,18 @@ def managed_post_localization_ids end def manage_blocks - can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Agenda::Category::Localization', about_id: managed_agenda_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Agenda::Event::Localization', about_id: managed_agenda_event_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Agenda::Category::Localization', about_id: managed_agenda_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Page::Localization', about_id: managed_page_localization_ids - can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Portfolio::Category::Localization', about_id: managed_portfolio_category_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Page::Category::Localization', about_id: managed_page_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Portfolio::Project::Localization', about_id: managed_portfolio_project_localizations_ids - can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Post::Category::Localization', about_id: managed_post_category_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Portfolio::Category::Localization', about_id: managed_portfolio_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Post::Localization', about_id: managed_post_localization_ids + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'Communication::Website::Post::Category::Localization', about_id: managed_post_category_localization_ids can :manage, Communication::Block, university_id: @user.university_id, about_type: 'University::Organization::Localization', about_id: University::Organization::Localization.where(university_id: @user.university_id).pluck(:id) + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'University::Organization::Category::Localization', about_id: University::Organization::Category::Localization.where(university_id: @user.university_id).pluck(:id) can :manage, Communication::Block, university_id: @user.university_id, about_type: 'University::Person::Localization', about_id: University::Person::Localization.where(university_id: @user.university_id).pluck(:id) + can :manage, Communication::Block, university_id: @user.university_id, about_type: 'University::Person::Category::Localization', about_id: University::Person::Category::Localization.where(university_id: @user.university_id).pluck(:id) can :create, Communication::Block end diff --git a/app/models/communication/block/template/page.rb b/app/models/communication/block/template/page.rb index b13572ee3a..05eb0a970f 100644 --- a/app/models/communication/block/template/page.rb +++ b/app/models/communication/block/template/page.rb @@ -50,7 +50,7 @@ def top_title end def top_description - page_l10n.try(:summary) + page_l10n.try(:summary) if option_main_summary end def top_link diff --git a/app/models/education/diploma.rb b/app/models/education/diploma.rb index 6054c9cc33..417d3d03be 100644 --- a/app/models/education/diploma.rb +++ b/app/models/education/diploma.rb @@ -39,7 +39,7 @@ class Education::Diploma < ApplicationRecord fourth_year: 400, master: 500, doctor: 800 - } + }, prefix: :level has_many :programs, dependent: :nullify diff --git a/app/services/importers/curator.rb b/app/services/importers/curator.rb index bfccece6d2..830f1a3102 100644 --- a/app/services/importers/curator.rb +++ b/app/services/importers/curator.rb @@ -9,6 +9,7 @@ def initialize(website, user, language, url) @url = url unless slug_already_exists? create_post! + set_post_author! create_localization! create_chapter! attach_image! @@ -21,18 +22,22 @@ def already_imported? end def valid? - @post&.valid? && @l10n&.valid? && @chapter&.valid? + # if nothing exists valid? is "nil" and not "false" + (@post&.valid? && @l10n&.valid? && @chapter&.valid?) == true end protected def create_post! @post = website.posts.create( - university: website.university, - author: @user.person + university: website.university ) end + def set_post_author! + @post.authors << @user.person if @user.person.present? + end + def create_localization! @l10n = @post.localizations.create( language_id: @language.id, @@ -72,7 +77,7 @@ def slug_already_exists? website: website, language: language, slug: slug - ) + ).any? end def page diff --git a/app/views/admin/education/diplomas/static.html.erb b/app/views/admin/education/diplomas/static.html.erb index a2e12a17f1..504e0df3c4 100644 --- a/app/views/admin/education/diplomas/static.html.erb +++ b/app/views/admin/education/diplomas/static.html.erb @@ -25,8 +25,10 @@ programs: short_name: >- <%= prepare_text_for_static @l10n.short_name %> <%= render 'admin/application/summary/static', about: @l10n %> +<% unless diploma.level_not_applicable? %> level: >- <%= diploma.level_i18n %> +<% end %> ects: <%= diploma.ects %> certification: <%= diploma.certification %> duration: >- diff --git a/app/views/extranet/organizations/_form.html.erb b/app/views/extranet/organizations/_form.html.erb index fa4eab893b..afd3a91b60 100644 --- a/app/views/extranet/organizations/_form.html.erb +++ b/app/views/extranet/organizations/_form.html.erb @@ -32,9 +32,9 @@ <%= lf.input :url %> <%= f.input :phone %> <%= f.input :email %> - <%= f.input :linkedin %> - <%= f.input :twitter %> - <%= f.input :mastodon %> + <%= lf.input :linkedin %> + <%= lf.input :twitter %> + <%= lf.input :mastodon %>

<%= University::Organization.human_attribute_name('legal') %>

<%= lf.input :long_name %> @@ -45,12 +45,12 @@

<%= University::Organization.human_attribute_name('logos') %>

- <%= f.input :logo, + <%= lf.input :logo, as: :single_deletable_file, input_html: { accept: default_images_formats_accepted }, preview: 200, resize: false %> - <%= f.input :logo_on_dark_background, + <%= lf.input :logo_on_dark_background, as: :single_deletable_file, input_html: { accept: default_images_formats_accepted }, preview: 200, diff --git a/openapi/osuny/v1/openapi.json b/openapi/osuny/v1/openapi.json index 9659366e33..708dd72df2 100644 --- a/openapi/osuny/v1/openapi.json +++ b/openapi/osuny/v1/openapi.json @@ -3963,12 +3963,12 @@ "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=Coupe%20du%20Monde%20d%27Escalade%202024%20-%20Chamonix%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z" }, "blocks": [], - "created_at": "2025-01-20T12:25:48.109+01:00", - "updated_at": "2025-01-20T12:25:48.109+01:00" + "created_at": "2025-01-27T12:31:46.759+01:00", + "updated_at": "2025-01-27T12:31:46.759+01:00" } }, - "created_at": "2025-01-20T12:25:48.122+01:00", - "updated_at": "2025-01-20T12:25:48.122+01:00" + "created_at": "2025-01-27T12:31:46.774+01:00", + "updated_at": "2025-01-27T12:31:46.774+01:00" } ] } @@ -4041,7 +4041,7 @@ "examples": { "Successful creation": { "value": { - "id": "7a105aaa-c9c9-4e2a-b10d-359989827108", + "id": "8a1e4223-c00a-442d-8355-1843174fbc66", "migration_identifier": "event-from-api-1", "from_day": "2024-12-24", "from_hour": "19:00", @@ -4052,14 +4052,14 @@ "parent_id": null, "localizations": { "fr": { - "id": "8cf882f9-f5ef-4bc6-b36a-23990dc082a2", + "id": "367e4738-519e-4b4a-b015-d4de38d8c2d0", "migration_identifier": "event-from-api-1-fr", "title": "Noël", "featured_image": { - "blob_id": "df199f68-7285-427a-b905-ec59d6c067c6", + "blob_id": "129a2233-bafb-487b-8530-03a2099099e0", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJjeGFpemdiNmtuY2NvZXA0bGpueDZ4OTUwazFiIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NDkuMDM0WiIsInB1ciI6ImJsb2Jfa2V5In19--99233b36c9e58022c57ad303ae56e8c9f4a3c18e/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJ3Yzd3MzJrdTkyd2hhaWphbG84Z28wZHhyN3FxIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDcuODE4WiIsInB1ciI6ImJsb2Jfa2V5In19--453a9d7295b2b38a4544f56fa7d1e01fef31ade0/photo-1703923633616-254e78f6e9df" }, "meta_description": "Les repas de Noël", "published": true, @@ -4073,11 +4073,11 @@ "yahoo": "https://calendar.yahoo.com/?v=60&TITLE=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&ST=20241224T180000Z&DUR=1900&DESC=Les%20repas%20de%20No%C3%ABl%20en%20famille.", "office": "https://outlook.office.com/calendar/0/action/compose?rru=addevent&subject=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&startdt=2024-12-24T18:00:00Z&enddt=2024-12-25T13:00:00Z&body=Les%20repas%20de%20No%C3%ABl%20en%20famille.", "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&startdt=2024-12-24T18:00:00Z&enddt=2024-12-25T13:00:00Z&body=Les%20repas%20de%20No%C3%ABl%20en%20famille.", - "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250120T122548Z%0ADTSTART:20241224T180000Z%0ADTEND:20241225T130000Z%0ASUMMARY:No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0ADESCRIPTION:Les%20repas%20de%20No%C3%ABl%20en%20famille.%0AUID:-20241224T180000Z-No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0AEND:VEVENT%0AEND:VCALENDAR" + "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250127T123147Z%0ADTSTART:20241224T180000Z%0ADTEND:20241225T130000Z%0ASUMMARY:No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0ADESCRIPTION:Les%20repas%20de%20No%C3%ABl%20en%20famille.%0AUID:-20241224T180000Z-No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0AEND:VEVENT%0AEND:VCALENDAR" }, "blocks": [ { - "id": "35a5ecdb-d139-4422-8dd8-2da9b6fc55f7", + "id": "d2aba08b-2528-4b00-8877-874cab6fdaab", "migration_identifier": "event-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -4094,16 +4094,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:48.896+01:00", - "updated_at": "2025-01-20T12:25:48.896+01:00" + "created_at": "2025-01-27T12:31:47.655+01:00", + "updated_at": "2025-01-27T12:31:47.655+01:00" } ], - "created_at": "2025-01-20T12:25:48.890+01:00", - "updated_at": "2025-01-20T12:25:48.923+01:00" + "created_at": "2025-01-27T12:31:47.651+01:00", + "updated_at": "2025-01-27T12:31:47.681+01:00" } }, - "created_at": "2025-01-20T12:25:48.885+01:00", - "updated_at": "2025-01-20T12:25:49.001+01:00" + "created_at": "2025-01-27T12:31:47.643+01:00", + "updated_at": "2025-01-27T12:31:47.771+01:00" } } } @@ -4229,7 +4229,7 @@ "value": { "created": [ { - "id": "2f41f7c6-775b-4d00-a098-ea0f9bdc00a0", + "id": "213f1829-8d7e-45a3-a590-d9460a77a462", "migration_identifier": "event-from-api-1", "from_day": "2024-12-24", "from_hour": "19:00", @@ -4240,14 +4240,14 @@ "parent_id": null, "localizations": { "fr": { - "id": "394b0da9-3c42-4f23-b6ba-528260ac47dd", + "id": "e1566fba-1dc9-44cc-b287-719ef5733519", "migration_identifier": "event-from-api-1-fr", "title": "Noël", "featured_image": { - "blob_id": "abfa3796-743b-4d2d-90c3-199916de4430", + "blob_id": "2ca2ac70-a4dc-4318-8d24-923535c83975", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJmeDFuYnczYmw2bXRqOThwNm9pejNvbGZyNmpjIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NDkuMzc1WiIsInB1ciI6ImJsb2Jfa2V5In19--3f81e07ac7c83627e1f3fff075935465b2499e13/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJwcjZrNTMzZXZncno1ZmlkMXk1ZWVnZHl4NWJiIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDguMjA1WiIsInB1ciI6ImJsb2Jfa2V5In19--1fc1ea9e0cff9b391af7c97cae8d3496bcf14d1a/photo-1703923633616-254e78f6e9df" }, "meta_description": "Les repas de Noël", "published": true, @@ -4261,11 +4261,11 @@ "yahoo": "https://calendar.yahoo.com/?v=60&TITLE=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&ST=20241224T180000Z&DUR=1900&DESC=Les%20repas%20de%20No%C3%ABl%20en%20famille.", "office": "https://outlook.office.com/calendar/0/action/compose?rru=addevent&subject=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&startdt=2024-12-24T18:00:00Z&enddt=2024-12-25T13:00:00Z&body=Les%20repas%20de%20No%C3%ABl%20en%20famille.", "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=No%C3%ABl%20Les%20repas%20de%20No%C3%ABl&startdt=2024-12-24T18:00:00Z&enddt=2024-12-25T13:00:00Z&body=Les%20repas%20de%20No%C3%ABl%20en%20famille.", - "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250120T122549Z%0ADTSTART:20241224T180000Z%0ADTEND:20241225T130000Z%0ASUMMARY:No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0ADESCRIPTION:Les%20repas%20de%20No%C3%ABl%20en%20famille.%0AUID:-20241224T180000Z-No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0AEND:VEVENT%0AEND:VCALENDAR" + "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250127T123148Z%0ADTSTART:20241224T180000Z%0ADTEND:20241225T130000Z%0ASUMMARY:No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0ADESCRIPTION:Les%20repas%20de%20No%C3%ABl%20en%20famille.%0AUID:-20241224T180000Z-No%C3%ABl%20Les%20repas%20de%20No%C3%ABl%0AEND:VEVENT%0AEND:VCALENDAR" }, "blocks": [ { - "id": "f9a55e53-e4ae-4e44-aa9f-9234b498bf0d", + "id": "ca17811a-75d6-4374-95b4-32af199f39c9", "migration_identifier": "event-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -4282,16 +4282,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:49.227+01:00", - "updated_at": "2025-01-20T12:25:49.227+01:00" + "created_at": "2025-01-27T12:31:48.016+01:00", + "updated_at": "2025-01-27T12:31:48.016+01:00" } ], - "created_at": "2025-01-20T12:25:49.223+01:00", - "updated_at": "2025-01-20T12:25:49.235+01:00" + "created_at": "2025-01-27T12:31:48.011+01:00", + "updated_at": "2025-01-27T12:31:48.029+01:00" } }, - "created_at": "2025-01-20T12:25:49.215+01:00", - "updated_at": "2025-01-20T12:25:49.282+01:00" + "created_at": "2025-01-27T12:31:48.003+01:00", + "updated_at": "2025-01-27T12:31:48.084+01:00" } ], "updated": [ @@ -4328,15 +4328,15 @@ "yahoo": "https://calendar.yahoo.com/?v=60&TITLE=Mon%20nouveau%20titre%20&ST=20240712T070000Z&DUR=3915", "office": "https://outlook.office.com/calendar/0/action/compose?rru=addevent&subject=Mon%20nouveau%20titre%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z", "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=Mon%20nouveau%20titre%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z", - "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250120T122549Z%0ADTSTART:20240712T070000Z%0ADTEND:20240713T221500Z%0ASUMMARY:Mon%20nouveau%20titre%20%0AUID:-20240712T070000Z-Mon%20nouveau%20titre%20%0AEND:VEVENT%0AEND:VCALENDAR" + "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250127T123148Z%0ADTSTART:20240712T070000Z%0ADTEND:20240713T221500Z%0ASUMMARY:Mon%20nouveau%20titre%20%0AUID:-20240712T070000Z-Mon%20nouveau%20titre%20%0AEND:VEVENT%0AEND:VCALENDAR" }, "blocks": [], - "created_at": "2025-01-20T12:25:48.109+01:00", - "updated_at": "2025-01-20T12:25:49.344+01:00" + "created_at": "2025-01-27T12:31:46.759+01:00", + "updated_at": "2025-01-27T12:31:48.164+01:00" } }, - "created_at": "2025-01-20T12:25:48.122+01:00", - "updated_at": "2025-01-20T12:25:49.346+01:00" + "created_at": "2025-01-27T12:31:46.774+01:00", + "updated_at": "2025-01-27T12:31:48.167+01:00" } ], "errors": [] @@ -4528,12 +4528,12 @@ "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=Coupe%20du%20Monde%20d%27Escalade%202024%20-%20Chamonix%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z" }, "blocks": [], - "created_at": "2025-01-20T12:25:48.109+01:00", - "updated_at": "2025-01-20T12:25:48.109+01:00" + "created_at": "2025-01-27T12:31:46.759+01:00", + "updated_at": "2025-01-27T12:31:46.759+01:00" } }, - "created_at": "2025-01-20T12:25:48.122+01:00", - "updated_at": "2025-01-20T12:25:48.122+01:00" + "created_at": "2025-01-27T12:31:46.774+01:00", + "updated_at": "2025-01-27T12:31:46.774+01:00" } } } @@ -4645,15 +4645,15 @@ "yahoo": "https://calendar.yahoo.com/?v=60&TITLE=Mon%20nouveau%20titre%20&ST=20240712T070000Z&DUR=3915", "office": "https://outlook.office.com/calendar/0/action/compose?rru=addevent&subject=Mon%20nouveau%20titre%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z", "outlook": "https://outlook.live.com/calendar/0/action/compose?rru=addevent&subject=Mon%20nouveau%20titre%20&startdt=2024-07-12T07:00:00Z&enddt=2024-07-13T22:15:00Z", - "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250120T122549Z%0ADTSTART:20240712T070000Z%0ADTEND:20240713T221500Z%0ASUMMARY:Mon%20nouveau%20titre%20%0AUID:-20240712T070000Z-Mon%20nouveau%20titre%20%0AEND:VEVENT%0AEND:VCALENDAR" + "ical": "data:text/calendar;charset=utf8,BEGIN:VCALENDAR%0AVERSION:2.0%0APRODID:-//AddToCalendar//RubyGem//EN%0ABEGIN:VEVENT%0ADTSTAMP:20250127T123148Z%0ADTSTART:20240712T070000Z%0ADTEND:20240713T221500Z%0ASUMMARY:Mon%20nouveau%20titre%20%0AUID:-20240712T070000Z-Mon%20nouveau%20titre%20%0AEND:VEVENT%0AEND:VCALENDAR" }, "blocks": [], - "created_at": "2025-01-20T12:25:48.109+01:00", - "updated_at": "2025-01-20T12:25:49.508+01:00" + "created_at": "2025-01-27T12:31:46.759+01:00", + "updated_at": "2025-01-27T12:31:48.415+01:00" } }, - "created_at": "2025-01-20T12:25:48.122+01:00", - "updated_at": "2025-01-20T12:25:49.509+01:00" + "created_at": "2025-01-27T12:31:46.774+01:00", + "updated_at": "2025-01-27T12:31:48.416+01:00" } } } @@ -4869,12 +4869,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:48.160+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:46.814+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:48.152+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:46.808+01:00" }, { "id": "106650c4-d6f6-5c43-ba44-fdd4353b369b", @@ -4898,12 +4898,12 @@ "slug": "taxonomie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:48.160+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:46.814+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:48.152+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:46.808+01:00" }, { "id": "90b8e848-5d73-5866-a250-c1f5d33eb3d7", @@ -4927,12 +4927,12 @@ "slug": "element-de-taxonomie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:48.160+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:46.814+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:48.152+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:46.808+01:00" } ] } @@ -5005,21 +5005,21 @@ "examples": { "Successful creation": { "value": { - "id": "5eaef68b-83f4-48b0-b016-cb07532ffc06", + "id": "7f4b32c2-4f71-46ac-9ddf-66530252f268", "migration_identifier": "page-category-from-api-1", "parent_id": null, "position": 3, "is_taxonomy": false, "localizations": { "fr": { - "id": "19be8935-4172-4652-932d-c4a91171aefe", + "id": "87459d7b-943f-4e3e-8433-0f18d3d1cefb", "migration_identifier": "page-category-from-api-1-fr", "name": "Ma nouvelle catégorie", "featured_image": { - "blob_id": "1758bbb3-c0f6-4f1a-b30b-34f3bbaff732", + "blob_id": "3139867a-1d93-4e4b-9d2f-de1c4c65c543", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiIzaTh3MTgyZXhjZ2EwZTZ5cHAycjlyZG5vd3lsIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NDkuOTI1WiIsInB1ciI6ImJsb2Jfa2V5In19--ae025cb94ced702e1465cca1e881246c75a76417/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJ6bWVwdTk5ZTZlZGJheHloamZ3ODUwNXV5ejZ6IiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDguOTQ3WiIsInB1ciI6ImJsb2Jfa2V5In19--d9ccd23d55e5b2defa313f758fd0a1b84632af25/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle catégorie depuis l'API", "path": null, @@ -5027,7 +5027,7 @@ "summary": "

Ceci est une nouvelle catégorie créée depuis l'API.

", "blocks": [ { - "id": "c9cfc541-7aea-4f85-a4fd-62ec5bb2235a", + "id": "a0969ee9-c288-4eaf-b43e-04acd9926651", "migration_identifier": "page-category-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -5044,16 +5044,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:49.877+01:00", - "updated_at": "2025-01-20T12:25:49.877+01:00" + "created_at": "2025-01-27T12:31:48.869+01:00", + "updated_at": "2025-01-27T12:31:48.869+01:00" } ], - "created_at": "2025-01-20T12:25:49.874+01:00", - "updated_at": "2025-01-20T12:25:49.887+01:00" + "created_at": "2025-01-27T12:31:48.866+01:00", + "updated_at": "2025-01-27T12:31:48.883+01:00" } }, - "created_at": "2025-01-20T12:25:49.869+01:00", - "updated_at": "2025-01-20T12:25:49.916+01:00" + "created_at": "2025-01-27T12:31:48.860+01:00", + "updated_at": "2025-01-27T12:31:48.930+01:00" } } } @@ -5179,21 +5179,21 @@ "value": { "created": [ { - "id": "e01a36cf-b6d8-4fee-9d9a-35806025231c", + "id": "4cc3ae43-e332-42e0-98c4-1303fcea70b4", "migration_identifier": "page-category-from-api-1", "parent_id": null, "position": 3, "is_taxonomy": false, "localizations": { "fr": { - "id": "960ff38c-3a93-4739-b6b5-418016828dad", + "id": "fd3b1274-4668-4a65-84f7-3badee305c66", "migration_identifier": "page-category-from-api-1-fr", "name": "Ma nouvelle catégorie", "featured_image": { - "blob_id": "107191e2-7f2c-43e0-821c-5b428df29aaa", + "blob_id": "376e7dad-6563-4d3c-8a4d-37831ef6965d", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJld3gxZnFnZzRleWlhOTVpMHFleGZhOHRkdHkzIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTAuMDU3WiIsInB1ciI6ImJsb2Jfa2V5In19--2bd8b06686a9260e9fbd85c57fd4fbd63b6eb2ea/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJxdWVobTVtamoyNDJybXExODRwNDB5dHI1YmpoIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDkuMTU5WiIsInB1ciI6ImJsb2Jfa2V5In19--c97dada9dea2dee79542f7df2c65b043e68a7cfc/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle catégorie depuis l'API", "path": null, @@ -5201,7 +5201,7 @@ "summary": "

Ceci est une nouvelle catégorie créée depuis l'API.

", "blocks": [ { - "id": "126ee89c-e1ac-4bd7-9a72-d02776e841b1", + "id": "58186ec6-8ff0-4978-84ae-588fa069d1ae", "migration_identifier": "page-category-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -5218,16 +5218,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:50.002+01:00", - "updated_at": "2025-01-20T12:25:50.002+01:00" + "created_at": "2025-01-27T12:31:49.076+01:00", + "updated_at": "2025-01-27T12:31:49.076+01:00" } ], - "created_at": "2025-01-20T12:25:50.001+01:00", - "updated_at": "2025-01-20T12:25:50.007+01:00" + "created_at": "2025-01-27T12:31:49.074+01:00", + "updated_at": "2025-01-27T12:31:49.082+01:00" } }, - "created_at": "2025-01-20T12:25:49.999+01:00", - "updated_at": "2025-01-20T12:25:50.019+01:00" + "created_at": "2025-01-27T12:31:49.071+01:00", + "updated_at": "2025-01-27T12:31:49.105+01:00" } ], "updated": [ @@ -5253,12 +5253,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:50.039+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:49.133+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:50.043+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:49.137+01:00" } ], "errors": [] @@ -5363,7 +5363,7 @@ "categories": { "type": "array", "items": { - "$ref": "#/components/schemas/communication_website_page_categories" + "$ref": "#/components/schemas/communication_website_page_category" } } }, @@ -5436,12 +5436,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:48.160+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:46.814+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:48.152+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:46.808+01:00" } } } @@ -5542,12 +5542,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.160+01:00", - "updated_at": "2025-01-20T12:25:50.183+01:00" + "created_at": "2025-01-27T12:31:46.814+01:00", + "updated_at": "2025-01-27T12:31:49.319+01:00" } }, - "created_at": "2025-01-20T12:25:48.152+01:00", - "updated_at": "2025-01-20T12:25:50.183+01:00" + "created_at": "2025-01-27T12:31:46.808+01:00", + "updated_at": "2025-01-27T12:31:49.320+01:00" } } } @@ -5771,13 +5771,13 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:48.172+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:46.827+01:00" } }, "category_ids": [], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:48.185+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:46.845+01:00" }, { "id": "aa9402a0-16f6-5075-b5b0-5467750ed326", @@ -5809,15 +5809,15 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:48.172+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:46.827+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:48.185+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:46.845+01:00" }, { "id": "6e49bb62-957c-53e7-a05a-195160b0abdb", @@ -5849,13 +5849,13 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:48.172+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:46.827+01:00" } }, "category_ids": [], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:48.185+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:46.845+01:00" } ] } @@ -5928,7 +5928,7 @@ "examples": { "Successful creation": { "value": { - "id": "b92f1257-c2b3-4fc8-b7bb-8d5d92819d92", + "id": "2cd00b9f-b474-4fd9-af54-854988f5eec3", "migration_identifier": "page-from-api-1", "type": null, "parent_id": "aa678357-9416-5d2e-a7ec-f112e37c64e6", @@ -5937,15 +5937,15 @@ "full_width": true, "localizations": { "fr": { - "id": "5a5024dd-9471-4825-bdad-04730ed9288f", + "id": "aa29daf8-f4cb-4fc5-a69a-52ce9fca0fcc", "migration_identifier": "page-from-api-1-fr", "title": "Ma nouvelle page", "breadcrumb_title": "Nouvelle page", "featured_image": { - "blob_id": "4d99aaa5-225f-4c51-9c0f-c9fc0480a835", + "blob_id": "338942cf-612a-4eba-ad5b-33d3374b9a8b", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJ0c3p6NHZ3d2Rwd3V5and6Znk1OThicnpzeTZzIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTAuNDg3WiIsInB1ciI6ImJsb2Jfa2V5In19--b8c155c12c329b8202de30375f030afa13197dd9/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJkdzMzbmhveDdqZHg4b24xcnAxdGQ5djdjNTllIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDkuNzMwWiIsInB1ciI6ImJsb2Jfa2V5In19--7cee2a84f21a2085e44d06e07ede577c9fcebda0/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle page depuis l'API", "published": true, @@ -5958,7 +5958,7 @@ "header_cta_url": "https://www.example.com", "blocks": [ { - "id": "b8a79e7e-15be-4829-a303-93cd37d1a9f5", + "id": "49c78173-5fc7-4aba-9215-f42672ef41e8", "migration_identifier": "page-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -5975,19 +5975,19 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:50.426+01:00", - "updated_at": "2025-01-20T12:25:50.426+01:00" + "created_at": "2025-01-27T12:31:49.658+01:00", + "updated_at": "2025-01-27T12:31:49.658+01:00" } ], - "created_at": "2025-01-20T12:25:50.421+01:00", - "updated_at": "2025-01-20T12:25:50.437+01:00" + "created_at": "2025-01-27T12:31:49.653+01:00", + "updated_at": "2025-01-27T12:31:49.668+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:50.414+01:00", - "updated_at": "2025-01-20T12:25:50.475+01:00" + "created_at": "2025-01-27T12:31:49.645+01:00", + "updated_at": "2025-01-27T12:31:49.708+01:00" } } } @@ -6114,7 +6114,7 @@ "value": { "created": [ { - "id": "ef396bd6-82c2-4f64-a477-601b512c8723", + "id": "e7157786-e009-4764-919e-26838ac112e9", "migration_identifier": "page-from-api-1", "type": null, "parent_id": "aa678357-9416-5d2e-a7ec-f112e37c64e6", @@ -6123,15 +6123,15 @@ "full_width": true, "localizations": { "fr": { - "id": "017f8a73-6c1b-4514-b653-530c1359e660", + "id": "fc11400d-78a2-4341-8bce-6f476d95c8af", "migration_identifier": "page-from-api-1-fr", "title": "Ma nouvelle page", "breadcrumb_title": "Nouvelle page", "featured_image": { - "blob_id": "68bb13cc-1482-4d47-82fc-a3a278f5479d", + "blob_id": "797f49ec-5763-4fb3-8c00-84f248b369c2", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJrenQ1MTdtN3UwbDBmbDJ1am01bTd3bzVlN3RyIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTAuNjcwWiIsInB1ciI6ImJsb2Jfa2V5In19--552727e54ee50efa5f9701cb646a6198abd10c3b/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJwNXNta3cyajFwc3dnNHU2NjBjNndtb2IyNWE3IiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NDkuOTUwWiIsInB1ciI6ImJsb2Jfa2V5In19--045422b190c6859a95700f1eecfe1a917de500d0/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle page depuis l'API", "published": true, @@ -6144,7 +6144,7 @@ "header_cta_url": "https://www.example.com", "blocks": [ { - "id": "8f65ce0e-0c71-443c-b1bc-a05d5b329710", + "id": "a71e3b21-49a1-4f71-8c21-8026813fdce1", "migration_identifier": "page-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -6161,19 +6161,19 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:50.597+01:00", - "updated_at": "2025-01-20T12:25:50.597+01:00" + "created_at": "2025-01-27T12:31:49.858+01:00", + "updated_at": "2025-01-27T12:31:49.858+01:00" } ], - "created_at": "2025-01-20T12:25:50.596+01:00", - "updated_at": "2025-01-20T12:25:50.603+01:00" + "created_at": "2025-01-27T12:31:49.857+01:00", + "updated_at": "2025-01-27T12:31:49.863+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:50.592+01:00", - "updated_at": "2025-01-20T12:25:50.620+01:00" + "created_at": "2025-01-27T12:31:49.852+01:00", + "updated_at": "2025-01-27T12:31:49.891+01:00" } ], "updated": [ @@ -6207,15 +6207,15 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:50.655+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:49.925+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:50.656+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:49.927+01:00" } ], "errors": [] @@ -6402,15 +6402,15 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:48.172+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:46.827+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:48.185+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:46.845+01:00" } } } @@ -6519,15 +6519,15 @@ "header_cta_label": null, "header_cta_url": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.172+01:00", - "updated_at": "2025-01-20T12:25:50.758+01:00" + "created_at": "2025-01-27T12:31:46.827+01:00", + "updated_at": "2025-01-27T12:31:50.072+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.185+01:00", - "updated_at": "2025-01-20T12:25:50.759+01:00" + "created_at": "2025-01-27T12:31:46.845+01:00", + "updated_at": "2025-01-27T12:31:50.073+01:00" } } } @@ -6745,12 +6745,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:48.193+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:46.856+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:48.204+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:46.868+01:00" }, { "id": "253a800b-42fe-5586-8114-0c8d6913bbbc", @@ -6776,12 +6776,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:48.193+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:46.856+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:48.204+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:46.868+01:00" }, { "id": "f28734c1-0052-554d-a50e-b2356d8c66e4", @@ -6807,12 +6807,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:48.193+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:46.856+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:48.204+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:46.868+01:00" } ] } @@ -6885,19 +6885,19 @@ "examples": { "Successful creation": { "value": { - "id": "7f55a1ae-b812-4f24-ad82-a9680f415ac3", + "id": "841ccaa9-733e-459e-aefc-08a2595eef15", "migration_identifier": "post-from-api-1", "full_width": false, "localizations": { "fr": { - "id": "845012d0-1022-4b92-b11e-3455b05d72d6", + "id": "9cc6feaf-348e-4c3e-927a-14a613fae6a3", "migration_identifier": "post-from-api-1-fr", "title": "Ma nouvelle actualité", "featured_image": { - "blob_id": "bd8b13f4-c1fe-44c5-8511-235b1745f568", + "blob_id": "601a3106-3f14-44d5-b85a-67def14aebcb", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJpcm8zZDRkbGZldWdrcHhja2VjbWhmdnFwc3cxIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTEuMDM5WiIsInB1ciI6ImJsb2Jfa2V5In19--1e440c6533412accceea36742fa9e414581bcf58/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiIxbmU2bTZha2xnNmJuaHB6OTFzYmRzaTVnNzZkIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTAuMzk3WiIsInB1ciI6ImJsb2Jfa2V5In19--2546d4a6f57f39303b79b9f98b452d1a3dfdb0ed/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle actualité depuis l'API", "pinned": false, @@ -6909,7 +6909,7 @@ "text": null, "blocks": [ { - "id": "14aa8e39-a39b-44b2-ba81-c46fff0f92c5", + "id": "cc222427-4270-4e13-ab92-3fac2040621e", "migration_identifier": "post-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -6926,16 +6926,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:50.951+01:00", - "updated_at": "2025-01-20T12:25:50.951+01:00" + "created_at": "2025-01-27T12:31:50.292+01:00", + "updated_at": "2025-01-27T12:31:50.292+01:00" } ], - "created_at": "2025-01-20T12:25:50.948+01:00", - "updated_at": "2025-01-20T12:25:50.956+01:00" + "created_at": "2025-01-27T12:31:50.290+01:00", + "updated_at": "2025-01-27T12:31:50.298+01:00" } }, - "created_at": "2025-01-20T12:25:50.944+01:00", - "updated_at": "2025-01-20T12:25:51.029+01:00" + "created_at": "2025-01-27T12:31:50.286+01:00", + "updated_at": "2025-01-27T12:31:50.387+01:00" } } } @@ -7061,19 +7061,19 @@ "value": { "created": [ { - "id": "d8c485c3-7f67-407d-9acd-5d250d9b2464", + "id": "509f636c-bc20-459c-8572-2c67a51f5d37", "migration_identifier": "post-from-api-1", "full_width": false, "localizations": { "fr": { - "id": "d65ed262-25de-43b2-af7b-02eeccb55d3c", + "id": "0552dda6-2f05-4872-b3f4-186b51e2e3c2", "migration_identifier": "post-from-api-1-fr", "title": "Ma nouvelle actualité", "featured_image": { - "blob_id": "d739f862-19fa-4bad-9388-749265fe6e87", + "blob_id": "59a4050b-8487-4dc4-9b9a-c5bd051d650f", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiIwYWhnMHN0dms2emRpOHUza25pYTI1MG5mOGM2IiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTEuMTcwWiIsInB1ciI6ImJsb2Jfa2V5In19--a6f02b90775a69405c5954f0fcadd5f8f22b2537/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJuZTg3OWM3YmxkeXRvMXA2eHJlNmZhN2QzY3ZjIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTAuNTc1WiIsInB1ciI6ImJsb2Jfa2V5In19--11657129b2508744911bb93931a2c9b0fbe034d5/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle actualité depuis l'API", "pinned": false, @@ -7085,7 +7085,7 @@ "text": null, "blocks": [ { - "id": "f1e44477-bd8b-46a7-b807-224efc773b3a", + "id": "0a1364b9-f021-436b-98d2-da9477af44ab", "migration_identifier": "post-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -7102,16 +7102,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:51.117+01:00", - "updated_at": "2025-01-20T12:25:51.117+01:00" + "created_at": "2025-01-27T12:31:50.496+01:00", + "updated_at": "2025-01-27T12:31:50.496+01:00" } ], - "created_at": "2025-01-20T12:25:51.116+01:00", - "updated_at": "2025-01-20T12:25:51.120+01:00" + "created_at": "2025-01-27T12:31:50.494+01:00", + "updated_at": "2025-01-27T12:31:50.499+01:00" } }, - "created_at": "2025-01-20T12:25:51.115+01:00", - "updated_at": "2025-01-20T12:25:51.139+01:00" + "created_at": "2025-01-27T12:31:50.492+01:00", + "updated_at": "2025-01-27T12:31:50.531+01:00" } ], "updated": [ @@ -7139,12 +7139,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:51.152+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:50.552+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:51.153+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:50.554+01:00" } ], "errors": [] @@ -7324,12 +7324,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:48.193+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:46.856+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:48.204+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:46.868+01:00" } } } @@ -7432,12 +7432,12 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.193+01:00", - "updated_at": "2025-01-20T12:25:51.271+01:00" + "created_at": "2025-01-27T12:31:46.856+01:00", + "updated_at": "2025-01-27T12:31:50.683+01:00" } }, - "created_at": "2025-01-20T12:25:48.204+01:00", - "updated_at": "2025-01-20T12:25:51.272+01:00" + "created_at": "2025-01-27T12:31:46.868+01:00", + "updated_at": "2025-01-27T12:31:50.685+01:00" } } } @@ -7660,12 +7660,12 @@ "social_vimeo": null, "social_x": null, "social_youtube": null, - "created_at": "2025-01-20T12:25:48.134+01:00", - "updated_at": "2025-01-20T12:25:48.134+01:00" + "created_at": "2025-01-27T12:31:46.783+01:00", + "updated_at": "2025-01-27T12:31:46.783+01:00" } }, - "created_at": "2025-01-20T12:25:48.206+01:00", - "updated_at": "2025-01-20T12:25:48.206+01:00" + "created_at": "2025-01-27T12:31:46.870+01:00", + "updated_at": "2025-01-27T12:31:46.870+01:00" }, { "id": "a3f63673-fb05-5751-8634-a2a8bccc1f3d", @@ -7707,8 +7707,8 @@ "social_vimeo": null, "social_x": null, "social_youtube": null, - "created_at": "2025-01-20T12:25:48.134+01:00", - "updated_at": "2025-01-20T12:25:48.134+01:00" + "created_at": "2025-01-27T12:31:46.783+01:00", + "updated_at": "2025-01-27T12:31:46.783+01:00" }, "en": { "id": "f55e6093-cf39-525e-b83c-331d90fad1c6", @@ -7726,12 +7726,12 @@ "social_vimeo": null, "social_x": null, "social_youtube": null, - "created_at": "2025-01-20T12:25:48.134+01:00", - "updated_at": "2025-01-20T12:25:48.134+01:00" + "created_at": "2025-01-27T12:31:46.783+01:00", + "updated_at": "2025-01-27T12:31:46.783+01:00" } }, - "created_at": "2025-01-20T12:25:48.206+01:00", - "updated_at": "2025-01-20T12:25:48.206+01:00" + "created_at": "2025-01-27T12:31:46.870+01:00", + "updated_at": "2025-01-27T12:31:46.870+01:00" } ] } @@ -7831,12 +7831,12 @@ "social_vimeo": null, "social_x": null, "social_youtube": null, - "created_at": "2025-01-20T12:25:48.134+01:00", - "updated_at": "2025-01-20T12:25:48.134+01:00" + "created_at": "2025-01-27T12:31:46.783+01:00", + "updated_at": "2025-01-27T12:31:46.783+01:00" } }, - "created_at": "2025-01-20T12:25:48.206+01:00", - "updated_at": "2025-01-20T12:25:48.206+01:00" + "created_at": "2025-01-27T12:31:46.870+01:00", + "updated_at": "2025-01-27T12:31:46.870+01:00" } } }, @@ -7917,12 +7917,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:48.297+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:46.961+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:48.291+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:46.957+01:00" }, { "id": "106650c4-d6f6-5c43-ba44-fdd4353b369b", @@ -7945,12 +7945,12 @@ "slug": "taxonomie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:48.297+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:46.961+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:48.291+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:46.957+01:00" }, { "id": "90b8e848-5d73-5866-a250-c1f5d33eb3d7", @@ -7973,12 +7973,12 @@ "slug": "element-de-taxonomie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:48.297+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:46.961+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:48.291+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:46.957+01:00" } ] } @@ -8027,28 +8027,28 @@ "examples": { "Successful creation": { "value": { - "id": "bc4c3351-8de5-4b09-89d6-33ad6bb4abb7", + "id": "b2fbb3f5-1c7a-4e3a-9910-00734fb577d8", "migration_identifier": "organization-category-from-api-1", "parent_id": null, "position": 3, "is_taxonomy": false, "localizations": { "fr": { - "id": "95c23ff6-d96e-439f-9a0c-fbf2aeaa4c10", + "id": "c28efcc5-f9f9-4ecc-9a25-f0478e5e89f7", "migration_identifier": "organization-category-from-api-1-fr", "name": "Ma nouvelle catégorie", "featured_image": { - "blob_id": "27469c4c-c34b-486c-8bdf-c2ac4b170f02", + "blob_id": "b7292aa5-11eb-494e-a78a-b63e8f0487c3", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiI2ZDhjbm16cnJhNzhvaGx4dG44bnZxaHl6YmxnIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTEuNjEwWiIsInB1ciI6ImJsb2Jfa2V5In19--7937eb52d88cdc613a5dbef6ca3e4bcb52ff9fa9/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJhazQyeGdkYWNuenhlaW51ZjloeDhwOTYwcGdmIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTEuMDE0WiIsInB1ciI6ImJsb2Jfa2V5In19--4800be2a4c55d19a4123c35dec4009abdf140ea8/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle catégorie depuis l'API", "slug": "ma-nouvelle-categorie", "summary": "

Ceci est une nouvelle catégorie créée depuis l'API.

", "blocks": [ { - "id": "f10918e0-cdc1-4346-b45e-55b1a6e2028b", + "id": "d5f6d85f-5d8f-424a-8012-e3d915e3c5e7", "migration_identifier": "organization-category-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -8065,16 +8065,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:51.591+01:00", - "updated_at": "2025-01-20T12:25:51.591+01:00" + "created_at": "2025-01-27T12:31:50.984+01:00", + "updated_at": "2025-01-27T12:31:50.984+01:00" } ], - "created_at": "2025-01-20T12:25:51.588+01:00", - "updated_at": "2025-01-20T12:25:51.599+01:00" + "created_at": "2025-01-27T12:31:50.981+01:00", + "updated_at": "2025-01-27T12:31:50.995+01:00" } }, - "created_at": "2025-01-20T12:25:51.584+01:00", - "updated_at": "2025-01-20T12:25:51.603+01:00" + "created_at": "2025-01-27T12:31:50.976+01:00", + "updated_at": "2025-01-27T12:31:51.002+01:00" } } } @@ -8176,28 +8176,28 @@ "value": { "created": [ { - "id": "351ac946-f6da-4e9c-95e9-c07c15e4972e", + "id": "c746d5ae-ca98-4496-8636-052483796198", "migration_identifier": "organization-category-from-api-1", "parent_id": null, "position": 3, "is_taxonomy": false, "localizations": { "fr": { - "id": "91505712-61ad-49ba-9a3a-c8fc7dd95951", + "id": "affd8f93-f901-4736-8fd3-8ee72280007e", "migration_identifier": "organization-category-from-api-1-fr", "name": "Ma nouvelle catégorie", "featured_image": { - "blob_id": "edcbf9ff-ac62-4356-bd50-94cb1d167f32", + "blob_id": "6fc4d8f3-cc4a-4262-ac6b-7ec72ac9779b", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiI2ZGhvOTY1b2Z1NWpnZmI4aThzcmx2MXJzeHpxIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTEuODE4WiIsInB1ciI6ImJsb2Jfa2V5In19--e9bd685e680b86c69be07418b7170b62f8182b57/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJoOXluNWl1MWhlemEwemtsa3FyeGUyMzEzcjRyIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTEuMjQ2WiIsInB1ciI6ImJsb2Jfa2V5In19--f26f76f2c394ef88491e23dee135c5c3402da356/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une nouvelle catégorie depuis l'API", "slug": "ma-nouvelle-categorie", "summary": "

Ceci est une nouvelle catégorie créée depuis l'API.

", "blocks": [ { - "id": "49d7b97e-aa1e-4b19-8024-d68993af61c9", + "id": "2cfe3da1-e9cf-4cae-9c1a-c8685a281695", "migration_identifier": "organization-category-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -8214,16 +8214,16 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:51.785+01:00", - "updated_at": "2025-01-20T12:25:51.785+01:00" + "created_at": "2025-01-27T12:31:51.208+01:00", + "updated_at": "2025-01-27T12:31:51.208+01:00" } ], - "created_at": "2025-01-20T12:25:51.784+01:00", - "updated_at": "2025-01-20T12:25:51.790+01:00" + "created_at": "2025-01-27T12:31:51.206+01:00", + "updated_at": "2025-01-27T12:31:51.215+01:00" } }, - "created_at": "2025-01-20T12:25:51.782+01:00", - "updated_at": "2025-01-20T12:25:51.794+01:00" + "created_at": "2025-01-27T12:31:51.201+01:00", + "updated_at": "2025-01-27T12:31:51.219+01:00" } ], "updated": [ @@ -8248,12 +8248,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:51.814+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:51.240+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:51.816+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:51.242+01:00" } ], "errors": [] @@ -8344,7 +8344,7 @@ "categories": { "type": "array", "items": { - "$ref": "#/components/schemas/university_organization_categories" + "$ref": "#/components/schemas/university_organization_category" } } }, @@ -8407,12 +8407,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:48.297+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:46.961+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:48.291+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:46.957+01:00" } } } @@ -8498,12 +8498,12 @@ "slug": "categorie-de-test", "summary": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.297+01:00", - "updated_at": "2025-01-20T12:25:51.949+01:00" + "created_at": "2025-01-27T12:31:46.961+01:00", + "updated_at": "2025-01-27T12:31:51.402+01:00" } }, - "created_at": "2025-01-20T12:25:48.291+01:00", - "updated_at": "2025-01-20T12:25:51.950+01:00" + "created_at": "2025-01-27T12:31:46.957+01:00", + "updated_at": "2025-01-27T12:31:51.407+01:00" } } } @@ -8705,13 +8705,13 @@ "summary": null, "text": null, "blocks": [], - "created_at": "2025-01-20T12:25:48.303+01:00", - "updated_at": "2025-01-20T12:25:48.303+01:00" + "created_at": "2025-01-27T12:31:46.967+01:00", + "updated_at": "2025-01-27T12:31:46.967+01:00" } }, "category_ids": [], - "created_at": "2025-01-20T12:25:48.313+01:00", - "updated_at": "2025-01-20T12:25:48.313+01:00" + "created_at": "2025-01-27T12:31:46.986+01:00", + "updated_at": "2025-01-27T12:31:46.986+01:00" }, { "id": "c71c1e3d-24c7-55a8-bf15-11296170b436", @@ -8776,19 +8776,19 @@ "option_link": true, "option_contact": false }, - "created_at": "2025-01-20T12:25:48.069+01:00", - "updated_at": "2025-01-20T12:25:48.069+01:00" + "created_at": "2025-01-27T12:31:46.679+01:00", + "updated_at": "2025-01-27T12:31:46.679+01:00" } ], - "created_at": "2025-01-20T12:25:48.303+01:00", - "updated_at": "2025-01-20T12:25:48.303+01:00" + "created_at": "2025-01-27T12:31:46.967+01:00", + "updated_at": "2025-01-27T12:31:46.967+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.313+01:00", - "updated_at": "2025-01-20T12:25:48.313+01:00" + "created_at": "2025-01-27T12:31:46.986+01:00", + "updated_at": "2025-01-27T12:31:46.986+01:00" } ] } @@ -8837,7 +8837,7 @@ "examples": { "Successful creation": { "value": { - "id": "21c00839-8d7b-481f-aed3-2a541a0349ba", + "id": "f5f87f76-f4eb-4378-99e7-e553a3e08e88", "migration_identifier": "organization-from-api-1", "kind": "company", "active": true, @@ -8853,15 +8853,15 @@ "siren": "123456789", "localizations": { "fr": { - "id": "8ab26c53-6a21-4b47-8c05-4413dfefbeb5", + "id": "76ea92d9-caab-42e5-8498-f26b6d2699a0", "migration_identifier": "organization-from-api-1-fr", "name": "Mon organisation", "long_name": "Mon organisation ESS", "featured_image": { - "blob_id": "36cb7cfe-115b-46af-bf72-c4cdb7f9f70f", + "blob_id": "54bc285d-e30a-4e4b-a552-119dc3e6a645", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJraW1iM2NvYXF2Y2hjM2IwdzAzcmUwMDJvMXYzIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTIuMjg5WiIsInB1ciI6ImJsb2Jfa2V5In19--4810c0f319fe7b78c7883b080d77c6a71c42b6cd/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiI4aGptOWxnb3o1dzExZzAxMnhsenQzc3kwODZxIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTEuNzAwWiIsInB1ciI6ImJsb2Jfa2V5In19--7cdfb1e918a629a008b758a8324758d3dea30d64/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une organisation de l'ESS", "address_name": "Siège", @@ -8875,7 +8875,7 @@ "text": null, "blocks": [ { - "id": "728e8088-d79b-43bc-b102-aa4043c79a17", + "id": "3f2fa54c-9bdd-4722-9723-e800505eabc4", "migration_identifier": "organization-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -8892,19 +8892,19 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:52.245+01:00", - "updated_at": "2025-01-20T12:25:52.245+01:00" + "created_at": "2025-01-27T12:31:51.659+01:00", + "updated_at": "2025-01-27T12:31:51.659+01:00" } ], - "created_at": "2025-01-20T12:25:52.243+01:00", - "updated_at": "2025-01-20T12:25:52.257+01:00" + "created_at": "2025-01-27T12:31:51.657+01:00", + "updated_at": "2025-01-27T12:31:51.669+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:52.240+01:00", - "updated_at": "2025-01-20T12:25:52.269+01:00" + "created_at": "2025-01-27T12:31:51.655+01:00", + "updated_at": "2025-01-27T12:31:51.683+01:00" } } } @@ -9006,7 +9006,7 @@ "value": { "created": [ { - "id": "0d0cb824-2c5d-4a9d-b191-28957cee69af", + "id": "307c9446-10aa-4445-833f-fcd833b4de2e", "migration_identifier": "organization-from-api-1", "kind": "company", "active": true, @@ -9022,15 +9022,15 @@ "siren": "123456789", "localizations": { "fr": { - "id": "f4719e43-ff53-4159-9dbc-417eeefbd062", + "id": "1099b92f-9617-4f22-94ab-3b065c702c8e", "migration_identifier": "organization-from-api-1-fr", "name": "Mon organisation", "long_name": "Mon organisation ESS", "featured_image": { - "blob_id": "b2293a06-74b5-4ab3-ac5e-c4fa2c6762c0", + "blob_id": "b45bac08-cd74-46fe-9726-cbbeb0119b6b", "alt": "La lumière brille sur les parois du canyon", "credit": "

Photo de John Zhou sur Unsplash

", - "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJ6OXEwb2V2b3Qweml3MWw1N2x0dDFwd2k3OHoyIiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjBUMTI6MjU6NTIuNDExWiIsInB1ciI6ImJsb2Jfa2V5In19--151c09b13af55b3cf141074cc08f4d19c8aa023d/photo-1703923633616-254e78f6e9df" + "url": "http://my-university.osuny.test/rails/active_storage/disk/eyJfcmFpbHMiOnsiZGF0YSI6eyJrZXkiOiJrbGF1cWU5NzczN2RoN3JlcnlxMDFuNm5kaGM1IiwiZGlzcG9zaXRpb24iOiJpbmxpbmU7IGZpbGVuYW1lPVwicGhvdG8tMTcwMzkyMzYzMzYxNi0yNTRlNzhmNmU5ZGZcIjsgZmlsZW5hbWUqPVVURi04JydwaG90by0xNzAzOTIzNjMzNjE2LTI1NGU3OGY2ZTlkZiIsImNvbnRlbnRfdHlwZSI6ImltYWdlL2pwZWciLCJzZXJ2aWNlX25hbWUiOiJ0ZXN0In0sImV4cCI6IjIwMjUtMDEtMjdUMTI6MzE6NTEuODU4WiIsInB1ciI6ImJsb2Jfa2V5In19--b0abcab75d8602419e46de495e1dbb3d2167b6a4/photo-1703923633616-254e78f6e9df" }, "meta_description": "Une organisation de l'ESS", "address_name": "Siège", @@ -9044,7 +9044,7 @@ "text": null, "blocks": [ { - "id": "1921cfd3-13aa-4a27-9016-e5801ef0c5e3", + "id": "db961169-4b7c-4a6b-aa3b-619013ee4b1c", "migration_identifier": "organization-from-api-1-fr-block-1", "template_kind": "chapter", "title": "Mon premier chapitre", @@ -9061,19 +9061,19 @@ "alt": "", "credit": "" }, - "created_at": "2025-01-20T12:25:52.371+01:00", - "updated_at": "2025-01-20T12:25:52.371+01:00" + "created_at": "2025-01-27T12:31:51.807+01:00", + "updated_at": "2025-01-27T12:31:51.807+01:00" } ], - "created_at": "2025-01-20T12:25:52.369+01:00", - "updated_at": "2025-01-20T12:25:52.375+01:00" + "created_at": "2025-01-27T12:31:51.804+01:00", + "updated_at": "2025-01-27T12:31:51.812+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:52.367+01:00", - "updated_at": "2025-01-20T12:25:52.379+01:00" + "created_at": "2025-01-27T12:31:51.801+01:00", + "updated_at": "2025-01-27T12:31:51.819+01:00" } ], "updated": [ @@ -9140,19 +9140,19 @@ "option_link": true, "option_contact": false }, - "created_at": "2025-01-20T12:25:48.069+01:00", - "updated_at": "2025-01-20T12:25:48.069+01:00" + "created_at": "2025-01-27T12:31:46.679+01:00", + "updated_at": "2025-01-27T12:31:46.679+01:00" } ], - "created_at": "2025-01-20T12:25:48.303+01:00", - "updated_at": "2025-01-20T12:25:52.404+01:00" + "created_at": "2025-01-27T12:31:46.967+01:00", + "updated_at": "2025-01-27T12:31:51.850+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.313+01:00", - "updated_at": "2025-01-20T12:25:52.406+01:00" + "created_at": "2025-01-27T12:31:46.986+01:00", + "updated_at": "2025-01-27T12:31:51.852+01:00" } ], "errors": [] @@ -9348,19 +9348,19 @@ "option_link": true, "option_contact": false }, - "created_at": "2025-01-20T12:25:48.069+01:00", - "updated_at": "2025-01-20T12:25:48.069+01:00" + "created_at": "2025-01-27T12:31:46.679+01:00", + "updated_at": "2025-01-27T12:31:46.679+01:00" } ], - "created_at": "2025-01-20T12:25:48.303+01:00", - "updated_at": "2025-01-20T12:25:48.303+01:00" + "created_at": "2025-01-27T12:31:46.967+01:00", + "updated_at": "2025-01-27T12:31:46.967+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.313+01:00", - "updated_at": "2025-01-20T12:25:48.313+01:00" + "created_at": "2025-01-27T12:31:46.986+01:00", + "updated_at": "2025-01-27T12:31:46.986+01:00" } } } @@ -9488,19 +9488,19 @@ "option_link": true, "option_contact": false }, - "created_at": "2025-01-20T12:25:48.069+01:00", - "updated_at": "2025-01-20T12:25:48.069+01:00" + "created_at": "2025-01-27T12:31:46.679+01:00", + "updated_at": "2025-01-27T12:31:46.679+01:00" } ], - "created_at": "2025-01-20T12:25:48.303+01:00", - "updated_at": "2025-01-20T12:25:52.493+01:00" + "created_at": "2025-01-27T12:31:46.967+01:00", + "updated_at": "2025-01-27T12:31:51.956+01:00" } }, "category_ids": [ "74f6dc33-4e17-5852-8cdb-d7e23d80bf75" ], - "created_at": "2025-01-20T12:25:48.313+01:00", - "updated_at": "2025-01-20T12:25:52.494+01:00" + "created_at": "2025-01-27T12:31:46.986+01:00", + "updated_at": "2025-01-27T12:31:51.957+01:00" } } } diff --git a/spec/requests/osuny/v1/communication/websites/pages/categories_spec.rb b/spec/requests/osuny/v1/communication/websites/pages/categories_spec.rb index d1133e9835..e41338b983 100644 --- a/spec/requests/osuny/v1/communication/websites/pages/categories_spec.rb +++ b/spec/requests/osuny/v1/communication/websites/pages/categories_spec.rb @@ -153,7 +153,7 @@ categories: { type: :array, items: { - '$ref': '#/components/schemas/communication_website_page_categories' + '$ref': '#/components/schemas/communication_website_page_category' } } }, diff --git a/spec/requests/osuny/v1/university/organizations/categories_spec.rb b/spec/requests/osuny/v1/university/organizations/categories_spec.rb index cfdea513fe..2f6900954a 100644 --- a/spec/requests/osuny/v1/university/organizations/categories_spec.rb +++ b/spec/requests/osuny/v1/university/organizations/categories_spec.rb @@ -134,7 +134,7 @@ categories: { type: :array, items: { - '$ref': '#/components/schemas/university_organization_categories' + '$ref': '#/components/schemas/university_organization_category' } } },