blob: da672f5d973c29f2ac49c7d38456dc5b378660e7 [file] [log] [blame]
package com.example.g8backend.service;
public interface AdminService {
boolean grantVip(Long targetUserId);
boolean banUser(Long userId, String reason, Long adminId);
boolean unbanUser(Long userId, Long adminId);
boolean lockPost(Long postId, String reason, Long adminId);
boolean unlockPost(Long postId, Long adminId);
}