Named adapters with grok and Plone?

grok, plone, zope

Solution

The grok equivalent is

from five import grok
grok.global_adapter(mytype_description, name='description')

Problem

Is it possible to register named adapters with five.grok. The ZCML equivalent would be: ``` <adapter name="description" factory=".indexers.mytype_description" /> ```

Original source