Fixed class/module declaration.
This commit is contained in:
parent
bd29c71687
commit
135dcceafd
2 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
class Store
|
class Store
|
||||||
class Provider
|
module Provider
|
||||||
class DB < ApplicationModel
|
class DB < ApplicationModel
|
||||||
self.table_name = 'store_provider_dbs'
|
self.table_name = 'store_provider_dbs'
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
||||||
|
|
||||||
class Store
|
class Store
|
||||||
class Provider
|
module Provider
|
||||||
class File
|
module File
|
||||||
|
|
||||||
def self.add(data, sha)
|
def self.add(data, sha)
|
||||||
write_to_fs(data, sha)
|
write_to_fs(data, sha)
|
||||||
|
|
Loading…
Reference in a new issue