blob: cd73452ca470a4124ce864c49d22947fb8815d70 [file] [log] [blame]
package com.pt.service;
import com.pt.repository.InvitedCoedRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class InvitedCodeService {
@Autowired
private InvitedCoedRepository invitedCodeRepository;
public boolean isCodeValid(String code) {
return invitedCodeRepository.findByCode(code) != null;
}
}