qcod / laravel-gamify

Gamify your Laravel app with Reputation Points & Achievements Badges support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there a limit on the number? allowDuplicates

zhaomengqiao opened this issue · comments

Is there a limit on the number?For example, posting 3 times a day

You should use qualifier function on a point type to decide when you want to allow points to be given.

public function qualifier()
{
    // check if already given points 3 times in the same day
}

thank you