diff options
author | Maxim Rydkin <maks.rydkin@gmail.com> | 2017-09-06 14:13:52 +0300 |
---|---|---|
committer | Maxim Rydkin <maks.rydkin@gmail.com> | 2017-09-12 22:32:01 +0300 |
commit | c295d3362b610945de5c722616b39323a48c377e (patch) | |
tree | 8ac4886d8f90abe0cb9c286baa68e7018c1e66fc /app/models/ci/variable.rb | |
parent | f364cc34ea7562e782964b2c65428055d525e440 (diff) | |
download | gitlab-ce-c295d3362b610945de5c722616b39323a48c377e.tar.gz |
move `lib/ci/model.rb` into `lib/gitlab/ci/model.rb`
Diffstat (limited to 'app/models/ci/variable.rb')
-rw-r--r-- | app/models/ci/variable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/variable.rb b/app/models/ci/variable.rb index cf0fe04ddaf..67d3ec81b6f 100644 --- a/app/models/ci/variable.rb +++ b/app/models/ci/variable.rb @@ -1,6 +1,6 @@ module Ci class Variable < ActiveRecord::Base - extend Ci::Model + extend Gitlab::Ci::Model include HasVariable include Presentable |