Merge branch 'account-lookup' into 'develop'
Use /lookup for username availability with Pleroma See merge request soapbox-pub/soapbox-fe!935
This commit is contained in:
commit
52dabed829
|
@ -70,7 +70,10 @@ export const getFeatures = createSelector([
|
||||||
v.software === MASTODON && gte(v.compatVersion, '3.0.0'),
|
v.software === MASTODON && gte(v.compatVersion, '3.0.0'),
|
||||||
features.includes('profile_directory'),
|
features.includes('profile_directory'),
|
||||||
]),
|
]),
|
||||||
accountLookup: v.software === MASTODON && gte(v.version, '3.4.0'),
|
accountLookup: any([
|
||||||
|
v.software === MASTODON && gte(v.compatVersion, '3.4.0'),
|
||||||
|
v.software === PLEROMA && gte(v.version, '2.4.50'),
|
||||||
|
]),
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue