XF 2.0 Please complete all required fields when inserting a connected account provider via Entity

Jake B.

Well-known member
I can't make any sense of it as the only fields listed in the Entity are:

Code:
   'provider_id' => ['type' => self::STR, 'maxLength' => 25, 'match' => 'alphanumeric', 'required' => true],
   'provider_class' => ['type' => self::STR, 'maxLength' => 100, 'required' => true],
   'display_order' => ['type' => self::UINT, 'default' => 100],
   'options' => ['type' => self::JSON_ARRAY, 'default' => []]

All of which are defined. only thing I can possibly think of would be the title/description phrase, but those already exist and are created by the add-on. So I'm sure I'm doing something wrong here somewhere as if I do insert the values manually without the entity everything works completely as expected (minus the fact that rebuildProviderCount doesn't run
 
Top Bottom