dm_event 4.2.2.3 → 4.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3150c3b1f751595e259c88c6ef8aa75f0501f6f
4
- data.tar.gz: 0a5e7accbd930658e5831818cec96c57e15fb21e
3
+ metadata.gz: 180e71b4786edf4cfe7e3080e0a19b19d7a28747
4
+ data.tar.gz: 8f54d8fdef7c5eb9888e7e1be5147518f360fadd
5
5
  SHA512:
6
- metadata.gz: 74df2b330d089ddc78365dbe55549afc9ea50315008284d864453bbd2f70551f45720fb6ea730bf55a372fb8722c165edfca84716419a766abe7bb56f746347b
7
- data.tar.gz: 8c6b15849183ebc46f8ccc42310997c66da84a0939d299f95f60e1535ac36eab87ff8a76164b537d80d0f986aec02e854cb3d178cc9e15309cf4c994bf25dc97
6
+ metadata.gz: 41a0d259f056551b8527673cbf9b6b1b7436a76ab2bdfa4ab9e7cffc410312f136e367ab79e05e5f479e588049dc2596bf420bea9ee2b7046580dbeeee8ee687
7
+ data.tar.gz: 8e8e164a26a8446e7c9d73a9c27103a7891ed34b8f8bc10246a0404d3666e4703879ed259a1d7c4d464c6d25864af87db7ee25bcb8cbf09b93be23afdace431f
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy Admin</title>
5
+ <%= stylesheet_link_tag 'application', media: 'all' %>
6
+ <%= javascript_include_tag 'application' %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,10 @@
1
+ # stub out any AdminTheme modules, since we can't currently include it
2
+ module AdminTheme
3
+ module MenuHelper
4
+ end
5
+ end
6
+
7
+ module AdminTheme
8
+ module ThemeHelper
9
+ end
10
+ end
@@ -11,7 +11,7 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20160128154136) do
14
+ ActiveRecord::Schema.define(version: 20160821150124) do
15
15
 
16
16
  create_table "cms_blog_translations", force: :cascade do |t|
17
17
  t.integer "cms_blog_id"
@@ -385,8 +385,13 @@ ActiveRecord::Schema.define(version: 20160128154136) do
385
385
  t.text "payment_reminder_history"
386
386
  end
387
387
 
388
+ add_index "ems_registrations", ["account_id"], name: "index_ems_registrations_on_account_id"
389
+ add_index "ems_registrations", ["payment_comment_id"], name: "index_ems_registrations_on_payment_comment_id"
388
390
  add_index "ems_registrations", ["receipt_code"], name: "receipt_code_key"
391
+ add_index "ems_registrations", ["user_profile_id"], name: "index_ems_registrations_on_user_profile_id"
389
392
  add_index "ems_registrations", ["uuid"], name: "index_ems_registrations_on_uuid"
393
+ add_index "ems_registrations", ["workshop_id"], name: "index_ems_registrations_on_workshop_id"
394
+ add_index "ems_registrations", ["workshop_price_id"], name: "index_ems_registrations_on_workshop_price_id"
390
395
 
391
396
  create_table "ems_workshop_price_translations", force: :cascade do |t|
392
397
  t.integer "ems_workshop_price_id"
@@ -398,6 +403,8 @@ ActiveRecord::Schema.define(version: 20160128154136) do
398
403
  t.datetime "updated_at"
399
404
  end
400
405
 
406
+ add_index "ems_workshop_price_translations", ["ems_workshop_price_id"], name: "index_ems_workshop_price_translations_on_ems_workshop_price_id"
407
+
401
408
  create_table "ems_workshop_prices", force: :cascade do |t|
402
409
  t.integer "workshop_id"
403
410
  t.integer "price_cents"
@@ -419,6 +426,9 @@ ActiveRecord::Schema.define(version: 20160128154136) do
419
426
  t.datetime "updated_at"
420
427
  end
421
428
 
429
+ add_index "ems_workshop_prices", ["account_id"], name: "index_ems_workshop_prices_on_account_id"
430
+ add_index "ems_workshop_prices", ["workshop_id"], name: "index_ems_workshop_prices_on_workshop_id"
431
+
422
432
  create_table "ems_workshop_translations", force: :cascade do |t|
423
433
  t.integer "ems_workshop_id"
424
434
  t.string "locale"
@@ -430,6 +440,8 @@ ActiveRecord::Schema.define(version: 20160128154136) do
430
440
  t.text "summary"
431
441
  end
432
442
 
443
+ add_index "ems_workshop_translations", ["ems_workshop_id"], name: "index_ems_workshop_translations_on_ems_workshop_id"
444
+
433
445
  create_table "ems_workshops", force: :cascade do |t|
434
446
  t.string "slug"
435
447
  t.datetime "starting_on"
@@ -457,8 +469,11 @@ ActiveRecord::Schema.define(version: 20160128154136) do
457
469
  t.boolean "payments_enabled"
458
470
  t.boolean "show_address"
459
471
  t.string "image"
472
+ t.boolean "bcc_contact_email", default: false
460
473
  end
461
474
 
475
+ add_index "ems_workshops", ["account_id"], name: "index_ems_workshops_on_account_id"
476
+ add_index "ems_workshops", ["country_id"], name: "index_ems_workshops_on_country_id"
462
477
  add_index "ems_workshops", ["slug"], name: "workshopname_key"
463
478
 
464
479
  create_table "follows", force: :cascade do |t|
Binary file