Developer 역할 Spring 골격 smoke (role-developer-live-v2-001)

This commit is contained in:
forge-bot 2026-07-14 08:25:58 +00:00
parent 50a3e357ed
commit c5d145cfb9

View file

@ -6,10 +6,14 @@ import org.springframework.stereotype.Service;
public class DeveloperService { public class DeveloperService {
public String getRole() { public String getRole() {
return "DEVELOPER"; return "developer";
} }
public boolean isAuthorized(String action) { public boolean isActive() {
return "code".equals(action) || "review".equals(action) || "deploy".equals(action); return true;
}
public String describe() {
return "Developer role is active and operational";
} }
} }