Help with hauntd / yii2-vote

Hello, I’m trying to use hauntd / yii2-vote but something is going wrong and when I click to vote, nothing happens, the following appears on the browser console:
http: //assistencia.localhost/vote/default/vote error 404.

my module config.

‘modules’ => [
‘gridview’ => [
‘class’ => ‘\kartik\grid\Module’
],
‘vote’ => [
‘class’ => hauntd\vote\Module::class,
‘guestTimeLimit’ => 3600,
‘entities’ => [
// Entity -> Settings
‘itemVote’ => common\models\user\User::class, // your model
‘itemVoteGuests’ => [
‘modelName’ => common\models\Assistencia::class, // your model
‘allowGuests’ => true,
‘allowSelfVote’ => false,
‘entityAuthorAttribute’ => ‘user_id’,
],
],
],
],

my view


<?= \hauntd\vote\widgets\Vote::widget([
‘entity’ => ‘itemVote’,
‘model’ => $model,
‘options’ => [‘class’ => ‘vote vote-visible-buttons’]
]); ?>

the buttons appear but when I click to vote the error mentioned at the beginning of the text appears. If anyone knows how to solve it would appreciate