Changeset [02ca21b7ad69b726da56541adfafa31574a6384b] by Ben Tillman

December 30th, 2014 @ 03:03 PM

Committed by Ben Tillman

  • M app/controllers/admin/application_controller.rb
  • M app/controllers/admin/field_groups_controller.rb
  • M app/controllers/admin/fields_controller.rb
  • M app/controllers/admin/groups_controller.rb
  • M app/controllers/admin/plugins_controller.rb
  • M app/controllers/admin/settings_controller.rb
  • M app/controllers/admin/tags_controller.rb
  • M app/controllers/admin/users_controller.rb
  • M app/controllers/application_controller.rb
  • M app/controllers/authentications_controller.rb
  • M app/controllers/comments_controller.rb
  • M app/controllers/entities/accounts_controller.rb
  • M app/controllers/entities/campaigns_controller.rb
  • M app/controllers/entities/contacts_controller.rb
  • M app/controllers/entities/leads_controller.rb
  • M app/controllers/entities/opportunities_controller.rb
  • M app/controllers/entities_controller.rb
  • M app/controllers/home_controller.rb
  • M app/controllers/lists_controller.rb
  • M app/controllers/passwords_controller.rb
  • M app/controllers/tasks_controller.rb
  • M app/controllers/users_controller.rb
  • M app/helpers/accounts_helper.rb
  • M app/helpers/admin/application_helper.rb
  • M app/helpers/admin/field_groups_helper.rb
  • M app/helpers/admin/tags_helper.rb
  • M app/helpers/admin/users_helper.rb
  • M app/helpers/application_helper.rb
  • M app/helpers/campaigns_helper.rb
  • M app/helpers/home_helper.rb
  • M app/helpers/javascript_helper.rb
  • M app/helpers/leads_helper.rb
  • M app/helpers/opportunities_helper.rb
  • M app/helpers/tags_helper.rb
  • M app/helpers/tasks_helper.rb
  • M app/helpers/users_helper.rb
  • M app/helpers/versions_helper.rb
  • M app/inputs/date_pair_input.rb
  • M app/inputs/date_time_input.rb
  • M app/inputs/text_input.rb
  • M app/mailers/dropbox_mailer.rb
  • M app/mailers/subscription_mailer.rb
  • M app/mailers/user_mailer.rb
  • M app/models/entities/account.rb
  • M app/models/entities/account_contact.rb
  • M app/models/entities/account_opportunity.rb
  • M app/models/entities/campaign.rb
  • M app/models/entities/contact.rb
  • M app/models/entities/lead.rb
  • M app/models/entities/opportunity.rb
  • M app/models/fields/custom_field.rb
  • M app/models/fields/custom_field_date_pair.rb
  • M app/models/fields/custom_field_pair.rb
  • M app/models/fields/field.rb
  • M app/models/fields/field_group.rb
  • M app/models/observers/lead_observer.rb
  • M app/models/observers/opportunity_observer.rb
  • M app/models/observers/task_observer.rb
  • M app/models/polymorphic/address.rb
  • M app/models/polymorphic/avatar.rb
  • M app/models/polymorphic/comment.rb
  • M app/models/polymorphic/email.rb
  • M app/models/polymorphic/task.rb
  • M app/models/polymorphic/version.rb
  • M app/models/setting.rb
  • M app/models/users/ability.rb
  • M app/models/users/authentication.rb
  • M app/models/users/group.rb
  • M app/models/users/permission.rb
  • M app/models/users/preference.rb
  • M app/models/users/user.rb
  • M lib/fat_free_crm/callback.rb
  • M lib/fat_free_crm/comment_extensions.rb
  • M lib/fat_free_crm/custom_fields.rb
  • M lib/fat_free_crm/exceptions.rb
  • M lib/fat_free_crm/fields.rb
  • M lib/fat_free_crm/mail_processor/base.rb
  • M lib/fat_free_crm/mail_processor/comment_replies.rb
  • M lib/fat_free_crm/mail_processor/dropbox.rb
  • M lib/fat_free_crm/permissions.rb
  • M lib/fat_free_crm/renderers.rb
  • M lib/gravatar_image_tag.rb
  • M lib/missing_translation_detector.rb
  • M spec/controllers/admin/users_controller_spec.rb
  • M spec/controllers/applications_controller_spec.rb
  • M spec/controllers/authentications_controller_spec.rb
  • M spec/controllers/comments_controller_spec.rb
  • M spec/controllers/emails_controller_spec.rb
  • M spec/controllers/entities/accounts_controller_spec.rb
  • M spec/controllers/entities/campaigns_controller_spec.rb
  • M spec/controllers/entities/contacts_controller_spec.rb
  • M spec/controllers/entities/leads_controller_spec.rb
  • M spec/controllers/entities/opportunities_controller_spec.rb
  • M spec/controllers/home_controller_spec.rb
  • M spec/controllers/tasks_controller_spec.rb
  • M spec/controllers/users_controller_spec.rb
  • M spec/factories/opportunity_factories.rb
  • M spec/factories/task_factories.rb
  • M spec/features/accounts_spec.rb
  • M spec/features/admin/groups_spec.rb
  • M spec/features/admin/users_spec.rb
  • M spec/features/campaigns_spec.rb
  • M spec/features/contacts_spec.rb
  • M spec/features/dashboard_spec.rb
  • M spec/features/leads_spec.rb
  • M spec/features/opportunities_overview_spec.rb
  • M spec/features/opportunities_spec.rb
  • M spec/features/support/browser.rb
  • M spec/features/support/helpers.rb
  • M spec/features/support/paths.rb
  • M spec/features/support/selector_helpers.rb
  • M spec/features/tasks_spec.rb
  • M spec/helpers/admin/field_groups_helper_spec.rb
  • M spec/helpers/application_helper_spec.rb
  • M spec/helpers/users_helper_spec.rb
  • M spec/lib/errors_spec.rb
  • M spec/lib/fields_spec.rb
  • M spec/lib/mail_processor/base_spec.rb
  • M spec/lib/mail_processor/comment_replies_spec.rb
  • M spec/lib/mail_processor/dropbox_spec.rb
  • M spec/lib/mail_processor/sample_emails/dropbox.rb
  • M spec/lib/permissions_spec.rb
  • M spec/lib/view_factory_spec.rb
  • M spec/mailers/subscription_mailer_spec.rb
  • M spec/mailers/user_mailer_spec.rb
  • M spec/models/entities/account_contact_spec.rb
  • M spec/models/entities/account_opportunity_spec.rb
  • M spec/models/entities/account_spec.rb
  • M spec/models/entities/campaign_spec.rb
  • M spec/models/entities/contact_opportunity_spec.rb
  • M spec/models/entities/contact_spec.rb
  • M spec/models/entities/lead_spec.rb
  • M spec/models/entities/opportunity_spec.rb
  • M spec/models/fields/custom_field_date_pair_spec.rb
  • M spec/models/fields/custom_field_pair_spec.rb
  • M spec/models/fields/custom_field_spec.rb
  • M spec/models/fields/field_spec.rb
  • M spec/models/list_spec.rb
  • M spec/models/observers/entity_observer_spec.rb
  • M spec/models/polymorphic/address_spec.rb
  • M spec/models/polymorphic/avatar_spec.rb
  • M spec/models/polymorphic/comment_spec.rb
  • M spec/models/polymorphic/task_spec.rb
  • M spec/models/polymorphic/version_spec.rb
  • M spec/models/setting_spec.rb
  • M spec/models/users/permission_spec.rb
  • M spec/models/users/preference_spec.rb
  • M spec/models/users/user_spec.rb
  • M spec/routing/accounts_routing_spec.rb
  • M spec/routing/admin/users_routing_spec.rb
  • M spec/routing/campaigns_routing_spec.rb
  • M spec/routing/comments_routing_spec.rb
  • M spec/routing/contacts_routing_spec.rb
  • M spec/routing/emails_routing_spec.rb
  • M spec/routing/leads_routing_spec.rb
  • M spec/routing/opportunities_routing_spec.rb
  • M spec/routing/tasks_routing_spec.rb
  • M spec/routing/users_routing_spec.rb
  • M spec/shared/controllers.rb
  • M spec/shared/models.rb
  • M spec/support/assert_select.rb
  • M spec/support/auth_macros.rb
  • M spec/support/macros.rb
  • M spec/views/accounts/_edit.haml_spec.rb
  • M spec/views/accounts/_new.haml_spec.rb
  • M spec/views/accounts/create.js.haml_spec.rb
  • M spec/views/accounts/edit.js.haml_spec.rb
  • M spec/views/accounts/index.haml_spec.rb
  • M spec/views/accounts/index.js.haml_spec.rb
  • M spec/views/accounts/new.js.haml_spec.rb
  • M spec/views/accounts/show.haml_spec.rb
  • M spec/views/accounts/update.js.haml_spec.rb
  • M spec/views/admin/field_groups/create.js.haml_spec.rb
  • M spec/views/admin/field_groups/destroy.js.haml_spec.rb
  • M spec/views/admin/field_groups/edit.js.haml_spec.rb
  • M spec/views/admin/field_groups/new.js.haml_spec.rb
  • M spec/views/admin/field_groups/update.js.haml_spec.rb
  • M spec/views/admin/users/_create.haml_spec.rb
  • M spec/views/admin/users/create.js.haml_spec.rb
  • M spec/views/admin/users/destroy.js.haml_spec.rb
  • M spec/views/admin/users/edit.js.haml_spec.rb
  • M spec/views/admin/users/index.haml_spec.rb
  • M spec/views/admin/users/index.js.haml_spec.rb
  • M spec/views/admin/users/new.js.haml_spec.rb
  • M spec/views/admin/users/reactivate.js.haml_spec.rb
  • M spec/views/admin/users/suspend.js.haml_spec.rb
  • M spec/views/admin/users/update.js.haml_spec.rb
  • M spec/views/application/auto_complete.haml_spec.rb
  • M spec/views/campaigns/_edit.haml_spec.rb
  • M spec/views/campaigns/_new.haml_spec.rb
  • M spec/views/campaigns/create.js.haml_spec.rb
  • M spec/views/campaigns/destroy.js.haml_spec.rb
  • M spec/views/campaigns/edit.js.haml_spec.rb
  • M spec/views/campaigns/index.haml_spec.rb
  • M spec/views/campaigns/index.js.haml_spec.rb
  • M spec/views/campaigns/new.js.haml_spec.rb
  • M spec/views/campaigns/show.haml_spec.rb
  • M spec/views/campaigns/update.js.haml_spec.rb
  • M spec/views/comments/edit.js.haml_spec.rb
  • M spec/views/contacts/_edit.haml_spec.rb
  • M spec/views/contacts/_new.haml_spec.rb
  • M spec/views/contacts/create.js.haml_spec.rb
  • M spec/views/contacts/edit.js.haml_spec.rb
  • M spec/views/contacts/index.haml_spec.rb
  • M spec/views/contacts/index.js.html_spec.rb
  • M spec/views/contacts/new.js.haml_spec.rb
  • M spec/views/contacts/show.haml_spec.rb
  • M spec/views/contacts/update.js.haml_spec.rb
  • M spec/views/home/index.haml_spec.rb
  • M spec/views/home/index.js.haml_spec.rb
  • M spec/views/home/options.js.haml_spec.rb
  • M spec/views/leads/_convert.haml_spec.rb
  • M spec/views/leads/_edit.haml_spec.rb
  • M spec/views/leads/_new.haml_spec.rb
  • M spec/views/leads/_sidebar_show.haml_spec.rb
  • M spec/views/leads/convert.js.haml_spec.rb
  • M spec/views/leads/create.js.haml_spec.rb
  • M spec/views/leads/edit.js.haml_spec.rb
  • M spec/views/leads/index.haml_spec.rb
  • M spec/views/leads/index.js.haml_spec.rb
  • M spec/views/leads/new.js.haml_spec.rb
  • M spec/views/leads/promote.js.haml_spec.rb
  • M spec/views/leads/reject.js.haml_spec.rb
  • M spec/views/leads/show.haml_spec.rb
  • M spec/views/leads/update.js.haml_spec.rb
  • M spec/views/opportunities/_edit.haml_spec.rb
  • M spec/views/opportunities/_new.haml_spec.rb
  • M spec/views/opportunities/create.js.haml_spec.rb
  • M spec/views/opportunities/edit.js.haml_spec.rb
  • M spec/views/opportunities/index.haml_spec.rb
  • M spec/views/opportunities/index.js.haml_spec.rb
  • M spec/views/opportunities/new.js.haml_spec.rb
  • M spec/views/opportunities/show.haml_spec.rb
  • M spec/views/opportunities/update.js.haml_spec.rb
  • M spec/views/tasks/_edit.haml_spec.rb
  • M spec/views/tasks/complete.js.haml_spec.rb
  • M spec/views/tasks/create.js.haml_spec.rb
  • M spec/views/tasks/index.haml_spec.rb
  • M spec/views/tasks/update.js.haml_spec.rb
  • M spec/views/users/upload_avatar.js.haml_spec.rb
New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

Ruby on Rails CRM platform for Web 2.0 and beyond