diff options
-rw-r--r-- | app/controllers/variables_controller.rb | 2 | ||||
-rw-r--r-- | app/models/variable.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/variables_controller.rb b/app/controllers/variables_controller.rb index ef4916c..6eb908e 100644 --- a/app/controllers/variables_controller.rb +++ b/app/controllers/variables_controller.rb @@ -14,4 +14,4 @@ class VariablesController < ApplicationController def project @project ||= Project.find(params[:project_id]) end -end
\ No newline at end of file +end diff --git a/app/models/variable.rb b/app/models/variable.rb index b6e7741..a53a27f 100644 --- a/app/models/variable.rb +++ b/app/models/variable.rb @@ -1,3 +1,3 @@ class Variable < ActiveRecord::Base belongs_to :project -end
\ No newline at end of file +end |