dm_forum 4.2.2.3 → 4.2.3

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
  SHA1:
3
- metadata.gz: d35cbbe65b5650c3c13be246765a028992402cc3
4
- data.tar.gz: 4cdbb6f2ec636d8d93dc8d41a9580f321948f92f
3
+ metadata.gz: 7307a2774636ef1eb7de248a655f96c265421f20
4
+ data.tar.gz: 1b56aeb001e6eba59b3f356b9b68a0fdf4f725be
5
5
  SHA512:
6
- metadata.gz: cab456207346a9de0fde60a28f94416cb013a503c7b2455db3fc9fe7b238e361e765385e5d4096175f0129b5ac1279cdd8f0d3eeb204bf5af0f4176987c4e522
7
- data.tar.gz: 14dd59e50473bdc0c1e79b1704396d938a633b61a854d7de2b4770ef1153e9013f19673be8038be41ebfefdae0abe3c211c092ac8d03471705220d02bcbf4ffb
6
+ metadata.gz: 4c6e7dd187de06d1a4fee5ae379424bbab061312f12cdc91abb0b4bc3c5de1de06d544c1c64bf5e631c4a9b3fc4dd9b248aa7233282ff3b4ee8283d2513472a7
7
+ data.tar.gz: 1f780adcfe898476db96fe276b740d121e1a334f66c5c564541b8553f485a29942832679997e3a8a1bb0ee6563b724292243d2a88c1408760e124a15bbbbfcf6
@@ -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: 20160128144313) do
14
+ ActiveRecord::Schema.define(version: 20160821150127) do
15
15
 
16
16
  create_table "cms_blog_translations", force: :cascade do |t|
17
17
  t.integer "cms_blog_id"
@@ -369,6 +369,8 @@ ActiveRecord::Schema.define(version: 20160128144313) do
369
369
  t.text "tagline"
370
370
  end
371
371
 
372
+ add_index "fms_forum_sites", ["account_id"], name: "index_fms_forum_sites_on_account_id"
373
+
372
374
  create_table "fms_forum_topics", force: :cascade do |t|
373
375
  t.integer "account_id"
374
376
  t.integer "forum_id"
@@ -390,6 +392,11 @@ ActiveRecord::Schema.define(version: 20160128144313) do
390
392
  add_index "fms_forum_topics", ["account_id", "forum_id", "slug"], name: "index_fms_forum_topics_on_account_id_and_forum_id_and_slug"
391
393
  add_index "fms_forum_topics", ["account_id", "last_updated_at", "forum_id"], name: "index_forum_topics_last_updated_at_forum_id"
392
394
  add_index "fms_forum_topics", ["account_id", "sticky", "last_updated_at", "forum_id"], name: "index_forum_topics_sticky_last_updated_at_forum_id"
395
+ add_index "fms_forum_topics", ["forum_id"], name: "index_fms_forum_topics_on_forum_id"
396
+ add_index "fms_forum_topics", ["forum_site_id"], name: "index_fms_forum_topics_on_forum_site_id"
397
+ add_index "fms_forum_topics", ["last_forum_comment_id"], name: "index_fms_forum_topics_on_last_forum_comment_id"
398
+ add_index "fms_forum_topics", ["last_user_id"], name: "index_fms_forum_topics_on_last_user_id"
399
+ add_index "fms_forum_topics", ["user_id"], name: "index_fms_forum_topics_on_user_id"
393
400
 
394
401
  create_table "fms_forums", force: :cascade do |t|
395
402
  t.integer "account_id"
@@ -411,6 +418,9 @@ ActiveRecord::Schema.define(version: 20160128144313) do
411
418
  end
412
419
 
413
420
  add_index "fms_forums", ["account_id", "slug"], name: "index_fms_forums_on_account_id_and_slug"
421
+ add_index "fms_forums", ["forum_category_id"], name: "index_fms_forums_on_forum_category_id"
422
+ add_index "fms_forums", ["forum_site_id"], name: "index_fms_forums_on_forum_site_id"
423
+ add_index "fms_forums", ["owner_id"], name: "index_fms_forums_on_owner_id"
414
424
 
415
425
  create_table "follows", force: :cascade do |t|
416
426
  t.integer "followable_id", null: false
Binary file