}
@Override
@Transactional(readOnly = false)
public void addApiNotification(Connector connector, long guestId, String content) {
ApiNotification notification = new ApiNotification();
notification.api = connector.value();
notification.guestId = guestId;
notification.ts = System.currentTimeMillis();
notification.content = content;
em.persist(notification);