mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
16 lines
512 B
Ruby
16 lines
512 B
Ruby
Redmine::Plugin.register :redmine_qbo do
|
|
|
|
require_dependency 'qbo_hook_listener'
|
|
|
|
name 'Redmine Quickbooks Online plugin'
|
|
author 'Rick Barrette'
|
|
description 'This is a plugin for Redmine to intergrate with Quickbooks Online to allow for seamless intergration CRM and invoicing of completed issues'
|
|
version '0.0.1'
|
|
url 'http://example.com/path/to/plugin'
|
|
author_url 'http://rickbarrette.org'
|
|
settings :default => {'empty' => true}, :partial => 'qbo/settings'
|
|
|
|
|
|
Quickbooks.sandbox_mode = true
|
|
end
|