mumuki-domain 9.0.0 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05b62ff1728ff0d8fd4a807ce4a8de4b7f70c532a6748c91af12db484582fad0
4
- data.tar.gz: 25810325f5fa2fb294b0c189bd20f77e85e4722e2557d50b8a760df07edd56bf
3
+ metadata.gz: 5db86a9ea25dfdc219c9555b5c116413352e4fb080af117985e93ca5bb2c4889
4
+ data.tar.gz: '0913300a86ea7880f65997a6bcbf418023c74a3f58dac21361d286d69e1ab528'
5
5
  SHA512:
6
- metadata.gz: f5795882f6b1ed8f8e7b4b66e3f85767c58f72eda7131aae3034a5abe48a27d27b2789e2f97e135f4713da0667769c58baec5ea2b9408ceacf012470439e3dbd
7
- data.tar.gz: 34514f8787088f9c721fafae973af54a1163d27c00d47029bac4544e78c31d4e8726320ef9d3a81f453090e465c32cd5f10ebb25bad2b4ea9ab6f1227118f270
6
+ metadata.gz: 6ae200ee06fe4ef89e24836256fe3be80c99b53d24daa1e6056630f8daf78e55ad391b88b919f07db12e62365f28222c68a7e472ad91b37266bb340ef15e4141
7
+ data.tar.gz: 91aceaf7b84e5c014d9d7f600a4a8b205956427615c01fbbca6a581a3f572034aa99a9b12c0f323df21e1772870998ab6c220859361dcc244f22f3f2d95e16a0
@@ -11,7 +11,7 @@ class Organization < ApplicationRecord
11
11
  serialize :settings, Mumuki::Domain::Organization::Settings
12
12
  serialize :theme, Mumuki::Domain::Organization::Theme
13
13
 
14
- markdown_on :description, :display_description, :page_description
14
+ markdown_on :description, :display_description, :page_description, :faqs
15
15
  teaser_on :display_description
16
16
 
17
17
  validate :ensure_consistent_public_login
@@ -0,0 +1,5 @@
1
+ class AddFAQsToOrganizations < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :organizations, :faqs, :text
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Domain
3
- VERSION = '9.0.0'
3
+ VERSION = '9.0.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-domain
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.0
4
+ version: 9.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Leonardo Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-04 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -657,6 +657,7 @@ files:
657
657
  - db/migrate/20210119174504_create_certificate_programs.rb
658
658
  - db/migrate/20210119174835_create_certificates.rb
659
659
  - db/migrate/20210119190204_create_exam_registration_exam_join_table.rb
660
+ - db/migrate/20210302181654_add_faqs_to_organizations.rb
660
661
  - lib/mumuki/domain.rb
661
662
  - lib/mumuki/domain/area.rb
662
663
  - lib/mumuki/domain/engine.rb