Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
Card
defaulttrue
id1
labelCompany Creation


 

 


Card
id2
labelWizard - Home


 

 


Card
id3
labelWizard - Suggestions


 

 


 
Card
id4
labelWizard - Theme customization


 

...



Warning on creation of user

Now, when entering the fields Login and Registration - during user registration - a warning is displayed requesting the user to complete it carefully, because these fields cannot be changed later.

 


Faster authentication

The authentication stream when there is integration with the fluig Identity has been optimized by reducing the number of redirects, which allows faster access to fluig.

 


Instant notifications (realtime) with high availability

...

Informações
titleInterested?

Access Configuring fluig Realtime to run on Load balancing and Settings for the operation of chat to find out more details about it.

 


ECM

Plugin for renewed Outlook!

...

Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
 
Card
defaulttrue
id1
labelPlugin Outlook


 


 
Card
id2
labelPlugin Outlook - Documents


 
Card
id3
labelPlugin Outlook - Task Central


...


Mobile

Choose what to see first

In order to catch up with backlogs, Task Central is the home screen of the fluig Mobile. But, now, you can change it easily and quickly. Click here and see how easy it is.

 


Social

Make video conferencing meetings!

Would you like to make a video conferencing meeting? It is possible now! When starting a session, you can use your device’s camera during the meeting, enabling the icon on the upper bar of the window.

 




 

Started a meeting and forgot someone? Invite a participant during the meeting

Have you started a meeting and want to invite other participants besides those already invited? It is easy! Now you can invite participants to the meetings at any time, even when the meeting has already started. Take the opportunity and check out how it looks!

 


Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
 
Card
defaulttrue
id1
labelInviting participants to gather meeting that has already started


 


 
Card
id2
labelParticipants added


 


Nota
titleNote

For meetings started from a document, it is not allowed inviting participants after the start of the meeting.

...



Add fluigers in meetings that are in progress:

...

All this is manageable in the current permissions panel that you already know. Please visit and check it out!

 


 


See how to configure permissions for actions in communities:

Conector de Widget
width640
urlhttps://www.youtube.com/watch?v=1H6tfxHNszM
height360

...


Create richer posts with articles

...

    • We have completely changed the way you create your articles. You can add cover image to your articles to highlight it;
    • share your articles in communities and see how cool the post looks, with a summary of the article, the cover image  and the very special highlighted title;
    • quick look: saw a nice article shared in a community? Read it without leaving the community.
    • shared an article and noticed something to be changed or the cover image was not what you wanted? Update the article and all posts in which you shared it will be instantly updated.

...


Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
 
Card
defaulttrue
id1
labelCreating article


 


 
Card
id2
labelPosting article


 


 
Card
id3
labelViewing article in the timeline


 

 



See how to increase the engagement of users with articles in communities:

Conector de Widget
width640
urlhttps://www.youtube.com/watch?v=Ou8q428qcH8
height360

 


LMS

Search for skills to find those responsible for their classes and disciplines

Now you can search for users' skills when you need to find the person in charge to relate to a class or discipline. In this way, it is much easier to find the user better enabled to be responsible for a particular class or discipline. 


 


Perform evaluations from an email

Now you can schedule the execution of a learning assessment and send to any person, informing only his/her e-mail! Thus, the assessment performer will receive a link by email through which it can access and run the evaluation. Furthermore, at the end the performer may receive an email  stating the  status of approval and the score – when evaluation allows viewing such information. 


Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
 
Card
defaulttrue
id1
labelScheduling execution by email


 


 
Card
id2
labelEmail to access the evaluation


 


Card
id3
labelEvaluation execution by email


 

 


Card
id4
labelE-mail of evaluation completion


 

...


Evaluations with essay questions may also trigger an email  with the performer’s final status after corrected by checker. 


 


Also, the link to review the assessment is available via API, where the user with permission can view in detail an evaluation that was performed by email.

Informações
titleFor more details

The Public API method that allows you to create the link to review an evaluation is the /lms/assessmentApplication/getFinishedApplicationId/{email}/{scheduleId}.

 


 



The fluig LMS integrations

...

To access and enable integrations by EAI Console  you must access the Control Panel and click on the tab Learning. The new EAI Console option, where you can manage the integration of learning, is available.

 


Deck of Cards
effectDuration0.5
historyfalse
idsamples
effectTypefade
Card
defaulttrue
id1
labelEAI Console in the Control Panel


 

 


Card
id2
labelEAI Console Settings


 

 


 
Card
id3
labelEAI Console


 


Informações
titleLearn more

Check out more information on Set Up via EAI integrations.

 


New datasets for tracking students in classes

...

Criamos e disponibilizamos para você um relatório como exemplo de uso destes dois novos datasets. Em apenas um relatório os dois datasets são utilizados para que você possa acompanhar o andamento de alunos em tópicos e itens de tópicos de suas turmas de aprendizado. 


...


Dica
titleExample of use

See the example by clicking here.

...


New methods in the public API for approval and refusal of registrations

...

Informações
titleMore details

See the fluig public API for more information on how to use the new methods:

...


Plataforma

Update on the public API

...

Dica
titleSamples of Use


Bloco de código
titleRegistration
collapsetrue
function beforeDocumentPublisher() {
	var FLUIG_HOST ="http://SEU_FLUIG";

	// OAuth variables 
	var OAUTH_APP_PUBLIC = "OAUTH_APP_PUBLIC";
	var OAUTH_APP_PRIVATE = "OAUTH_APP_PRIVATE";
	var OAUTH_USER_APP_PUBLIC = "OAUTH_USER_APP_PUBLIC";
	var OAUTH_USER_APP_SECRET = "OAUTH_USER_APP_SECRET";

	//matrícula
	var user = getValue("WKUser");
	var consumer = oauthUtil.getGenericConsumer(OAUTH_APP_PUBLIC, OAUTH_APP_PRIVATE, OAUTH_USER_APP_PUBLIC, OAUTH_USER_APP_SECRET);
	var data = consumer.post(FLUIG_HOST+"/api/public/social/user/"+user,jsonString);
Bloco de código
titleAlias
collapsetrue
function afterSocialLike(companyId, like){
	var FLUIG_HOST ="http://SEU_FLUIG";

	// OAuth variables 
	var OAUTH_APP_PUBLIC = "OAUTH_APP_PUBLIC";
	var OAUTH_APP_PRIVATE = "OAUTH_APP_PRIVATE";
	var OAUTH_USER_APP_PUBLIC = "OAUTH_USER_APP_PUBLIC";
	var OAUTH_USER_APP_SECRET = "OAUTH_USER_APP_SECRET";

	//alias
	var user = like.getUser();
	var consumer = oauthUtil.getGenericConsumer(OAUTH_APP_PUBLIC, OAUTH_APP_PRIVATE, OAUTH_USER_APP_PUBLIC, OAUTH_USER_APP_SECRET);
	var data = consumer.post(FLUIG_HOST+"/api/public/social/user/"+user,jsonString);

...


Documentation news

...

  • Execution of evaluation by users who are not related to any time zone.

 

...