Skip to content

Commit

Permalink
Fix search list, optional and attr
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleylhs committed Jul 17, 2024
1 parent ff253d3 commit f987d11
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 6 deletions.
12 changes: 7 additions & 5 deletions app/controllers/lists_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ class ListsController < ApplicationController
# POST /lists
#----------------------------------------------------------------------------
def create
list_params[:user_id] = (current_user.id if params[:is_global].to_i.zero?)

list_attr = list_params.to_h
# list_params[:user_id] = (current_user.id if params[:is_global].to_i.zero?)
list_attr[:user_id] = (current_user.id if params[:is_global].to_i.zero?)
# Find any existing list with the same name (case insensitive)
if @list = List.where("lower(name) = ?", list_params[:name].downcase).where(user_id: list_params[:user_id]).first
@list.update(list_params)

if @list = List.where("lower(name) = ?", list_attr[:name].downcase).where(user_id: list_attr[:user_id]).first
@list.update(list_attr)
else
@list = List.create(list_params)
@list = List.create(list_attr)
end

respond_with(@list)
Expand Down
2 changes: 1 addition & 1 deletion app/models/list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class List < ActiveRecord::Base
validates_presence_of :name
validates_presence_of :url
belongs_to :user
belongs_to :user, optional: true

# Parses the controller from the url
def controller
Expand Down
70 changes: 70 additions & 0 deletions config/environments/performance.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# frozen_string_literal: true

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
if defined?(FatFreeCRM::Application)
FatFreeCRM::Application.configure do
# Settings specified here will take precedence over those in config/application.rb.

# Code is not reloaded between requests.
config.cache_classes = true

# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true

# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true

# Disable Rails's static asset server (Apache or nginx will already do this)
config.public_file_server.enabled = true

# Compress JavaScripts and CSS
config.assets.compress = true

# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false

# Generate digests for assets URLs
config.assets.digest = true

# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache
# config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX

# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true

# Include generic and useful information about system operation, but avoid logging too much
# information to avoid inadvertent exposure of personally identifiable information (PII).
config.log_level = :info

# Use a different logger for distributed setups
# config.logger = SyslogLogger.new

# Use a different cache store in production.
# config.cache_store = :mem_cache_store

# Enable serving of images, stylesheets, and JavaScripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com"

# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
# config.assets.precompile += %w( search.js )

# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true

# Send deprecation notices to registered listeners
config.active_support.deprecation = :notify

# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end
end

0 comments on commit f987d11

Please sign in to comment.