13 lines
185 B
Ruby
13 lines
185 B
Ruby
module Danbooru
|
|
class CustomConfiguration < Configuration
|
|
# Define your custom overloads here
|
|
def app_name
|
|
"f"
|
|
end
|
|
|
|
def posts_per_page
|
|
1
|
|
end
|
|
end
|
|
end
|