neerajsingh0101/admin_data

syntax error

Closed this issue · 1 comments

Instead of

AdminData::Config.set = {
:find_conditions => ....
}

Now you need to do

AdminData.config do |config|
config.find_conditions = ...
}

the last line should be "end" instead of "}"

Fixed in new release. 37eaaac

Thanks for reporting.