Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / drive / utils / share.ts
blob08451c9c89caefd0c444b7073fb8787d82d6b0a5
1 import { ShareFlags } from '../../interfaces/drive/share';
3 export const isMainShare = (meta: { Flags?: number }) => {
4     return !!(typeof meta.Flags !== 'undefined' && meta.Flags & ShareFlags.MainShare);
5 };