Remove trailing whitespace and tabs

This commit is contained in:
Matt Rogers 2014-08-14 21:05:05 -05:00
parent 863d780ad0
commit aa41e20e46
84 changed files with 407 additions and 407 deletions

View file

@ -1,16 +1,16 @@
class IntegrationsController < ApplicationController
require 'mail'
skip_before_filter :login_required, :only => [:cloudmailin, :search_plugin, :google_gadget]
def index
@page_title = 'TRACKS::Integrations'
end
def rest_api
@page_title = 'TRACKS::REST API Documentation'
end
def get_quicksilver_applescript
get_applescript('quicksilver_applescript')
end
@ -31,20 +31,20 @@ class IntegrationsController < ApplicationController
def google_gadget
render :layout => false, :content_type => Mime::XML
end
def cloudmailin
if !verify_cloudmailin_signature
render :text => "Message signature verification failed.", :status => 403
return false
end
if process_message(params[:message])
render :text => 'success', :status => 200
else
render :text => "No user found or other error", :status => 404
end
end
private
def process_message(message)
@ -56,10 +56,10 @@ class IntegrationsController < ApplicationController
signature = Digest::MD5.hexdigest(request.request_parameters.sort{|a,b| a[0].to_s <=> b[0].to_s}.map{|k,v| v}.join + SITE_CONFIG['cloudmailin'])
return provided == signature
end
def get_applescript(partial_name)
context = current_user.contexts.find params[:context_id]
render :partial => partial_name, :locals => { :context => context }
end
end