test/dummy/config/initializers/kblog_init.rb in kblog-0.0.3 vs test/dummy/config/initializers/kblog_init.rb in kblog-0.0.4

- old
+ new

@@ -10,18 +10,18 @@ # role-based rights to create/alter blog-articles # # user_class must respond_to :roles - and each role # # string representation role.to_s == Kblog.auth_role # ####################################################### -Kblog.auth_type = 'role' -Kblog.auth_role = 'blogger' # role needed to alter blogs +#Kblog.auth_type = 'role' +#Kblog.auth_role = 'blogger' # role needed to alter blogs ######################################################### # http-basic-auth # ######################################################### -#Kblog.auth_type = 'basic' -#Kblog.authname = 'blogger' -#Kblog.authpassword = 'changeme' +Kblog.auth_type = 'basic' +Kblog.authname = 'blogger' +Kblog.authpassword = 'changeme' ActiveSupport.on_load :action_controller do helper Kblog::ArticlesHelper end