Skip to content
Snippets Groups Projects
Commit d49f6c8c authored by alexisben's avatar alexisben
Browse files

Test static data generated by blocks

parent 39d41936
No related branches found
No related tags found
No related merge requests found
Showing
with 32 additions and 21 deletions
......@@ -20,7 +20,7 @@
#
# Foreign Keys
#
# fk_rails_eed87f7acf (criterion_id => administration_qualiopi_criterions.id)
# fk_rails_31f1a0a2c9 (criterion_id => administration_qualiopi_criterions.id)
#
class Administration::Qualiopi::Indicator < ApplicationRecord
belongs_to :criterion
......
......@@ -30,7 +30,7 @@
#
# Foreign Keys
#
# fk_rails_bb6a496c08 (university_id => universities.id)
# fk_rails_94b0abd85b (university_id => universities.id)
#
class Communication::Website < ApplicationRecord
include WithAbouts
......
......@@ -19,7 +19,7 @@
#
# Foreign Keys
#
# fk_rails_8505d649e8 (website_id => communication_websites.id)
# fk_rails_b6b8b2cce2 (website_id => communication_websites.id)
#
class Communication::Website::GitFile < ApplicationRecord
belongs_to :website, class_name: 'Communication::Website'
......
......@@ -33,8 +33,8 @@
# Foreign Keys
#
# fk_rails_1a42003f06 (parent_id => communication_website_pages.id)
# fk_rails_2315541232 (related_category_id => communication_website_categories.id)
# fk_rails_280107c62b (communication_website_id => communication_websites.id)
# fk_rails_47b37cf8b2 (related_category_id => communication_website_categories.id)
# fk_rails_d208d15a73 (university_id => universities.id)
#
......
......@@ -39,7 +39,7 @@
#
# Foreign Keys
#
# fk_rails_08b351087c (university_id => universities.id)
# fk_rails_6e16107511 (university_id => universities.id)
# fk_rails_ec1f16f607 (parent_id => education_programs.id)
#
class Education::Program < ApplicationRecord
......
......@@ -27,8 +27,8 @@
#
# Foreign Keys
#
# fk_rails_b47a769440 (user_id => users.id)
# fk_rails_da35e70d61 (university_id => universities.id)
# fk_rails_433744b4e8 (user_id => users.id)
# fk_rails_49ac392937 (university_id => universities.id)
#
class University::Person < ApplicationRecord
include WithGit
......
......@@ -27,8 +27,8 @@
#
# Foreign Keys
#
# fk_rails_b47a769440 (user_id => users.id)
# fk_rails_da35e70d61 (university_id => universities.id)
# fk_rails_433744b4e8 (user_id => users.id)
# fk_rails_49ac392937 (university_id => universities.id)
#
class University::Person::Administrator < University::Person
def self.polymorphic_name
......
......@@ -27,8 +27,8 @@
#
# Foreign Keys
#
# fk_rails_b47a769440 (user_id => users.id)
# fk_rails_da35e70d61 (university_id => universities.id)
# fk_rails_433744b4e8 (user_id => users.id)
# fk_rails_49ac392937 (university_id => universities.id)
#
class University::Person::Author < University::Person
def self.polymorphic_name
......
......@@ -27,8 +27,8 @@
#
# Foreign Keys
#
# fk_rails_b47a769440 (user_id => users.id)
# fk_rails_da35e70d61 (university_id => universities.id)
# fk_rails_433744b4e8 (user_id => users.id)
# fk_rails_49ac392937 (university_id => universities.id)
#
class University::Person::Researcher < University::Person
def self.polymorphic_name
......
......@@ -27,8 +27,8 @@
#
# Foreign Keys
#
# fk_rails_b47a769440 (user_id => users.id)
# fk_rails_da35e70d61 (university_id => universities.id)
# fk_rails_433744b4e8 (user_id => users.id)
# fk_rails_49ac392937 (university_id => universities.id)
#
class University::Person::Teacher < University::Person
def self.polymorphic_name
......
......@@ -48,7 +48,8 @@
console.log(error);
} else {
object[key] = {
id: blob.signed_id,
id: blob.id,
signed_id: blob.signed_id,
filename: blob.filename
};
}
......@@ -58,7 +59,7 @@
return this.directUpload.blobUrlTemplate.replace(':signed_id', signed_id).replace(':filename', filename);
},
getImageUrl(data) {
return this.getFileUrl(data.id, data.filename);
return this.getFileUrl(data.signed_id, data.filename);
}
}
});
......
......@@ -67,6 +67,7 @@
:id="'category-' + categoryIndex + '-partner-url-' + partnerIndex">
</div>
<div class="col-lg-4">
<%# TODO : create a uploader vue3 component %>
<label class="form-label"
:for="'category-' + categoryIndex + '-partner-logo-' + partnerIndex">
Logo
......
......@@ -2,9 +2,18 @@
<% block.data['elements'].each do |element| %>
- name: >
<%= element['title'] %>
url: <%= element['url'] %>
<% if element['logo'] %>
logo: <%= element['logo']['id'] %>
<% end %>
partners:
<%
element['partners'].each do |partner|
%>
- name: "<%= partner['name'] %>"
url: "<%= partner['url'] %>"
<% if partner.has_key?('logo') %>
<% if partner['logo'].has_key?('id') %>
logo: "<%= partner['logo']['id'] %>"
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment