diff options
| author | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-02-22 20:49:16 +0100 |
|---|---|---|
| committer | Zeger-Jan van de Weg <zegerjan@gitlab.com> | 2016-02-26 15:50:51 +0100 |
| commit | 9a2869ab4674b8a6b94ec206660e083a00d4db37 (patch) | |
| tree | 312031a3cf31c736e1e4f0d7090c7e1613e1a74c /spec/factories | |
| parent | bb3563b5cd063772fa16c934404e7912d9f3d726 (diff) | |
| download | gitlab-ce-9a2869ab4674b8a6b94ec206660e083a00d4db37.tar.gz | |
Branded login page also in CE11489-branded-appearance-to-ce
The only major difference with the EE version is the change from a light and dark logo to only a header logo
The dark logo wasn't used anyway, so it seemed to make sense to me to rename the field to the actual function of it
Diffstat (limited to 'spec/factories')
| -rw-r--r-- | spec/factories/appearances.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/factories/appearances.rb b/spec/factories/appearances.rb new file mode 100644 index 00000000000..cf2a2b76bcb --- /dev/null +++ b/spec/factories/appearances.rb @@ -0,0 +1,8 @@ +# Read about factories at https://github.com/thoughtbot/factory_girl + +FactoryGirl.define do + factory :appearance do + title "MepMep" + description "This is my Community Edition instance" + end +end |
