Package models.planning

Examples of models.planning.PlanedSlot


    public static void show(final Long sessionId, String slugify, boolean noCount) throws Throwable {
        Talk talk = Talk.findById(sessionId);
        notFoundIfNull(talk);
        checkReadAccess(talk);

        PlanedSlot planedSlot = PlanedSlot.forTalkOn(talk, ConferenceEvent.CURRENT);
        Slot slot = planedSlot != null ? planedSlot.slot : null;

        List<Member> voters = Vote.findVotersBySession(talk);
        Collections.shuffle(voters);
       
View Full Code Here


    }

    public static void talk(long id, boolean details) {
        Talk talk = Talk.findById(id);
        notFoundIfNull(talk);
        PlanedSlot slot = PlanedSlot.forTalkOn(talk, ConferenceEvent.CURRENT);
        if (slot == null) {
            slot = new PlanedSlot(talk);
        }
        renderJSON(slot, getSerializers(details));
    }
View Full Code Here

TOP

Related Classes of models.planning.PlanedSlot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.