summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-22 11:31:55 -0700
committermo khan <mo@mokhan.ca>2014-02-22 11:31:55 -0700
commit0ab1fca101cdad532904d3df1fdf225625209ac0 (patch)
treee1104eba8c9f3a429d8c7baaa718e4a3ad980c8e /app
parented601666363d62ca5a334c3c2414a1215118c019 (diff)
rename active_licenses to licenses to match jbuilder template.
Diffstat (limited to 'app')
-rw-r--r--app/controllers/v1/company_licenses_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/v1/company_licenses_controller.rb b/app/controllers/v1/company_licenses_controller.rb
index 6f2f666..e3701d2 100644
--- a/app/controllers/v1/company_licenses_controller.rb
+++ b/app/controllers/v1/company_licenses_controller.rb
@@ -2,7 +2,7 @@ class V1::CompanyLicensesController < ApplicationController
before_filter :load_company
def index
- @active_licenses = @company.filter_licenses_using(search_filters)
+ @licenses = @company.filter_licenses_using(search_filters)
end
private