Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebranding #36

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# UnboundEd Learning Content Management System (LCMS)
# LearningTapestry Learning Content Management System (LCMS)

[ ![Codeship Status for learningtapestry/unbounded-lcms](https://app.codeship.com/projects/87ed3f00-ddc7-0135-b08f-3e0bdd3c602e/status?branch=master)](https://app.codeship.com/projects/266015)
[![Maintainability](https://api.codeclimate.com/v1/badges/9c9dce0cf0aa36698a9c/maintainability)](https://codeclimate.com/github/learningtapestry/unbounded-lcms/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/9c9dce0cf0aa36698a9c/test_coverage)](https://codeclimate.com/github/learningtapestry/unbounded-lcms/test_coverage)

[![Join the chat at https://gitter.im/learningtapestry/unbounded-lcms](https://badges.gitter.im/learningtapestry/unbounded-lcms.svg)](https://gitter.im/learningtapestry/unbounded-lcms?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

The UnboundEd LCMS is a specialized content management system for high quality
The LCMS is a specialized content management system for high quality
education materials. It incorporates two primary web-based components; an end-user interface to allow educators and other consumers to browse, search, and export educational materials available through the site, and an administrative interface that allows users with permissions to import content into the site from a variety of sources and manage the existing content library.

## Setup
Expand All @@ -20,4 +20,4 @@ email, or any other method with the owners of this repository before proposing a
Before submitting a pull request please verify that all tests pass. Be sure to describe the intent of your change and reference the related github issue in your description.

## License
UnboundEd LCMS is released as open source under the [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html).
LCMS is released as open source under the [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html).
2 changes: 1 addition & 1 deletion app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ document.addEventListener('turbolinks:load', function() {
window.initializeSocialSharing();
window.initializeLeadership();
//window.initializeFreshdesk();
window.initializeGoogleAnalytics();
if (window.initializeGoogleAnalytics) { window.initializeGoogleAnalytics(); }
window.initializeSoundCloud();
window.initializeSubscribePlaceholder();
window.initializeSurvey();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ function FreshdeskBtn(props) {
};

// return <a href="#" className={props.cls} onClick={onClick} >{props.text}</a>
return <a href="mailto:pilot@unbounded.org" className={props.cls}>{props.text}</a>
return <a href="mailto:social@learningtapestry.com" className={props.cls}>{props.text}</a>
}
61 changes: 0 additions & 61 deletions app/assets/stylesheets/layout/_connect.scss

This file was deleted.

8 changes: 8 additions & 0 deletions app/assets/stylesheets/layout/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ $footer-breakpoint-down: ipad;
img { width: $logo-width; }
}

@include e(brand) {
color: $ub-white;
font-size: 1.5em;
font-style: $ub-serif;
font-weight: bolder;
}


@include e(item) {
@include flex-grid-column(12, 0);
color: darken($ub-nav-link, 20%);
Expand Down
7 changes: 7 additions & 0 deletions app/assets/stylesheets/layout/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@
}
}

@include e(brand) {
color: $ub-white;
font-size: 2em;
font-style: $ub-serif;
font-weight: bolder;
}

@include m(documents) {
background-color: rgba($ub-primary, .9);
min-height: $ub-nav-height;
Expand Down
3 changes: 1 addition & 2 deletions app/assets/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@
'layout/sticky-header',
'layout/sticky-navigation',
'layout/page',
'layout/subscribe',
'layout/connect';
'layout/subscribe';

@import
'pages/home',
Expand Down
2 changes: 1 addition & 1 deletion app/models/page.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ class Page < ActiveRecord::Base
validates :body, :title, :slug, presence: true

def full_title
"UnboundEd - #{title}"
"LCMS - #{title}"
end
end
2 changes: 1 addition & 1 deletion app/models/search/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Repository

client Elasticsearch::Client.new(host: ENV['ELASTICSEARCH_ADDRESS'])

index :"unbounded_documents_#{Rails.env}"
index :"lcms_documents_#{Rails.env}"

type :documents

Expand Down
2 changes: 1 addition & 1 deletion app/presenters/content_guide_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def self.ccss_standards
end

def sticky_title
"#{t('ui.unbounded')} #{subject} #{t('ui.guide')} #{grades.range}"
"LCMS #{subject} #{t('ui.guide')} #{grades.range}"
end

def broken_images
Expand Down
11 changes: 7 additions & 4 deletions app/presenters/curriculum_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,19 @@ def jstree_data
Resource.tree.ordered.roots.map { |res| parse_jstree_node(res) }
end

def level(node)
Resource::HIERARCHY.index(node.curriculum_type.to_sym)
def opened?(node)
level = Resource::HIERARCHY.index(node.curriculum_type.to_sym)
return false unless level.present?

level < UNIT_LEVEL
end

def parse_jstree_node(node)
{
id: node.id,
text: node.short_title,
state: { opened: level(node) < UNIT_LEVEL },
children: node.children.map { |res| parse_jstree_node(res) },
state: { opened: opened?(node) },
children: node.children.tree.ordered.map { |res| parse_jstree_node(res) },
li_attr: { title: node.title }
}
end
Expand Down
2 changes: 1 addition & 1 deletion app/presenters/document_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def math_practice
end

def pdf_header
"UnboundEd / #{full_breadcrumb}"
"LCMS / #{full_breadcrumb}"
end

def pdf_filename
Expand Down
2 changes: 1 addition & 1 deletion app/serializers/search_document_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def path
return media_path(object.model_id) if media?
return generic_path(object.model_id) if generic?

object.slug ? show_with_slug_path(object.slug) : resource_permalink
object.slug.present? ? show_with_slug_path(object.slug) : resource_permalink
end
end

Expand Down
2 changes: 1 addition & 1 deletion app/views/admin/shared/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<nav class="o-top-bar">
<div class="o-top-bar__item c-header-title">
<%= link_to root_path, class: 'c-header-title__logo c-header__link' do %>
<%= image_tag('logo.svg') %>
<span class="c-header__brand">LCMS</span>
<% end %>
<span class="c-header-title__h-menu" data-responsive-toggle="navbar">
<span class="menu-icon" data-toggle></span>
Expand Down
2 changes: 1 addition & 1 deletion app/views/admin/welcome/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="o-page o-page--margin-to-bottom">
<div class="o-page__module c-hp-hero">
<div class="c-hp-hero__body">
<h1>unboundED administration</h1>
<h1>LCMS administration</h1>
<p>Byline or descriptive text lorem ipsum sapereprese venimi, consedi quoditi con re, consedi quoditi con re ministret.</p>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/views/devise/mailer/confirmation_instructions.html.erb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<p>Welcome to the UnboundEd Beta!</p>
<p>Welcome to the LCMS Beta!</p>

<p>To complete your registration, please <%= link_to 'click here', user_confirmation_url(confirmation_token: @token) %> and log in.</p>

<p>Once you've logged in for the first time, you'll be asked a few brief questions to help us better serve you. Then you can proceed to the beta.</p>

<p>If you have any problem logging in, please contact us at pilot@<%= ENV['APPLICATION_DOMAIN'] %>.</p>

<p>Thank you for participating in the UnboundEd Beta!</p>
<p>Thank you for participating in the LCMS Beta!</p>
2 changes: 1 addition & 1 deletion app/views/devise/registrations/new.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="callout warning">
Thanks!
<br>
The UnboundEd Beta is currently available to select educators and school leaders by invitation only. To access the beta, please enter your activation code below, then enter your email and create a password.
The LCMS Beta is currently available to select educators and school leaders by invitation only. To access the beta, please enter your activation code below, then enter your email and create a password.
</div>
<% end %>

Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<% content_for :above_flash do %>
<div class="callout warning">
Welcome to UnboundEd Beta!
Welcome to LearningTapestry LCMS Beta!
<br>
To access the beta site for the first time, you’ll need to register; if you’ve already completed the registration process, simply log in.
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/downloads/preview.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<% set_page_title "#{t('ui.unbounded')} - #{@download.s3_filename}" %>
<% set_page_title "LCMS - #{@download.s3_filename}" %>

<script type="text/javascript" data-turbolinks-eval="always">
pdfUrl = "<%= pdf_proxy_download_path(params[:id], s3: @download.s3_filename) %>";
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/admin.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><%= "#{t('ui.unbounded')} - #{page_title}" %></title>
<title><%= "LCMS - #{page_title}" %></title>
<meta name="description" content="<%= content_for?(:description) ? yield(:description) : t('default_title') %>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<%= render partial: 'shared/favicon' %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/ld_docx.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<%= stylesheet_link_tag 'main', media: 'all' %>
<title><%= "#{t('ui.unbounded')} - #{page_title}" %></title>
<title><%= "LCMS - #{page_title}" %></title>
</head>
<body>
<div class="u-page-wrap c-admin u-supported">
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/ld_gdoc.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><%= "#{t('ui.unbounded')} - #{page_title}" %></title>
<title><%= "LCMS - #{page_title}" %></title>
<style type="text/css">
<%= raw inlined_asset('gdoc.css') %>
</style>
Expand Down
60 changes: 0 additions & 60 deletions app/views/shared/_connect.html.erb

This file was deleted.

3 changes: 1 addition & 2 deletions app/views/shared/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@
</div>
<footer class="c-footer u-supported <%= add_class_for_action(:resources, :show, 'c-footer--with-sticky') %>">
<%= render partial: 'shared/subscribe' %>
<%= render partial: 'shared/connect' %>

<div class="c-footer__wrap o-page__wrap--row-column c-navbar">
<div class="c-footer__logo">
<%= link_to root_path do %>
<%= image_tag('logo-beta.svg') %>
<span class='c-footer__brand'>LCMS</span>
<% end %>
</div>
<div class="c-footer__item">
Expand Down
2 changes: 1 addition & 1 deletion app/views/shared/_header.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="o-top-bar">
<div class="o-top-bar__item c-header-title">
<%= link_to root_path, class: 'c-header-title__logo c-header__link' do %>
<%= image_tag('logo-beta.svg') %>
<span class='c-header__brand'>LCMS</span>
<% end %>
<% if current_user&.ready_to_go? %>
<span class="c-header-title__h-menu" data-responsive-toggle="navbar" data-hide-for="large">
Expand Down
2 changes: 1 addition & 1 deletion app/views/shared/social_thumbnail.svg.erb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</style>
</defs>
<g>
<title>UnboundEd</title>
<title>LCMS</title>
<rect fill="<%= color_code %>" x="0" y="0" width="<%= size[:width] %>" height="<%= size[:height] %>" />
<rect fill="#000000" opacity="0.1" x="0" y="<%= size[:height] - footer_size %>" width="<%= size[:width] %>" height="<%= footer_size %>"/>
<image xlink:href="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSIyMDBweCIgaGVpZ2h0PSIyOHB4IiB2aWV3Qm94PSIwIDAgMjAwIDI4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyMDAgMjgiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxnPgoJCTxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yLjMwOCwxOS4yMVY1LjgwMUwwLjE4Miw1LjY3OFYxLjc1M2gxMS4zNjV2My45MjVMOC40NCw1Ljg4MnYxMi41NTFjMCwzLjU5OSwxLjI2OCw1LjQ3OSw0Ljc4Myw1LjQ3OQoJCQljMy4xNDgsMCw0LjQ5Ny0xLjc5OSw0LjQ5Ny01LjUyVjYuMTI3bC0yLjczOS0wLjQ1VjEuNzUzaDguOTk1djMuOTI1bC0yLjA4NSwwLjQwOXYxMi45MTljMCw0Ljc0My0yLjU3Niw4Ljg3Mi05LjMyMiw4Ljg3MgoJCQlDNS4yOTIsMjcuODc4LDIuMzA4LDIzLjc4OSwyLjMwOCwxOS4yMXoiLz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjUuMzIzLDIzLjU4NmwyLjU3Ni0wLjE2NHYtOS45MzVsLTIuNTc2LDAuMzI3VjkuOTcxbDcuNTY0LTEuNjc2bDAuNDUsMC4yODZ2My4yMwoJCQljMC43NzctMS4wMjIsMS43NTgtMS44NCwyLjY5OC0yLjUzNWMxLjA2My0wLjc3NywyLjI5LTEuMjY3LDMuNDc1LTEuMjY3YzMuNDc1LDAsNS4wNywxLjc1OCw1LjA3LDUuNDM4djEwLjAxNmwyLjI5LDAuMTI0djMuNzYxCgkJCUgzNy4yMnYtMy43NjFsMS44ODEtMC4xMjR2LTguNzQ5YzAtMS40NzEtMC43MzYtMi4zMy0yLjQxMi0yLjMzYy0xLjIyNywwLTIuMjksMC41NzItMy4zNTMsMS4zMDh2OS43NzFsMi4wNDQsMC4xMjR2My43NjFIMjUuMzIzCgkJCVYyMy41ODZ6Ii8%2BCgkJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQ3Ljk3LDI3LjE0MnYtMy43NjFsMi41MzUsMC4wODFWNS4zOTJsLTIuNjU4LDAuMjA1VjEuNzUzbDcuNjQ2LTEuMzlsMC40OTEsMC4yODZ2OS43MwoJCQljMS40NzItMS4zOSwzLjMxMi0yLjI5LDUuNjQyLTIuMjljNC42MiwwLDcuMzE4LDMuNjgsNy4zMTgsMTAuMThjMCw2LjA1Mi0zLjc2MSw5LjY0OS03Ljc2OCw5LjY0OQoJCQljLTIuNjk5LDAtNC4xMjktMS4wMjEtNS40MzgtMi41NzZ2Mi4yOWgtMC40NUw0Ny45NywyNy4xNDJ6IE01NS45ODQsMTIuODMzdjkuOTc1YzAuODk5LDAuNzc4LDEuOTIxLDEuMjI4LDMuMTA3LDEuMjI4CgkJCWMyLjI4OSwwLDQuMDg4LTEuNDMyLDQuMDg4LTYuMDExYzAtNC4yNTItMS40MzEtNi4yNTUtMy45MjUtNi4yNTVDNTguMDI4LDExLjc3LDU2Ljk2NSwxMi4xNzgsNTUuOTg0LDEyLjgzM3oiLz4KCQk8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNzAuNjE4LDE4LjEwNmMwLTYuNSw0Ljg2NS0xMC4wMTcsOS44MTItMTAuMDE3YzQuOTA3LDAsOS43NzIsMy43MjEsOS43NzIsMTAuMDE3CgkJCWMwLDYuNTQxLTQuODY1LDkuODk0LTkuNzcyLDkuODk0Qzc1LjQ4MywyOCw3MC42MTgsMjQuNjQ3LDcwLjYxOCwxOC4xMDZ6IE04NC4zOTYsMTguMTA2YzAtMy44NDMtMS4zOS02LjE3My0zLjk2Ni02LjE3MwoJCQljLTIuNjU3LDAtNC4wMDYsMi4zMy00LjAwNiw2LjE3M2MwLDMuODQzLDEuMzQ5LDYuMTMzLDQuMDA2LDYuMTMzQzgzLjAwNSwyNC4yMzksODQuMzk2LDIxLjk0OSw4NC4zOTYsMTguMTA2eiIvPgoJCTxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik05Mi44OTYsMjIuOTMxVjEyLjcxbC0yLjE2Ny0wLjEyM1Y4Ljc0NGg3LjYwNHYxMi41NTJjMCwxLjYzNSwwLjYxNCwyLjQ1MywyLjMzMSwyLjQ1MwoJCQljMS4wNjIsMCwyLjA0NC0wLjQwOSwyLjk4NC0wLjk4MlYxMi43MWwtMi4wMDQtMC4xMjNWOC43NDRoNy41MjN2MTQuMzFsMi41MzUtMC4wODJ2My43MjFsLTcuMjM2LDAuOThsLTAuNTMzLTAuMjg2bDAuMTI1LTIuOTAyCgkJCWMtMC43MzYsMC45NDEtMS42MzcsMS42NzctMi41MzUsMi4yNDljLTEuMDIzLDAuNzM1LTIuMjQ5LDEuMjI2LTMuNjM5LDEuMjI2Qzk0LjU3MiwyNy45NTksOTIuODk2LDI2LjA3OSw5Mi44OTYsMjIuOTMxeiIvPgoJCTxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xMTMuMjEzLDIzLjU4NmwyLjU3Ni0wLjE2NHYtOS45MzVsLTIuNTc2LDAuMzI3VjkuOTcxbDcuNTYzLTEuNjc2bDAuNDQ5LDAuMjg2djMuMjMKCQkJYzAuNzc5LTEuMDIyLDEuNzYtMS44NCwyLjY5OS0yLjUzNWMxLjA2My0wLjc3NywyLjI5MS0xLjI2NywzLjQ3Ny0xLjI2N2MzLjQ3NSwwLDUuMDY4LDEuNzU4LDUuMDY4LDUuNDM4djEwLjAxNmwyLjI5MSwwLjEyNAoJCQl2My43NjFoLTkuNjV2LTMuNzYxbDEuODgzLTAuMTI0di04Ljc0OWMwLTEuNDcxLTAuNzM2LTIuMzMtMi40MTQtMi4zM2MtMS4yMjcsMC0yLjI4OSwwLjU3Mi0zLjM1NCwxLjMwOHY5Ljc3MWwyLjA0NSwwLjEyNHYzLjc2MQoJCQloLTEwLjA1N1YyMy41ODZ6Ii8%2BCgkJPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTEzNS4zMjgsMTguMTQ3YzAtNi40Niw0LjA5LTEwLjA1OCw4LjQ2My0xMC4wNThjMi4wMDQsMCwzLjE0OCwwLjUzMiw0LjQ1NywxLjU1NFY1LjM5MmwtMi44NjEsMC4yMDUKCQkJVjEuNzEybDcuODA5LTEuMzQ5bDAuNTMxLDAuMjg2djIyLjA3OGwyLjU3Ni0wLjA4MnYzLjc2MmwtNy40LDEuMjY3bC0wLjQ5LTAuMjg2bDAuMDgyLTIuMjQ4QzE0Ny4yNjYsMjYuNjEsMTQ1Ljc1NCwyOCwxNDMuMTgsMjgKCQkJQzEzOC4xNSwyOCwxMzUuMzI4LDIzLjcwOCwxMzUuMzI4LDE4LjE0N3ogTTE0OC4yNDgsMjMuMDU0VjEyLjU0NmMtMC44MTYtMC41MzItMS43NTgtMC44MTgtMi44NjEtMC44MTgKCQkJYy0yLjMzMiwwLTQuMjkzLDEuNzU4LTQuMjkzLDYuNDE5YzAsNC4wODksMi4wNDMsNS45MjksNC40MTYsNS45MjlDMTQ2LjczNCwyNC4wNzYsMTQ3LjUxNCwyMy42NjcsMTQ4LjI0OCwyMy4wNTR6Ii8%2BCgk8L2c%2BCgk8Zz4KCQk8cGF0aCBvcGFjaXR5PSIwLjY2IiBmaWxsPSIjRkZGRkZGIiBkPSJNMTc1LjUwNiw0Ljk5NWMtMC4yMDctMS4zNjItMC43NDQtMS41NjgtMi4yMjktMS41NjhoLTguMDA4djEwLjAzaDMuNTkKCQkJYzEuMTE1LDAsMS43MzQtMC40OTUsMS43NzUtMS4yNzlsMC4zMy0zLjE3OGgxLjUyN3YxMC40NDNoLTEuNDQzbC0wLjM3My0zLjA1NWMtMC4xMjMtMC45OTEtMC43MDEtMS4xOTctMS43NzMtMS4xOTdoLTMuNjMzCgkJCXYxMC4wNzFoOC4wOWMyLjgwNywwLDMuMTM3LTAuMDgyLDMuNDI2LTEuOThsMC43MDMtMy44ODFoMS42MDd2Ny44ODRoLTIwLjMwN3YtMS44MTVsMi43MjUtMC4yODlWMy41MDlsLTIuNzI1LTAuMjA3VjEuNDQ1CgkJCWgxOC45NDV2Ny4xODJoLTEuNTI3TDE3NS41MDYsNC45OTV6Ii8%2BCgkJPHBhdGggb3BhY2l0eT0iMC42NiIgZmlsbD0iI0ZGRkZGRiIgZD0iTTE4MC40MTYsMTguMzY5YzAtNi41NjMsNC42NjYtOS44NjYsOC43OTMtOS44NjZjMS44MTYsMCwzLjE3OCwwLjQxMyw0LjM3NSwxLjE1NlYyLjkzMQoJCQlsLTMuNTA4LDAuMjg5VjEuMjhMMTk2LjU5OCwwbDAuMzMsMC4xMjV2MjQuNzI0bDIuODkxLTAuMDQxdjEuNzc1bC01LjkwNCwwLjk5MWwtMC4zMy0wLjEyNWwwLjA4NC0xLjg5OAoJCQljLTEuMzYzLDEuNDQ1LTIuODkxLDIuNDM2LTUuMzY3LDIuNDM2QzE4My41OTYsMjcuOTg2LDE4MC40MTYsMjMuOTQxLDE4MC40MTYsMTguMzY5eiBNMTkzLjU4NCwyNC4xMDZWMTEuNzIzCgkJCWMtMS4wNzItMC44MjYtMi4xODgtMS4yOC0zLjcxNS0xLjI4Yy0zLjM0NCwwLTUuOTAyLDIuODA3LTUuOTAyLDcuOTI2YzAsNC4yNTEsMi41NTksNy4yNjUsNS45MDIsNy4yNjUKCQkJQzE5MS43MjcsMjUuNjM0LDE5Mi41OTQsMjUuMDk4LDE5My41ODQsMjQuMTA2eiIvPgoJPC9nPgo8L2c%2BCjwvc3ZnPgo%3D" x="<%= style[:padding] %>" y="<%= size[:height] - logo_size[:height] * 2.25 %>" width="<%= logo_size[:width] %>" height="<%= logo_size[:height] %>" />
Expand Down
2 changes: 1 addition & 1 deletion config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
redis_url = ENV.fetch('REDIS_URL', 'redis://localhost:6379')
config.cache_store = :readthis_store, {
expires_in: 1.hour.to_i,
namespace: 'unbounded',
namespace: 'lcms',
redis: { url: redis_url, driver: :hiredis }
}
else
Expand Down
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
redis_url = ENV.fetch('REDIS_URL', 'redis://localhost:6379')
config.cache_store = :readthis_store, {
expires_in: 29.days.to_i,
namespace: 'unbounded',
namespace: 'lcms',
redis: { url: redis_url, driver: :hiredis }
}
else
Expand Down
Loading